.trapis-menu{
  font-size: 10pt;
  margin-left: 40px;
}
.trapis-menu a{
  text-decoration: none;
}
.trapis-menu a:hover{
  cursor: pointer;
  text-decoration: underline;
}


div.list{
  margin: 4px;
  background: whitesmoke;
  border: 1px solid #DDD;
}

.toolbox, .toolbox-input{
  padding: 2px 4px;
}
.toolbox{
  font-size: 90%;
  cursor: pointer;
  opacity: 0.2;
}
.toolbox:hover{
  opacity: 0.7;
}


.list-filter-box{
 display: inline-block;
 padding: 2px 5px;
 border-radius: 2px;
 margin-top: 5px;
 border: 1px solid;
}
.list-filter-box > div{
 display: flex;
 align-items: center;
}
.filter-boxes{
  padding: initial;
  margin: 5px;
  list-style: none;
  margin-top: unset;
}
.filter-boxes a{
	cursor: pointer;
}

.uFilters{
	max-height:400px;
	overflow-y:auto;
	overflow-x:hidden;
	padding: 2px;
}

.uFilters .remove{
    font-size: 18px;
    font-weight: bold;
    color: red;
    opacity: 0.7;
    cursor: pointer;
}
.uFilters .remove:hover{
    opacity: 1;
}
.uFilters .create{

}
.uFilters .menu-value{
    display: flex; 
    justify-content:space-between; 
    align-items: center;
}





/*Общие стили*/
ul.for-colview, table.for-tableview{
/*	font-size: 14px;*/
}


/*=====================================================================Выделение заявок========================================================*/
/*Выбранная заявка*/
ul.for-colview .selected-task, table.for-tableview .selected-task{
  background: repeating-linear-gradient( 45deg, rgba(255,255,255,0), rgba(255,255,255,0) 8px, rgba(150,150,150,0.4) 8px, rgba(150,150,150,0.4) 16px ) !important;
}
/*Обновление заявка*/
table.for-tableview .updated-task .number:after, ul.for-colview .updated-task .number:after{
   content: '*';
   font-weight: bold;
/*   font-size: 120%;*/
   color: red;
}


#tasks-wrapper{
   overflow-y: auto;
   overflow-x: hidden;
   height: calc( 100vh - 100px );
}
#tags-wrapper{
   overflow-y: auto;
   overflow-x: hidden;
   height: calc( 100vh - 75px );
}
li.list-menu-item{
    padding: 3px 3%;
}

/*Заявки в режиме таблицы*/
table.for-tableview{
  border-collapse: collapse;
  color: #222;
  width: 100%;
}
table.for-tableview thead td{
	padding: 10px;
	background-color: #EAEAEA;
	text-align: center;
	font-weight: bold;
	color: #666;
}
table.for-tableview td{
	min-width: 50px;
	padding: 5px;
	border: 1px solid #DADADA;
	word-break: break-word;
	vertical-align: middle;
}
table.for-tableview td.center{
  text-align: center;
}
table.for-tableview td.sort{
 cursor: pointer;
}
table.for-tableview .resp-avatar{
	float: left;
	margin: 2px;
}

/*Цвет заявки в таблице и списке*/
table.for-tableview tr, ul.for-colview li{
  background-color: white;
}


/*Заявки в режиме сиска*/
ul.for-colview{
    list-style: none;
    margin: 0px;
    padding: 0px;
}
ul.for-colview > li{
	box-shadow: 1px 1px 3px rgba(50, 50, 50, 0.4);
	margin: 5px;
	padding: 5px;
	width: 350px;
	border-radius: 4px;
    display: inline-block;
    vertical-align: top;
}
ul.for-colview > li .head{
    display:flex;
    align-items:center;
    justify-content: space-between;
    margin-bottom: 2px;
}
ul.for-colview > li .main{
    display:flex;
}

ul.for-colview li .created{
  color: rgb(0,70,0);
  font-size: 80%;
}

/*Номер заявки*/
table.for-tableview td .number, ul.for-colview li .number{
	text-decoration: none;
}


/*Цвета*/
.error{
	background-color: rgba(255, 0, 0, 0.3) !important;
	border: 1px solid rgba(255, 0, 0, 0.5) !important;
}
.success{
	background-color: rgba(0, 255, 0, 0.3) !important;
	border: 1px solid rgba(0, 255, 0, 0.5) !important;
}
.info{
	background-color: blue;
}

/*Иконки*/
.icon{
	width: 25px;
	vertical-align:middle;
}
.click{
    cursor: pointer;
}
a i.fa{
	opacity: 0.5;
}
a i.fa:hover{
	opacity: 1;
}


/*Корректировки для jquery*/
.ui-button-icon-only .ui-icon,
.ui-button-text-icon-primary .ui-icon,
.ui-button-text-icon-secondary .ui-icon,
.ui-button-text-icons .ui-icon,
.ui-button-icons-only .ui-icon {
    position: initial;
    margin: 0;
}
.ui-button-icon-only .ui-button-text,
.ui-button-icons-only .ui-button-text{
    position: absolute;
}
.ui-widget-overlay{
    background: none !important;
    background-color: rgba(0,0,0,0.8) !important;
}
