@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;600;700;900&display=swap');
html, body{
    background: #353739;
    color: #cfcfcf;
    margin: 0px;
    padding: 0px;
    font-family: 'Source Sans Pro', sans-serif;
}
input, textarea, select{
    font-family: 'Source Sans Pro', sans-serif;
}
a{
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
}
header{
    display: flex;
    justify-content: space-between;
    padding: 10px;
    font-size: 18px;
    height: 25px;
    line-height: 25px;
}
header i{
    cursor: pointer;
    font-size: 22px;
}
.wrapper{
    display: flex;
    flex-wrap: wrap;
    min-height: calc(100vh - 45px);
}
.sidebar{
    width: 85px;
    box-sizing: border-box;
    padding: 10px;
    font-size: 12px;
    position: relative;
}
.work_zone{
    background: #f5f5f5;
    width: calc(100% - 90px);
    border-radius: 10px;
    box-sizing: border-box;
    padding: 5px;
    display: flex;
    flex-wrap: wrap;
    /*justify-content: space-between;*/
    height: calc(100vh - 45px);
}
.work-zone-small{
    width: calc(100% - 335px);
}
.setting{
    display: none;
    width: 250px;
    box-sizing: border-box;
    padding: 10px;
    overflow: auto;
    max-height: calc(100vh - 45px);
}
.setting::-webkit-scrollbar {
  width: 6px;
  border-radius: 6px;
}
.setting::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background-color: #2196f3;
}
.setting::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.2);
  border-radius: 6px;
  background-color: #f9f9fd;
}
.recording{
    text-align: center;
    margin-top: 25px;
    transition: 0.3s;
}
.white-circle{
    background: #e1e1e1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.red-circle{
    background: #cb4949;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 0 auto;
}
.recording:hover .white-circle{
    background: #fff;
    cursor: pointer;
}
.recording:hover .red-circle{
    background: red;
}
.recording:hover{
    color: #fff;
    cursor: pointer;
}
.materials{
    margin-top: 100px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}
