*{
  font-family: Verdana, sans-serif;
  font-size: 14px;
  color: #222;
  -webkit-font-smoothing: subpixel-antialiased;
}
body#t input, body#t select, body#t textarea{
  padding: 3px;
  margin: 1px 0px;

}
body#t{
  margin: 0;
  width: 100vw;
  height: 100vh;
}
body#t * {
    box-sizing: border-box;
}
body#t #header{
  background: rgb(190,210,240);
  display: flex;
  padding: 3px;
  align-items: center;
  justify-content: space-between;
}

/*AJAX*/
#ajax-active{
    position: fixed;
    z-index: 999;
    margin: 10px;
    right: 0px;
    bottom: 0px;
    display: none;
}
#ajax-active > img{
    width: 49px;
    height: 49px;
}

/*Стили выбор ответвенных и тегов*/
ul.collection-list{
  margin: 0;
  padding: 0;
  list-style-type: none;
  outline: none;
}
.small-menu{
   cursor: pointer;
   width: 1em;
   text-align: right;
   opacity: 0.1;
}
.small-menu:hover{
   opacity: 1;
}
.worker{
    display: flex;
    align-items: center;
}
.resp-avatar img, .avatar img{
    height: 47px;
    width: 47px;
}
/*Стили полей ввода*/
span[contenteditable], div[contenteditable], .form-control{
    display: inline-block;
    background-color: white;
    margin: 1px 0px;
    word-break: break-word;
}
span[contenteditable=false], div[contenteditable=false]{
    background-color: #f1f1f1;
}
textarea, select,input:not([type=file]):not([type=submit]):not([type=button]), span[contenteditable], div[contenteditable], .form-control{
    border: 1px solid #DDD;
    padding: 3px;
    border-radius: 3px;
    outline: none;
}
textarea:focus, select:focus, input:not([type=file]):not([type=submit]):not([type=button]):focus, span[contenteditable]:focus, div[contenteditable]:focus, .form-control:focus{
    border-color: #AAA;
}
input:not([type=file]):not([type=submit]):not([type=button]):disabled{
    background-color: #f1f1f1;
}

/*Стили меню*/
.select_adv_dropdown .status, .select_adv_single .status{
	display: flex;
	align-items: center;
}
.select_adv_dropdown .status i.fa, .select_adv_single .status i.fa{
	margin: 0px 5px; 
	color:#CCC; 
	opacity: 1; 
	font-size: 80%;
}
div.select_adv_single .status .text{
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
