input[type=text], input[type=password], button, textarea, .gwt-DatePicker{
	/* font-family: museo_sans100, Helvetica, sans-serif; */
	color: #444444;
	border: 1px solid #c0c0c0;
	border-radius: 10px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
input[type=text] ,input[type=password],  button, textarea{
	padding: 2px 12px;
}
.gwt-DatePicker{
	padding: 12px;
}
textarea{
	padding: 12px;
	overflow: auto;
}
input[type=text] ,input[type=password],  button, .gwt-DatePicker{
	text-align: center;
}
button{
	padding: .4em 2.5em;
}
.error_panel div,
.error_panel label {
	/*TODO #14773 there could be a better fix*/

	color: #E66843;
	max-width: 500px;
}
/* components */
textarea::-webkit-scrollbar, .scroller::-webkit-scrollbar {
	width: 14px;
	height: 14px;
}

textarea::-webkit-scrollbar-thumb, .scroller::-webkit-scrollbar-thumb {
	border-radius: 8px;
	min-height: 14px;
	border: 2px solid transparent;
	background-clip: padding-box;
	background-color: rgba(0, 0, 0, 0.15);
	-webkit-box-shadow: inset -1px -1px 0px rgba(0, 0, 0, 0.05), inset 1px 1px 0px rgba(0, 0, 0, 0.05);
}

textarea::-webkit-scrollbar-thumb:hover, .scroller::-webkit-scrollbar-thumb:hover {
	background-color: rgba(0, 0, 0, 0.3);
}

textarea::-webkit-scrollbar-button, .scroller::-webkit-scrollbar-button {
	width: 0;
	height: 0;
	display: none;
}
textarea::-webkit-scrollbar-corner, .scroller::-webkit-scrollbar-corner {
	background-color: transparent;
}
textarea, .scroller {
	scrollbar-color: rgba(0, 0, 0, 0.15) transparent; /* thumb and track color */
	scrollbar-width: thin;
	-webkit-overflow-scrolling:touch;
	overflow-y: scroll;
}

/*:hover:hover, .scroller:hover {*/
/*	scrollbar-color: rgba(0, 0, 0, 0.3) transparent; !* thumb and track color *!*/
/*}*/

.l_font{
	font-family: museo_sans300, Helvetica, sans-serif;
	color: #444444;
	font-size: 11px;
}
.l_group{
	display: inline-block;
	margin: 0;
	padding: 0;
	/* display: relative; */
	text-align: left;
	vertical-align: middle;
}
.l_radio_button label, .l_checkbox label  {
  display: block;
  cursor: pointer;
  padding: .5em;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.l_radio_button [type="radio"] , .l_checkbox [type="checkbox"]{
      border: 0;
      clip: rect(0 0 0 0);
      height: 1px; margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px;
 }
.l_radio_button [type="radio"] + span, .l_checkbox [type="checkbox"] + span {
      display: block;
}
.l_radio_button [type="radio"] + label::before{
      content: '';
      display: inline-block;
      width: .5em;
      height: .5em;
      border-radius: 1em;
      border: 0.1em solid #fff;
      box-shadow: 0 0 0 0.15em #c0c0c0;
      margin-right: 0.75em;
      transition: 0.2s ease all;
}
.l_radio_button [type="radio"]:checked + label::before{
      background: #4A90E2;
}
.l_radio_button [type="radio"]:hover + label ,   .l_checkbox [type="checkbox"]:hover + label{
      color: #4A90E2;
}
 /* the basic, unchecked style */
.l_checkbox [type="checkbox"] + label::before{
      content: '';
      display: inline-block;
      width: .7em;
      height: .7em;
      vertical-align: 1px;
      border: 0.1em solid #fff;
      box-shadow: 0 0 0 0.15em #c0c0c0;
      margin-right: 0.75em;
      transition: 0.2s ease all;
}

/* the checked style using the : checked pseudo class */
.l_checkbox  [type="checkbox"]:checked + label::before{
      background: #4A90E2;
}
.l_checkbox_delete{
	vertical-align: -.5em;
    background-image: url('/assets/images/close2.svg');
	background-repeat: no-repeat;
	background-position: center;
	width: 20px;
	height: 20px;
	display: inline-block;
	cursor: pointer;

}
.l_checkbox_line{
	display: block;
	white-space: nowrap;
}
.l_checkbox_line .l_checkbox{
	display: inline-block;
}

/* Combo */
.l_combo{
	position: relative;
}

.l_combo .l_combo_disabled {
	background: rgb(240,240,240);
}

.l_combo:hover,
.l_combo:active,
.l_combo:focus {
	outline: 0 none !important;
}

.l_combo .l_combo_selected, .l_combo .l_combo_selected_readonly{
	text-align: center;
	border: 1px solid #c0c0c0;
	border-radius: 50px;

	/* for if a width is set */
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.l_combo .l_combo_selected_readonly{
	padding: 2px 12px 2px 12px;
}
.l_combo .l_combo_selected{
	background-image: url('/assets/images/common/combo_down_grey.svg');
	background-repeat: no-repeat;
	background-position: calc(100% - 7px) center;
	padding: 2px 25px 2px 12px;
}
.l_combo .l_combo_selected:hover{
	background-image: url('/assets/images/common/combo_down_blue.svg');
	color: #4A90E2;
	cursor: pointer;
}


.l_combo_popup {
	background: #FFF;
	border: 1px solid #c0c0c0;
	z-index: 5000;
	overflow-y: auto !important;
	overflow-x: hidden !important;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;

}
.l_combo_popup:not(.fixPopup) {
	z-index: 248;
}

.l_combo_popup .l_inner_popup{
	white-space: nowrap;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
}
.l_combo_popup .l_group{
	display: block;
}
.l_combo_option{
	padding: 10px 20px;
	border-bottom: 1px solid #EEE;
	white-space: nowrap;
	cursor: pointer;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: table;
	width: 100%;
}
.l_combo_option:hover{
	background-color: #EEE;
}
.l_combo_option:last-child{
	border-bottom: none;
}
.l_combo_option_selected{
	 color: #4A90E2 !important;
}

.l_combo_popup .l_radio_button  [type="radio"] + label::before{
      content: '';
      display: none;
}
.l_combo_popup .l_radio_button  [type="radio"]:checked + label{
      color: #4A90E2 !important;
}

.l_combo_popup .l_radio_button   [type="radio"]:hover + label{
      color: #4A90E2;
}
 .l_combo_popup .l_radio_button   [type="radio"]:focus + label{
      border: none !important;
}

/* Drop Down menu */
.l_drop_down_menu_label, .l_drop_down_menu_parent, .l_drop_down_menu_root, .l_drop_down_menu_root_parent{
	font-family: 'museo_sans300',Arial,Helvetica,sans-serif;
	font-size: 11px;
 /*  	letter-spacing: 1.11px; */
 	-moz-box-sizing: border-box;
  	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
}
.l_drop_down_menu_label, .l_drop_down_menu_parent{
	border-bottom: 1px solid #EEE;
	text-align: left;
}

.l_drop_down_menu_label:last-child{
	border: none;
}

.l_drop_down_menu_label:hover, .l_drop_down_menu_parent:hover{
	color: #4A90E2;
}
.l_drop_down_menu_label{
	padding: 10px 5px;
  /* 	font-family: 'museo_sans500',Arial,Helvetica,sans-serif; */
  	font-size: 11px;
  	white-space: nowrap;
  	text-overflow: ellipsis;
  	overflow-x: hidden;
}
.l_drop_down_menu_label:hover{
	background-color: #EEE;
}

.l_drop_down_menu_root, .l_drop_down_menu_root_parent{
	display: inline-block;
    color: #4A90E2;
	text-align: center;
	text-transform: uppercase;
}
.l_drop_down_menu_root{
	padding: 14px 19px;
}

.l_drop_down_menu_root_parent{
	background-image: url('/assets/images/actions/menu_drop_down_root.svg');
	background-repeat: no-repeat;
	background-position: calc(100% - 15px) center;
	padding: 14px 34px 14px 19px;
}
.l_drop_down_menu_root_parent:hover{
	background-image: url('/assets/images/actions/menu_drop_down_root_white.svg');
}
.l_drop_down_menu_parent{
	background-image: url('/assets/images/right_arrow_grey.svg');
	background-repeat: no-repeat;
	background-position: calc(100% - 10px) center;
	padding: 10px 30px 10px 5px;
}
.l_drop_down_menu_parent:hover{
	background-image: url('/assets/images/right_arrow_blue.svg');
}

.l_drop_down_menu_root_hover, .l_drop_down_menu_root:hover, .l_drop_down_menu_root_parent:hover, .l_drop_down_menu_parent_showing{
	background-color: #4A90E2 !important;
	color: #FFF !important;
}
.l_drop_down_menu_root_parent .l_drop_down_menu_parent_showing{
	background-image: url('/assets/images/actions/menu_drop_down_root_white.svg') !important;
}
.l_drop_down_menu_subpanel{
	position: fixed;
	visibility: hidden;
	overflow: hidden;
	max-height: 500px;
	z-index: 3000;
	opacity: .95 !important;
	border: 1px solid #c0c0c0;
	padding: 5px;
	background: #FFF;
}

.l_drop_down_menu_subpanel.visible {
	overflow-y: auto;
}

.l_drop_down_menu_subpanel_inner{
	display: inline-block;
	min-width: 160px;
}
/* actions toolbar */
.actions_toolbar{
	white-space: nowrap;
	overflow: hidden;
  	background: #FFF;
	border: 1px solid #c0c0c0;
}
.actions_toolbar_left{
	float: left;
}
.actions_toolbar_right{
	float: right;
}
.actions_toolbar div{
	display: inline-block;
}
.actions_toolbar > div{
	white-space: nowrap;
	vertical-align: middle;
}
.actions_toggle, .actions_refresh, .actions_edit{
	font-family: 'museo_sans500',Arial,Helvetica,sans-serif;
	font-size: 11px;
	letter-spacing: 1.11px;
	cursor: pointer;
	text-decoration: none;
	color: #444444;
	vertical-align: middle;
	padding: 14px 20px 14px 0;
}
.actions_toggle{
	text-align: center;
	display: inline-block;
}
.actions_refresh{
	padding-right: 30px;
	margin-right: 20px;
	background: url("/assets/images/actions/refresh_grey.svg") no-repeat right;
}
.actions_refresh:hover{
	background: url("/assets/images/actions/refresh_blue.svg") no-repeat right;
}
.actions_edit{
	padding-right: 30px;
	margin-right: 20px;
	background: url("/assets/images/common/pencil_grey.svg") no-repeat right;
}
.actions_edit:hover{
	background: url("/assets/images/common/pencil_blue.svg") no-repeat right;
}
.actions_refresh span:last-child, .actions_edit span:last-child{
	color: #4A90E2;
}
/* common */
.visible{
	visibility: visible !important;
}
.hidden{
	visibility: hidden !important;
}
.opacity_low{
	opacity: .3;
}
.smooth{
	transition: all 2s ease;
}
 /* the basic, unchecked style */
input[type="checkbox"] + label::before{
    border: 1px solid #FFFFFF;
    box-shadow: 0 0 0 2px #C0C0C0;
    content: "";
    display: inline-block;
    height: 8px;
    transition: all 0.2s ease 0s;
    vertical-align: 1px;
    width: 8px;
    margin-right: .75em;
    cursor:pointer;
}
input[type="checkbox"]{
  display: block;
  cursor: pointer;
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px; margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
/* the checked style using the : checked pseudo class */
input[type="checkbox"]:checked + label::before{
      background: #4A90E2;
}
/* details section */

.details{
	padding: 10px 25px !important;
	max-height: 1000px;
	overflow: hidden;
	transition: all 0.50s;
	opacity: 1;
}
.details_no_transition{
	transition: all 0s !important;
}
.row_hidden .details{
	max-height: 0 !important;
	padding: 0 25px !important;
	opacity: 0 !important;
}
.details_section{
	background: #FFFFFF;
    border-bottom: 1px solid #C0C0C0;
    padding: 10px;
    font-size: 11px !important;
}
.details_section_state, .details_section_value{
	float: right;
}
.details_section_state{
	cursor: pointer;
	min-width: 20px;
	text-align: center;
}
.details_section > div{
	padding: 10px;
}
.details_section > div > div{
	padding-bottom: 10px !important;
}
.details_section > div > div{
	padding: 0;
}
.details_section:last-child{
	border: none;
}
.details_section_title {
	text-transform: uppercase;
	background: #F2F2F2;
	font-family: 'museo_sans300',Arial,Helvetica,sans-serif;
}
.details_section_subtitle{
	text-transform: uppercase;
	padding: 10px 0;
	font-family: 'museo_sans300',Arial,Helvetica,sans-serif;
	word-wrap: break-word;
}

.gwt-DatePicker{
	display: inline-block;
	font-family: 'museo_sans100',Arial,Helvetica,sans-serif;
	background-color: white;
}
.gwt-DatePicker td,
.datePickerMonthSelector td:focus {
  outline: none;
}
.datePickerMonthSelector td:focus {
  outline: none;
}
.datePickerDays {
  width: 100%;
  background: white;

  border-left: 1px solid #EDEDED;
  border-top: 1px solid #EDEDED;
}
.datePickerDay,
.datePickerWeekdayLabel,
.datePickerWeekendLabel {
  font-size: 85%;
  text-align: center;
  outline: none;
  color: #333;
  border-right: 1px solid #EDEDED;
  border-bottom: 1px solid #EDEDED;
  padding: 4px;
}
.datePickerWeekdayLabel,
.datePickerWeekendLabel {
  background: #fff;
  cursor: default;
  color: #666;
  font-size: 70%;
  font-weight: normal;
}
.datePickerDay {
  padding: 4px 7px;
  cursor: pointer;
  color: #666;
}
.datePickerDayIsWeekend {
  background: #f7f7f7;
}
.datePickerDayIsFiller {
  color: #999;
  font-weight: normal;
}
.datePickerDayIsValue {
  background: #4A90E2 !important;
  color: #FFF !important;
}
.datePickerDayIsDisabled {
  color: #AAAAAA;
  font-style: italic;
  cursor: default;
}
.datePickerDayIsHighlighted {
  background: #4A90E2;
}
.datePickerDayIsValueAndHighlighted {
  background: #d7dfe8;
}
.datePickerMonthSelector {
  width: 100%;
  padding: 1px 0 5px 0;
  background: #fff;
}
.datePickerPreviousButton,
.datePickerNextButton,
.datePickerPreviousYearButton,
.datePickerNextYearButton {
  font-size: 120%;
  line-height: 1em;
  color: #3a6aad;
  cursor: pointer;
  padding: 0 4px;
  outline: none;
}
.datePickerMonth,
.datePickerYear {
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  font-size: 100%;
  color: #333;
}
.gwt-DateBox {
  padding: 5px 4px;
  border: 1px solid #ccc;
  border-top: 1px solid #999;
  font-size: 100%;
}
.gwt-DateBox input {
  width: 8em;
}
.dateBoxFormatError {
  background: #ffcccc;
}
.tags_editor, .emails_editor{
	overflow: auto;
	border: 1px solid #c0c0c0;
	border-radius: 10px;
	padding: 5px !important;
	text-align: left;
	font-size: 9pt;
}
.tags_editor{
	height: 165px;
}
.emails_editor{
	height: 78px;
	max-height: 78px;
	overflow-y: auto;
	clear: both;
}
.tags_editor input{
	width: 185px;
}
.emails_editor input{
	width: 205px;
}
.tags_editor input, .emails_editor input{
	display: inline-block;
	margin: 0 5px 5px 0;
	border-radius : 15px;
	vertical-align: middle;
	padding: 2px 6px 3px 6px;
	white-space: nowrap;
	border: 1px solid #4A90E2;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-align: left;
	transition: width .1s linear;
}
.tags_editor .dummy, .emails_editor .dummy{
	display: inline-block;
	vertical-align: middle;
	padding: 3px 7px 4px 7px;
	white-space: nowrap;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-align: left;
	font-family: museo_sans100,Helvetica,sans-serif;
	font-size: 12px !important;
	letter-spacing: 0 !important;
	min-width: 50px;
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
}
.tags_editor .deleteable_label, .emails_editor .deleteable_label{
	display: inline-block;
	margin: 0 5px 5px 0;
	overflow: hidden;
	border-radius : 10px;
	color: #FFF;
	background: #4A90E2;
	cursor: pointer;
	vertical-align: middle;
	padding: 3px 6px 4px 10px;
	white-space: nowrap;
}
.tags_editor .deleteable_label > div, .emails_editor  .deleteable_label > div{
	display: inline-block;
}
.tags_editor .deleteable_label a, .emails_editor .deleteable_label a {
	margin: 0 0 1px 6px;
	width: 12px;
	height: 12px;
	border-radius : 7px;
	background: url('../images/close2.svg') center no-repeat;
	display: inline-block;
	vertical-align: middle;
}
.tags_editor .deleteable_label a:hover, .emails_editor .deleteable_label a:hover {
	background: url('../images/close_dark2.svg') center no-repeat;
}

.tags_condition_btn > * {
	margin-right: 10px;
}

.system_list_multi_selector > div {
	width: 100%;
}

.system_list_multi_selector > div:last-child {
	margin-top: 10px;
}

.system_list_multi_selector input {
	width: 100%;
}

.system_list_multi_selector .tags_editor .label {
	display: inline-block;
    overflow: hidden;
    border-radius: 0px;
    cursor: pointer;
    padding: 3px 6px 4px 10px;
    width: 100%;
    float: none;
}

.system_list_multi_selector .tags_editor .label.selected {
	color: #FFF;
    background: #4A90E2;
}

.fixPopup {
	position: fixed !important;
	z-index: 2147483648 !important;
}
.date_range_filter{
    position: relative;
    width: 480px;
    height: 300px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
}
.date_range_filter > div:nth-child(n+1) {
    -moz-box-sizing: border-box;
     box-sizing: border-box;
    margin-bottom: 20px;
    display: inline-block;
    width: 220px;
}
.date_range_filter > div:last-child{
    float: right;
}
.date_range_filter > div > div, .date_range_filter > div > table{
    display: block;
    margin-bottom: 10px;
}
.date_range_filter .gwt-DatePicker{
    padding: 1em !important;
    -moz-box-sizing: border-box;
	box-sizing: border-box;

}
.inline_filter{
	white-space: nowrap;
}
.inline_filter > div{
	display: inline-block;
}
.inline_filter > div:not(:last-child) {
	margin-right: 5px;
}

.l_combo_empty {
    background-image: none !important;
    padding: 2px 12px !important;
    font-style: italic;
}
.checkbox_ranking_config{
    width: 100%;
    height: 300px;
    overflow-y: auto;
}
.checkbox_ranking_config .l_checkbox {
    display: inline-block;
}

.checkbox_ranking_config .l_ranking_config_icons {
    display: inline;
    float: right;
}

.checkbox_ranking_config .no_display + .l_ranking_config_icons {
    display: none !important;
}

input:disabled {
	background-color: #F0F0F0;
}

.panel_loading {
    width: 100%;
    height: 100%;
    position: static !important;
}
.bordered {
    border: 1px solid #C0C0C0;
    border-radius: 10px 10px 10px 10px;
    margin: 15px 0;
    max-height: 200px;
    min-height: 150px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 1em;
}
.blue {
	color: #0083CE;
}
.text_search_group_widget > div{
	height: 325px;
	width: 100%;
	overflow-y: auto;
}
.list_container {
	border: 1px solid #c0c0c0;
	border-radius: 15px;
	padding: 5px 15px;
	height: 165px;
	overflow: auto;
}

.list_container .l_checkbox{
	display: block;
}
.list_container label {
	display: block;
	width: 100%;
	padding: 5px;
	margin: 0;
	text-align: left;
}
.error_message_tooltip{
	z-index: 4001;
	position: fixed;
	color: #FFF;
    box-shadow: 0 0 6px 1px rgba(50, 50, 50, 0.82);
    padding: 5px 10px;
    transition: opacity .3s linear;

	background: #DD0000; /* For browsers that do not support gradients */
    background: -ms-linear-gradient(#FF0000, #DD0000); /* For Safari 5.1 to 6.0 */
    background: -webkit-linear-gradient(#FF0000, #DD0000); /* For Safari 5.1 to 6.0 */
    background: -webkit-gradient(#FF0000, #DD0000); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#FF0000, #DD0000); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#FF0000, #DD0000); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#FF0000, #DD0000); /* Standard syntax */

}
.error_message_tooltip:after {
    background: none repeat scroll 0 0 #DD0000;
    bottom: -5px;
    /*box-shadow: 0 0 5px #CCCCCC;*/
    content: "";
    display: block;
    height: 10px;
    left: 5px;
    position: absolute;
    transform: rotate(-45deg);
    width: 10px;
}
.slider_bar{
    border-top: 10px solid #FFFFFF !important;
    border-bottom: 10px solid #FFFFFF !important;
    border-left: 1px solid #FFFFFF !important;
    border-right: 1px solid #FFFFFF !important;
    -moz-box-sizing: border-box;
     box-sizing: border-box;
    cursor: pointer;
    height: 21px !important;
}
.slider_labels > div{
	display: inline-block;
	transition: font-size .2s ease-in-out;
	vertical-align: top;
	padding-top: 5px;
	text-align: center;
}
.slider_labels > div:hover{
	cursor: pointer;
	color: #4A90E2;
	font-size: 14px !important;
}
.slider .ui-slider-handle {
    border: 1px solid #979797;
    border-radius: 8px;
    height: 16px;
    width: 16px;
   	margin-top: -4px;
    outline: 0;
    background: #C0C0C0;
}
.slider .ui-slider-handle:hover{
	cursor: pointer;
}

.page_flux_widget div > label {
    display: block;
    margin-top: 20px;
}

.filter_tags_query_table{
	height: 325px;
}
.l_checkbox-disabled label{
	opacity: 0.3;
}
.date_range_widget{
	width: 465px;
}
.date_range_widget > div{
	display: inline-block;
}
.date_range_widget > div:last-child{
	float: right;
}
.multi_date_picker > div > a{
    display: block;
    border-radius: 12px;
    cursor: pointer;
    padding: 3px 5px 3px 8px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 5px 5px 0 5px;
    color: #4A90E2;
    border: 2px solid #4A90E2;
    background-image: url(../images/close2.svg);
    background-position: right 5px top 4px;
    background-repeat: no-repeat;
    text-align: center;
}
.multi_date_picker_selected_date{
	color: #FFFFFF !important;
    background: #4A90E2 !important;
}
.quick_date {
	margin-bottom: 10px;
}