.materials i{
    font-size: 38px;
    margin-bottom: 5px;
}
.materials:hover{
    color: #fff;
}
.painting{
    margin-top: 25px;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
    position: relative;
}
.btn-painting:hover{
    color: #fff;
}
.btn-painting i{
    font-size: 38px;
    margin-bottom: 5px;
}
.voice{
    position: absolute;
    bottom: 120px;
    left: 5px;
    width: 75px;
}
.btn-voice{
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    color: #fff;
    background: #30a740;
    padding: 5px 0px;
    border-radius: 10px;
}
.btn-voice i{
    font-size: 38px;
    margin-bottom: 5px;
}
.btn-voice:hover{
    background: #1c7e2a;
}
.lvl-voice{
    margin-top: 10px;
    display: flex;
    justify-content: center;
}
.vertical-line-voice{
    height: 15px;
    width: 3px;
    border-radius: 4px;
    background: #ccc;
    margin: 0 2px;
}
.missing-voice{
    background: #5b5e60;
}
.chat-zone{
    border-radius: 10px;
    background: #fff;
    height: 100%;
    font-size: 12px;
    box-shadow: 0 2px 6px rgb(0 0 0 / 10%);
    color: #333;
    flex: 0 0 220px;
}
.chat-mess{
    background: #d7d6d6;
    padding: 5px;
    border-radius: 0 0 10px 10px;
    height: 25px;
    line-height: 25px;
    font-size: 14px;
    position: relative;
}
.chat-mess:focus, .chat-mess:active{
    outline: none;
}
.chat{
    position: relative;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    box-sizing: border-box;
    padding: 5px 5px 20px 5px;
}
.chat-scroll{
    height: calc(100% - 35px);
    overflow: auto;
}
.chat-scroll::-webkit-scrollbar {
  width: 6px;
  background-color: #f9f9fd;
}
.chat-scroll::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background-color: #b0bec9;
}
.chat-scroll::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.2);
  border-radius: 6px;
  background-color: #f9f9fd;
}
.fa-arrow-circle-up{
    opacity: 0.4;
    cursor: pointer;
    font-size: 22px;
    position: absolute;
    right: 5px;
    top: 7px;
}
.chat-mess textarea{
    background: transparent;
    outline: none;
    border: none;
    height: 20px;
    width: 90%;
    font-size: 11px;
    resize: none;
} 
.chat-mess textarea:focus, .chat-mess textarea:active{
    outline: none;
}
.ban-link{
    position: absolute;
    bottom: 5px;
    left: 0px;
    text-align: center;
    width: 100%;
    opacity: 0.6;
}
.ban-link i{
    font-size: 8px;
}
.media-zone{
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    flex: 1 1 0;
}
.participants-zone{
    border-radius: 10px;
    background: #fff;
    height: 100%;
    font-size: 12px;
    box-shadow: 0 2px 6px rgb(0 0 0 / 10%);
    color: #878787;
    flex: 0 0 220px;
}
.media-zone .fa-file-image{
    font-size: 70px;
}
.participants-zone input{
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    background: #d7d6d6;
    border-radius: 10px 10px 0 0;
    border: none;
    padding: 7px 3px;
}
.participants-zone input:focus, .participants-zone input:active{
    outline: none;
}
.online{
    padding: 10px;
    display: flex;
    justify-content: space-between;
}
.row-user{
    display: flex;
    margin: 3px 0;
    padding: 3px 5px;
    align-items: center;
    cursor: pointer;
    position: relative;
}
.row-user:hover{
    background: #f2f2f2;
}
.row-user img{
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 5px;
}
.admin-room img{
    height: 20px;
}
.admin-room{
    margin-bottom: 15px;
    margin-top: 10px;
    padding-bottom: 7px;
    border-bottom: 1px solid #ccc;
}
.row-user i{
    width: 20px;
    text-align: center;
    margin-left: auto;
}
.online i{
    margin-right: 3px;
}
.setting-nav a{
    color: #cfcfcf;
}
.setting-nav li{
    list-style-type: none;
    overflow: auto;
}
.setting-nav li:hover{
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}
.setting-nav li a{
    font-size: 16px;
    display: block;
    margin: 5px 0;
    text-decoration: none;
    padding: 7px 5px 7px 5px;
}
.setting-nav li ul{
    display: none;
    padding-left: 10px;
    background: #4a4b4d;
    border-radius: 10px;
    padding: 5px;
    margin: 5px;
}
.setting-nav li ul li a{
    font-size: 16px;
    display: block;
    text-decoration: none;
    padding: 2px 5px 2px 15px;
}
li.active ul{
    display: block;
}
.setting-nav .fa-angle-down{
    float: right;
    margin-top: 3px;
    margin-right: 5px;
}
.setting-nav{
    padding-left: 0px;
    margin-top: 0px;
}
.setting-nav li a i:first-child{
    font-size: 15px;
    width: 20px;
    text-align: center;
}
.switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 20px;
}

