/*Webix custom css*/
.webix_tooltip {
  font-weight: normal !important;
  color: #000000 !important;
  background: #FFFFFF !important;
  background-color: rgba(255, 255, 255, 1) !important;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
  border: 1px silver solid !important;
  border-radius: 5px !important;
}

.webix_inner_shadow_hover:hover {
  box-shadow: inset 0 0 5px #e6e6e6;
}

.webix_sidebar {
  background: #FFFFFF !important;
  background-color: rgba(255, 255, 255, 1) !important;
  box-shadow: inset 0 0 10px #e6e6e6 !important;
}

.webix_sidebar .webix_tree_item {
  color: #000000 !important;
}

.webix_dtable.webix_header_border_datatable .webix_ss_header .webix_hcolumn > div,
.webix_dtable.webix_header_border_datatable .webix_ss_header .webix_span {
  border-right-color: #dadee0;
  border-bottom-color: #dadee0;
}

.webix_dtable.webix_data_border_datatable .webix_ss_body .webix_column > div,
.webix_dtable.webix_data_border_datatable .webix_table_cell {
  border-right-color: #edeff0;
}

.webix_item_tab .webix_selected {
	background-color: silver !important;
}

.webix_message.webix_success {
	border-radius: 4px !important; 
	border-left: 6px solid #88dcb6 !important;
}

.webix_message.webix_error {
	border-radius: 4px !important; 
	border-left: 6px solid #ff8d82 !important;
}

.webix_message.webix_debug {
	border-radius: 4px !important; 
	border-left: 6px solid #fed282 !important;
}

.webix_message_area {
	left: 33% !important;	
	width: 33% !important
}

.webix_border_top {
	border-top-width: 1px !important;	
}

.webix_error_background {
	background-color: #ffe6e6 !important;
}

.webix_blink {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0.2;
  }
}

@media all and (max-width: 1200px) {
	.webix_message_area {
		left: 25% !important;	
		width: 50% !important
	}
}

@media all and (max-width: 768px) {
	.webix_message_area {
		left: 0px !important;	
		width: 100% !important
	}
}