.switch input {display:none;}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(12px);
  -ms-transform: translateX(12px);
  transform: translateX(12px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
.setting-nav li ul li{
    font-size: 14px;
    padding: 5px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.setting-nav li ul li i{
    width: 20px;
    text-align: center;
}
.change-password{
    cursor: pointer;
}
.setting-nav li ul li > div{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.text-only{
    cursor: none;
    width: 100%;
}
.range{
    justify-content: center!important;
    font-size: 18px;
    padding-top: 3px;
}
.range span{
    font-size: 10px;
}
.range input{
    cursor: pointer;
    margin: 0 5px;
}
.range i{
    font-size: 16px;
}
.dot{
    width: 100%;
    justify-content: center!important;
    padding: 10px 0px 5px 0;
}
.good-dot{
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #cfcfcf;
    margin: 0 2px;
}
.green-dot{
    background: #5eed71;
}
.device{
    width: 100%;
    background: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 13px;
    margin-top: 5px;
    color: #333;
    overflow: hidden;
}
.avatar{
    justify-content: center!important;
}
.avatar img{
    width: 150px;
    max-width: 90%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    margin: 10px 0;
    cursor: pointer;
}
hr{
    border-color: grey;
}
.delete-avatar{
    color: #ed8d8d;
    cursor: pointer;
    transition: 0.3s;
}
.delete-avatar:hover{
    color: #ff0000;
}
.text-only{
    cursor: auto!important;
}
.cursor-none{
    cursor: auto!important;
}
.enlargement, .create-bots{
    cursor: pointer;
}
.clear-chat{
    cursor: pointer;
}
.current-language{
    cursor: pointer;
}
.current-language img{
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 4px;
}
.all-language img{
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 4px;
    margin: 4px;
    cursor: pointer;
}
.all-language{
    flex-wrap: wrap;
    margin-top: 15px;
    justify-content: start!important;
}
.all-language img{
    cursor: pointer;
}
.all-language img:hover{
    box-shadow: 0 0 4px #000, 0 0 8px #000;
}
 .setting-nav li ul li a{
    font-size: 14px;
    padding: 0px;
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
 .setting-nav li ul li a i{
    font-size: 14px!important;
}
.painting-panel{
    display: none;
    position: absolute;
    height: 100%;
    width: 300px;
    padding: 10px;
    border-radius: 10px;
    background: #353739;
    z-index: 5;
    top: -10px;
    right: -340px;
    cursor: auto;
    text-align: left;
    box-shadow: 0 2px 6px rgb(0 0 0 / 30%);
}
.action-panel i{
    font-size: 20px;
    cursor: pointer;
    margin: 0 5px 0 5px;
    color: #7a7a7a;
    transition: 0.3s;
}
.action-panel i:hover{
    color: #dddcdc;
}
.action-panel{
    padding: 3px 0;
}
i.fa-slash{
    font-size: 18px;
    transform: rotate(90deg);
}
i.fa-long-arrow-alt-up{
    transform: rotate(35deg);
    font-size: 30px;
    display: inline-block;
    vertical-align: top;
    margin: -5px 5px 0 0;
}
i.fa-circle{
    margin-left: 8px;
    display: inline-block;
    transform: scale(1.3, 1.1);
}
i.fa-eraser{
    transform: scale(1.1);
}
i.active-icon{
    color: #45d558;
}
.color-panel{
    display: flex;
    align-items: center;
}
.color-panel{
    padding-top: 8px;
}
.range-circle-panel{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: red;
}
.color-panel input{
    margin: 0 10px;
    width: 100px;
    cursor: pointer;
}
.red-circle-panel, .yellow-circle-panel, 
.green-circle-panel, .blue-circle-panel,
.purple-circle-panel, .white-circle-panel,
.black-circle-panel
{
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: red;
    margin: 0 2px;
    border: 1px solid #ccc;
    cursor: pointer;
    text-align: center;
    line-height: 19px;
}
.yellow-circle-panel{
    background: #fff7a0;
}
.green-circle-panel{
    background: #45d558;
}
.blue-circle-panel{
    background: #008bf9;
}
.purple-circle-panel{
    background: #8200f9;
}
.white-circle-panel{
    background: #fff;
}
.black-circle-panel{
    background: #000;
}
.color-panel i{
    color: #000;
    font-size: 12px;
}
.black-circle-panel i{
    color: #fff;
}
.popup{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    z-index: 99;
    overflow: auto;
}
.body-popup{
    margin: 125px auto 25px auto;
    width: 400px;
    box-sizing: border-box;
    padding: 10px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.6);
    border-radius: 10px;
}
.header-popup{
    text-align: center;
    padding: 7px 0;
    font-size: 18px;
    background: #6f848f;
    color: #fff;
    border-radius: 10px;
}
.popup-materials .body-popup{
    background: #e9e9e9;
}
.content-popup form{
    margin-bottom: 0px;
}
.content-popup{
    position: relative;
}
.content-popup .normal-margin .row-form {
    margin: 15px 0 0 0;
    font-size: 14px;
}
.content-popup form .row-form input{
    width: 100%;
}
.content-popup form .row-form-btn input{
    width: 200px;
}
.closePopup{
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}
.tabs>input[type="radio"] {
    display: none;
}
.tabs>input[type="radio"]:checked+label {
    background: #353739;
    color: #edebeb;
}
.tabs>div {
    display: none;
    padding: 0 0 10px 0;
    margin: 8px auto;
    /*background: rgba(0, 0, 0, 0.04);*/
    background: #fff;
    border-radius: 10px;
    color: #333;
}
#tab-btn-1:checked~#content-1,
#tab-btn-2:checked~#content-2,
#tab-btn-3:checked~#content-3,
#tab-btn-4:checked~#content-4,
#tab-btn-5:checked~#content-5,
#tab-btn-6:checked~#content-6,
#tab-btn-7:checked~#content-7,
#tab-btn-8:checked~#content-8 {
    display: block;
}
#tab-btn-moder-1:checked~#content-1,
#tab-btn-moder-2:checked~#content-2,
#tab-btn-moder-3:checked~#content-3,
#tab-btn-moder-4:checked~#content-4,
#tab-btn-moder-5:checked~#content-5,
#tab-btn-moder-6:checked~#content-6,
#tab-btn-moder-7:checked~#content-7,
#tab-btn-moder-8:checked~#content-8 {
    display: block;
}
.tabs>label {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: #eee;
    border: 1px solid transparent;
    padding: 5px 6px;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 10px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    margin-right: 6px;
    cursor: pointer;
    background: transparent;
    color: #000;
    position: relative;
}
.tabs>label:hover{
    background: #d5d5d5;
}
.tabs>label:first-of-type {
    margin-left: 0;
}
.top-line{
    width: 4px;
    height: 10px;
    position: absolute;
    bottom: -10px;
    left: calc(50% - 2px);
    background: #353739;
    display: none;
}
.tabs>input[type="radio"]:checked+label .top-line{
    display: block;
}
.normal-margin .row-form{
    margin:  15px 0;
}
.normal-margin .row-form input{
    width: 270px;
}
.normal-margin .row-form input.checkbox{
    display: inline-block;
    width: 17px;
    height: 17px;
    vertical-align: top; 
    margin-top: 1px;
    cursor: pointer;
}
.ml-30{
    margin-left: 30px;
}
.ml-60{
    margin-left: 60px;
}
.normal-margin .ml-30{
    margin-left: 30px;
}
.normal-margin .ml-60{
    margin-left: 60px;
}
.row-form-btn{
    display: flex;
    justify-content: space-between;
}
.row-form-btn .delete-moderator{
    width: 120px!important;
}
.popup-materials .body-popup{
    width: 825px;
    max-width: 95%;
}
.tools-material{
    padding: 7px 0;
    background: #353739;
    color: #cfcfcf;
    display: flex;
    justify-content: center;
    border-radius: 10px;
}
.tools-material i{
    margin: 5px 10px;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
}
.tools-material i:hover{
    color: #fff;
}
i.active-tools{
    color: gold!important;
}
.tabs .fa-th-list{
    position: absolute;
    top: 8px;
    right: 2px;
    cursor: pointer;
    font-size: 20px;
    color: #353739;
}
.tabs{
    position: relative;
}
.list-materials{
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
}
.elements{
    width: 100px;
    margin: 5px;
    text-align: center;
    cursor: pointer;
    padding: 7px 0 3px 0;
    border: 1px solid transparent;
    overflow: hidden;
}
.avatar-elements img{
    width: 70px;
    height: 45px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
}
.name-elements{
    margin-top: 5px;
    font-size: 12px;
    color: #000;
    font-weight: bold;
}
.date-elements{
    font-size: 10px;
}
.size-elements{
    font-weight: bold;
    font-size: 12px;
}
.focus-elements{
    background: #e9e9e9;
    border-radius: 4px;
    border: 1px solid #ccc;
}
.center{
    text-align: center;
}
.uploads{
    display: block;
    width: 50px;
    height: 50px;
    margin: 15px auto;
}
.download-plagin{
    width: 330px;
    margin: 15px auto;
    text-align: center;
}
.btn{
    margin: 15px 0;
    font-size: 18px;
    padding: 5px 10px 8px 10px;
    display: inline-block;
    width: 150px;
    border-radius: 10px;
    background: #008bf9;
    color: #fff;
    transition: 0.3s;
    cursor: pointer;
    box-shadow: 0 2px 4px rgb(0 0 0 / 20%);
}
.btn:hover{
    background: #0164b3;
    box-shadow: none;
}
.blue-text{
    color: #008bf9;
}
.width100{
    width: 100%;
}
img.document{
    width: 50px;
    height: auto;
}
.mess-username{
    font-size: 14px;
    font-weight: bold;
    overflow: hidden;
}
.message{
    font-size: 12px;
}
.mess-user{
    margin: 5px 0;
}
.mess-username i{
    font-size: 10px;
    font-weight: 400;
    margin-right: 2px;
    cursor: pointer;
    transition: 0.3s;
    opacity: 0.7;
}
.mess-username i:last-child{
    margin-right: 5px;
}
.mess-username i:hover{
    opacity: 1;
    color: #353739;
    font-weight: bold;
}
.mess-username .fa-trash-alt:hover{
    color: red;
}
.mess-admin .mess-username{
    color: #007893;
}
.mess-admin .message{
    font-weight: bold;
    color: #0476b9;
}
.black-text{
    color: #333;
}
.error{
    color: red;
    text-align: center;
}
.success{
    color: #35bf48;
    text-align: center;
}
.body-popup input, .body-popup select, .body-popup textarea {
    padding: 6px;
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Source Sans Pro', sans-serif;
    border: 1px solid rgba(0,0,0,0.2);
    box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
}
.center{
    text-align: center;
}
.footer-popup{
    margin-top: 10px;
    padding: 10px 0;
}
.body-popup .submit-row input{
    border-radius: 5px;
    padding: 8px 8px;
    background: #498af2;
    width: 170px!important;
    border: none;
    margin: 0 auto;
    display: block;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}
.submit-row{
    margin-top: 20px;
}
.body-popup .submit-row input:hover{
    background: #2a6fdd;
}
.password-form{
    width: 260px;
    margin: 0 auto;
    padding-bottom: 15px;
}
.btn-standard{
    border-radius: 5px;
    padding: 10px;
    background: #498af2;
    width: 170px!important;
    border: none;
    margin: 0 auto;
    display: block;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}
.btn-standard:hover{
    background: #2a6fdd;
}
.create-bots-popup .body-popup{
    width: 700px;
}
.content-bot{
    display: flex;
    justify-content: space-between;
}
.list-bot{
    width: 200px;
    background: #e9e9e9;
    margin-top: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgb(0 0 0 / 20%);
}
.amount {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    margin-left: 10px;
    display: inline-block;
}
.amount span {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #6f848f;
    cursor: pointer;
    line-height: 18px;
    border-radius: 4px;
    text-align: center;
    color: #fff;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
.amount span:hover {
    background:#586d78;
}
.amount input {
    width:30px;
    text-align:center;
}
.amount input{
    width: 40px!important;
    display: inline-block;
}
input.green-btn{
    background: #35bf48!important;
}
input.green-btn:hover{
    background: #07991b!important;
}
.create-bots-form{
    width: 550px;
}
.create-bots-popup .body-popup .submit-row input{
    display: inline-block;
    margin:  0 15px;
}
.create-bots-form .submit-row{
    text-align: center;
}
.header-list-bot{
    background: #6f848f;
    color: #fff;
    padding: 5px;
    text-align: center;
    box-sizing: border-box;
    border-radius: 10px 10px 0 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.all-bots{
    padding: 5px;
    box-sizing: border-box;
    font-size: 14px;
    max-height: 300px;
    overflow: auto;
}
.all-bots::-webkit-scrollbar {
  width: 5px;
  background-color: #f9f9fd;
}
.all-bots::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: #b0bec9;
}
.all-bots::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.2);
  border-radius: 5px;
  background-color: #f9f9fd;
}
.persent-bot input{
    width: 170px!important;
    box-shadow: none;
    margin: 0 10px;
}
.persent-bot{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    font-size: 14px;
}
.text-persent{
    width: 150px;
}
.text-persent b{
    margin: 0 5px;
    color: #000;
}
.persent-bot div:first-child{
    text-align: right;
}
.create-bots-form .submit-row{
    margin-top: 30px;
}
.header-list-bot button{
    border-radius: 10px;
    border: none;
    background: #41525a;
    color: #fff;
    font-size: 11px;
    padding: 4px 10px;
    cursor: pointer;
    transition: 0.3s;
}
.header-list-bot button:hover{
    background: #2a353a;
}
.row-bot{
    margin: 5px 0;
    display: flex;
    align-items: center;
}
.row-bot img{
    height: 15px;
    width: 20px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 0 2px #000;
    margin-right: 5px;
}
.row-bot .fa-times{
   margin-left: auto;
   margin-top: 1px;
   cursor: pointer;
   transition: 0.3s;
}
.row-bot .fa-times:hover{
    color: red;
}
.clear-chat-popup .header-popup{
    background: #e35454;
}
.delete-avatar-popup .header-popup{
    background: #e35454;
}
.row-user-menu{
    display: none;
    position: absolute;
    top: 0px;
    left: -210px;
    text-align: center;
    padding: 2px;
    box-sizing: border-box;
    background: #353739;
    color: #cfcfcf;
    border-radius: 5px;
    font-size: 20px;
}
.row-user-menu .fa-microphone{
    color: #52ff6a;
}
.row-user-menu .fa-bell{
    color: #00adff;
}
.row-user-menu .fa-crown{
    color: gold;
}
.row-user-menu .fa-comment{
    color: #a8e3ff;
}
.row-user-menu .fa-exclamation-circle{
    color: #f48625;
}
.row-user-menu .fa-ban{
    color: #f34545;
}
.row-user-menu i{
    display: inline-block;
    width: 30px;
    text-align: center;
    margin: 5px 0;
    transition: 0.3s;
    opacity: 0.8;
}
.row-user-menu i:hover{
    opacity: 1;
}
.row-user-menu::after{
    content: ''; 
    position: absolute; /* Абсолютное позиционирование */
    right: -18px;
    top: 0px; /* Положение треугольника */
    border: 12px solid transparent; /* Прозрачные границы */
    border-left: 12px solid #353739;
}
i.active-dialog{
    margin-left: 0px;
    color: #30a740;
}
.message-user-popup textarea{
    width: 100%!important;
}
.message-user-popup .body-popup{
    width: 500px;
    max-width: 95%;
}
.message-user-popup .password-form {
    width: 90%;
}
.expel-popup textarea{
    width: 100%!important;
}
.expel-popup .body-popup{
    width: 500px;
    max-width: 95%;
}
.expel-popup .password-form {
    width: 90%;
}
.block-forever-popup .header-popup {
    background: #e35454;
}
.close-popup-materials{
    display: none;
    font-size: 30px;
    color: #fff;
    position: absolute;
    top: -40px;
    right: 0px;
}
.chat-media{
    display: none;
    margin-top: 25px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}
.chat-media:hover {
    color: #fff;
}
.chat-media i{
    font-size: 20px;
    display: block;
    margin-bottom: 5px;
}
.audience-media{
    display: none;
    margin-top: 30px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}
.audience-media{
    display: none;
    margin-top: 25px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}
.audience-media:hover {
    color: #fff;
}
.audience-media i{
    font-size: 20px;
    display: block;
    margin-bottom: 5px;
}