
/* new styles for migration to react */
.modal {
  overflow-y: hidden !important;
}
.nav-link {
  color: black;
  cursor: pointer;
}
/* end new styles for migration to react */

/* commented this because affect the react container-fluid
div.container-fluid {
  padding: 0 !important;
  margin: 0 !important;
} */

.modal {
    height: 100%;
    max-height: 100%;
    transform: none;
}

.modal.in {
    opacity: 100 !important;
}

.modal-dialog {
    transform: none !important;
    font-size: 0.875rem;
}

.modal-dialog.modal-fullscreen {
    max-width: 95% !important;
}

.modal-backdrop.in {
    opacity: 30% !important;
}


.modal .modal-header .app_icon,
.modal .modal-header .product_icon,
.ngdialog .card .card-header .app_icon,
.ngdialog .card .card-header .product_icon 
{
  display: inline-block;
}

#counters-wrap {
  display: flex;
  flex-direction: column;
  position: absolute;
  top:0; left: 0; right: 0; bottom: 0;
  padding: 5px;
  overflow: clip;
}

#counters-wrap .action-buttons {
  display: inline-block;
}

#counters-wrap .action-buttons .btn {
  height: 20px;
  width: 20px;
  padding: 0;
  font-size: 12px;
}

#counters-wrap > h3, #counters-wrap > table, #counters-wrap > ul#countsTabs {
  display: flex;
  flex-grow: 0;  
}

#counters-wrap div#countsTabsContent {
  display: flex;
  flex-grow: 1; 
  overflow: hidden;
}

#counters-wrap div#countsTabsContent .tab-pane {
  overflow-y: scroll;  
}

#counters-wrap .loading-overlay {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #ccc;
    opacity: .8;
    text-align: center;
    padding-top: 5ch;
}

#counters-wrap .card-body {
	position: relative;
	flex-direction: column;
}

/* https://stackoverflow.com/a/47377149/293483 */
#counters-wrap .card-body > div.constrain-overflow {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: clip;
  display: flex;
  flex-direction: column;  
}

#counters-wrap .card-body > div.constrain-overflow > div.countsTabContent {
  overflow: clip;
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  flex-grow: 1;  
}

#counters-wrap .card-body > div.constrain-overflow > div.countsTabContent div.tab-pane {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: scroll;  
}

.bar_container_cell {
	box-sizing: content-box;
  display: inline-block;
  height: 1.5em;
  text-align: left;
  width: 100%;
}

.bar_container {
    display: flex; 
    flex-direction: row;
    justify-content: left;
}

.bar_container .bar_label {
    width: 100%;
    padding-left: 0.25em;
    white-space: nowrap;
}

.bar_container .bar {
    display: flex; 
    align-items: center;
    height: 1.5em; 
}

div.counters-dialog .ngdialog-content #counters-wrap {
  height: 100%;
  overflow: clip;
}

.bar_container .left_bar {
    flex-grow: 0; /* width will be set specifically */
    text-align: left;
}

.bar_container .center_bar {
    flex-grow: 0; /* width will be set specifically */
    text-align: left;
}

.bar_container .right_bar {
    flex-grow: 1; /* width will be unset - fill the remainder */
}

.rtb_row:hover {
	background-color: #ccc;
}

div.counters-dialog .ngdialog-content {
  height: 100%;
}

#counters-wrap thead th, #counters-wrap tfoot td {
  text-align: left;
}

#counters-wrap table.summarized-stats {
  table-layout:fixed;
  width: 100%;
}

#counters-wrap table.summarized-stats col.keycol1 {
  width: 20ch;
}

#counters-wrap table.summarized-stats col.keycol2 {
  width: 20ch;
}

#counters-wrap table.summarized-stats col.bid-bar {
width: 100px;
}

#counters-wrap table.summarized-stats col.bid-amt {
width: 5em;
}

/* 
Sticky for thead/tbody is only working in Firefox. Commented out
for consistency across browsers.
#counters-wrap table.summarized-stats thead {
  position: sticky;
  top: 0;
}

#counters-wrap table.summarized-stats tfoot {
  position: sticky;
  bottom: 0;
}
*/

#counters-wrap table.summarized-stats {
  font-size: 10pt;
}

#counters-wrap table.summarized-stats td, #counters-wrap table.summarized-stats th {
  padding: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;  
}

#counters-wrap table.summarized-stats thead tr {
border-top: 1px solid #888;
border-bottom: 1px solid #888;
background-color: #ccc;
font-size: smaller;
font-weight: bold;
}

#counters-wrap table.summarized-stats tfoot tr {
border-top: 1px solid #888;
border-bottom: 1px solid #888;
background-color: #ccc;
font-size: smaller;
font-weight: bold;
}

/* #counters-wrap table tfoot::before {
content: '&nbsp;';
display: block;
height: 10px;
} */

#counters-wrap th.number, #counters-wrap td.number {
  text-align: right;
}

#counters-wrap table.summarized-stats thead th.bar, #counters-wrap table.summarized-stats tbody td.bar, #counters-wrap table.summarized-stats tfoot td.bar {
  text-align: center;
  padding-left: 5px;
  padding-right: 5px;
  width: 100px;
}

#counters-wrap table.summarized-stats tbody td.bar, #counters-wrap table.summarized-stats tfoot td.bar {
  text-align: left;
}

#counters-wrap table.summarized-stats td.bar svg {
  max-width: 100px;
}
  
#counters-wrap td.nearCap {
  background-color: #FFFF99;
}

#counters-wrap td.capped {
  background-color: #FF9966;
}

#counters-wrap td.capExceeded {
  background-color: #CC0000;
}

th.sortable {
  cursor: pointer;
}

span.todayWeekSort {
  color: #ccc;
  cursor: pointer;
}

span.todayWeekSort span.selected {
  color: #000;
}

span.todayWeekSort span.selected.ascending::after,
span.singleSort.selected.ascending::after {
  content: '\2191';
  color: #000;
}

span.todayWeekSort span.selected:not(.ascending)::after,
span.singleSort.selected:not(.ascending)::after {
  content: '\2193';
}

table.sorted_today .data-row .dayStats,
table.sorted_week .data-row .weekStats
{
  color: #000;
}

table.sorted_today .data-row .weekStats,
table.sorted_week .data-row .dayStats
{
  color: #ccc;
}

productstable {
  width: 100%;
  display: block;  
}

table.campaigns_or_products_table {
  font-size: 10pt;
  table-layout: fixed;
  width: 100%;
  min-width: 100%;
}

/* default to not wrapping any text in any data-table unless overidden */
table.campaigns_or_products_table td,
table.clinks_table td {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
  vertical-align: middle;
  padding-top: 0;
  padding-bottom: 0;
}

table.campaigns_or_products_table div.tab-content {
  overflow-x: scroll;
}

/* table.campaigns_or_products_table .table-sm td {
  vertical-align: middle;
  padding-top: 0;
  padding-bottom: 0;
} */

table.campaigns_or_products_table thead th {
  border: 0;
}

table.campaigns_or_products_table tr.even {
  background-color: #f7f7f7;
}

table.campaigns_or_products_table col.product_icon {
  width: 50px;
}

/* special too-small rules for products table */
@media (max-width: 1250px) {
  table.campaigns_or_products_table.products_table col.product_name {
    width: 20ch;
  }
}

/* special too-small rules for clinks table */
@media (max-width: 1680px) {
  table.campaigns_or_products_table.clinks_table col.product_name {
    width: 20ch;
  }
  table.campaigns_or_products_table.clinks_table col.publisher {
    width: 20ch;
  }
}

table.campaigns_or_products_table col.product_name {
  width: 100%;
}

@media (min-width: 1680px) {
  table.campaigns_or_products_table.clinks_table col.product_name {
    width: 50%;
  }
  table.campaigns_or_products_table.clinks_table col.publisher {
    width: 60%;
  }
}

table.campaigns_or_products_table col.countries {
  width: 12ch;
}

table.campaigns_or_products_table.clinks_table col.countries {
  width: 7ch;
}

table.campaigns_or_products_table col.payout {
  width: 15ch;
}

table.campaigns_or_products_table.clinks_table col.payout {
  width: 11ch;
}

table.campaigns_or_products_table.campaigns_table col.payout {
  width: 10ch;
}

table.campaigns_or_products_table col.clicks,
table.campaigns_or_products_table col.revenue,

table.campaigns_or_products_table col.effective_cpc {
  width: 12ch;
}
table.campaigns_or_products_table.col.avg_cost_per_click {
  width: 12ch;
}
table.campaigns_or_products_table.clinks_table col.avg_cost_per_click {
  width: 12ch;
}
table.campaigns_or_products_table col.conversions,
table.campaigns_or_products_table col.conversion_rate,
table.campaigns_or_products_table col.daily_cap,
table.campaigns_or_products_table col.untracked,
table.campaigns_or_products_table col.fill_rate {
  width: 10ch;
}

table.campaigns_or_products_table col.counterbid_status {
  width: 7ch;
}


table.campaigns_or_products_table col.campaigns {
  width: 10ch;
}

table.campaigns_or_products_table.clinks_table col.campaigns {
  width: 7ch;
}

table.campaigns_or_products_table col.clinks {
  width: 10ch;
}

table.campaigns_or_products_table col.action_buttons {
  width: 142px;
}

table.campaigns_or_products_table.campaigns_table col.action_buttons {
  width: 110px;
}

table.campaigns_or_products_table.clinks_table.admin col.action_buttons {
  width: 165px;
}

table.campaigns_or_products_table col.campaign_status {
  width: 11ch;
}

table.campaigns_table col.campaign_status {
  width: 12ch;
}

table.clinks_table col.sources {
  width: 20ch;
}

table.clinks_table col.updated {
  width: 10ch;
}

table.campaigns_table col.campaign_info {
  width: 20px;
}

table.campaigns_table col.campaign_hops {
  width: 20px;
}

table.campaigns_table col.campaign_broken_flag {
  width: 20px;
}

table.campaigns_table col.placement_filters {
  width: 20px;
}

table.campaigns_or_products_table col.platforms {
  width: 6ch;
}

table.campaigns_table col.platforms {
  width: 6ch;
}

table.campaigns_table col.campaign_source {
  width: 15ch;
}

table.campaigns_table col.campaign_id {
  width: 15ch;
}

table.campaigns_table col.daily_cap {
  width: 10ch;
}

table.campaigns_table col.campaign_events {
  width: 8ch;
}

table.campaigns_table col.os_version {
  width: 6ch;
}

table.campaigns_table col.end_date {
  width: 6ch;
}

table.campaigns_table col.clicks_24hr,
table.campaigns_table col.clicks_7d,
table.campaigns_table col.conv_24hr,
table.campaigns_table col.conv_7d
{
  width: 7ch;
}

table.campaigns_table col.fill_rate_24hr,
table.campaigns_table col.fill_rate_7d {
  width: 6ch;
}

table.campaigns_table col.device_id_req,
table.campaigns_table col.incent_allowed,
table.campaigns_table col.source_app_id_req,
table.campaigns_table col.source_app_name_req
{
  width: 6ch;
}

table.campaigns_or_products_table td.right,
table.campaigns_or_products_table th.right {
  text-align: right;
}

/* no borders in nested campaigns table because the coloring makes rows obvious */
.campaigns_or_products_table .campaigns_table tr td,
.campaigns_or_products_table .clinks_table tr td {
    border: 0;
}

table.campaigns_table .BROKEN.odd {
  background-color: #FFA3AC;
}
table.campaigns_table .BROKEN.even {
  background-color: #F7B0B9;
}

table.campaigns_table .PAUSED.odd, 
table.campaigns_table .ENDED.odd {
  background-color: #FFFFC2;
}
table.campaigns_table .PAUSED.even, 
table.campaigns_table .ENDED.even {
  background-color: #FFF380;
}

table.campaigns_table .PAUSED.odd, 
table.campaigns_table .ENDED.odd,
table.campaigns_table .NEEDS_APPROVAL.odd,
table.campaigns_table .REQUIRES_POST_INSTALL_ACTION.odd,
table.campaigns_table .REGION_TARGETED.odd,
table.campaigns_table .REMOVED_FROM_FEED.odd,
table.campaigns_table .CPA_MULTIPLE_DEFAULT_EVENTS.odd,
table.campaigns_table .CPA_MULTIPLE_PAYABLE_EVENTS.odd,
table.campaigns_table .CPA_FIRST_EVENT_NOT_PAYABLE.odd,
table.campaigns_table .CPA_NO_PAYOUT_EVENT.odd,
table.campaigns_table .NO_WHITELIST_DEFINED.odd {
  background-color: #FFFFC2;
}
table.campaigns_table .PAUSED.even, 
table.campaigns_table .ENDED.even,
table.campaigns_table .NEEDS_APPROVAL.even,
table.campaigns_table .REQUIRES_POST_INSTALL_ACTION.even,
table.campaigns_table .REGION_TARGETED.even,
table.campaigns_table .REMOVED_FROM_FEED.even,
table.campaigns_table .CPA_MULTIPLE_DEFAULT_EVENTS.even,
table.campaigns_table .CPA_MULTIPLE_PAYABLE_EVENTS.even,
table.campaigns_table .CPA_FIRST_EVENT_NOT_PAYABLE.even,
table.campaigns_table .CPA_NO_PAYOUT_EVENT.even,
table.campaigns_table .NO_WHITELIST_DEFINED.even {
  background-color: #FFF380;
}


table.campaigns_or_products_table td.action_buttons {
  vertical-align: middle;
  font-size: 10pt;
  padding-top: 3px;
  padding-bottom: 3px;
}

table.campaigns_or_products_table td.action_buttons .btn {
  width: 30px;
  height: 30px;
  padding:0;
}

table.campaigns_or_products_table th.embedded_buttons .btn {
  width: 22px;
  height: 22px;
  padding:0;
  font-size: 13px;
}

table.campaigns_or_products_table td.product_icon {
  padding: 5px 0 0 0;
}
table.campaigns_or_products_table td.product_icon img {
  width: 45px;
  height: 45px;
}

table.campaigns_or_products_table td.action_buttons a.buy {
  padding-top: 2px;
}

table.campaigns_or_products_table td.product_icon div.no-icon {
  width: 39px;
  height: 39px;
  margin: 3px;
  display: table;
  font-size: 20pt;
  border: 1px dashed #888;
}

table.campaigns_or_products_table td.product_icon div.no-icon i {
  vertical-align: middle;
  display: table-cell;
  text-align: center;
  color: #888;
}

.platform_icon, .device_type_icon {
  display:inline-block;
}

table.campaigns_or_products_table td.product_name div {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
table.campaigns_or_products_table td.publisher div {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

table.campaigns_or_products_table td.updated {
  font-size: 9pt;
}

.ngdialog {
  padding: 75px 0;
  font-size: 0.875rem;
}

/* counteract the bootstrap card bulkiness or this just looks soooo padded */
.ngdialog.ngdialog-theme-default .ngdialog-content {
  padding: 0 !important;
}

.ngdialog.ngdialog-theme-default.ngdialog-full-screen {
  margin: 0px;
  padding-bottom: 50px;
  padding-top: 50px;  
}

.ngdialog.ngdialog-theme-default.ngdialog-full-screen .ngdialog-content {
  padding: 0 !important;
  width: 95%;
  height: 100%;  
}

.ngdialog.ngdialog-theme-default.ngdialog-full-screen .ngdialog-content {
  padding: 8px;
  width: 90%;
}

.ngdialog.ngdialog-theme-default.ngdialog-full-screen .ngdialog-close {
  right: 8px;
  top: 8px;
}

.ngdialog.ngdialog-theme-default.campaignissues-dialog .ngdialog-content {
  width: 850px;
  margin: auto;  
}

.ngdialog.ngdialog-theme-default.placement-restrictions-dialog .ngdialog-content {
  width: 750px;
  margin: auto;  
}

.ngdialog.ngdialog-theme-default.known-events-dialog .ngdialog-content {
  width: 85%;
  min-width: 1024px;
  max-width: 1200px;
  margin: auto;  
}

.modal.clink-history-dialog.modal-dialog-scrollable .modal-dialog {
  min-width: 850px;
  max-width: 1200px;
  margin: auto;  
}

.modal.clink-bulk-edit-dialog.modal-dialog-scrollable .modal-dialog {
  min-width: 750px;
  max-width: 1024px;
  margin: auto;  
}

.ngdialog.ngdialog-theme-default.ngdialog-full-screen .card {
  height: 100%;
}

campaignissues {
  display: inline-block;
}

div.action-buttons {
  font-size: 10pt;
}
div.action-buttons .btn {
  width: 30px;
  height: 30px;
  margin-bottom: 2px;
  padding:0;
}

.ngdialog.ngdialog-theme-default.multiselect-dialog .ngdialog-content {
  width: 850px;
  margin: auto;
}

.ngdialog.ngdialog-theme-default.clink-links-dialog .ngdialog-content {
  width: 850px;
  margin: auto;
}

/* .ngdialog.ngdialog-theme-default.clink-links-dialog textarea {
  height: 10ch;
} */

.multiselect-dialog .card-body .sourceToggle.btn {
	/* min-width: 2ch; */
	margin: 2px;
	text-overflow: clip;
	white-space: nowrap;
}

input.query {
  width: 375px;
}

.dropdown-menu li {
  padding-left: 6px;
  padding-right: 6px;
}

div.query_filters .filter_container {
  display: flex;
  flex-wrap: wrap;
}

div.query_filters .filter_container:after {
  clear: both;
  content: " ";
  display: block;
  height: 0;
}

div.query_filters .inner_filter_box {
  display: block;
  width: 100%;
  background: #f2f2f2;
  border-radius: 4px;
  position: relative;
}

div.query_filters .filter_box {
  float: left;
  padding: 7px;
  width: 12.5%; /* 1/8 */
  min-width: 200px;
  max-width: 250px;
  flex-grow: 1;
  display: flex;
}

div.query_filters .filter_box .alert {
  margin: 0.25rem;
  padding: 0.5rem;
}

div.query_filters .filter_options {
  padding: 6px;
}

div.query_filters .filter_box h4 {
  margin-top: 0;
  text-align: left;
  background: #c7c7c7;
  padding: 3px 0 0 6px;
  font-weight: 400;
  height: 30px;
  font-size: 12pt;
  position: relative;
}

div.query_filters .filter_box label {
  font-weight: normal;
  text-align: left;
  cursor: pointer;    
}


div.query_filters .filter_box h4 i.fa {
  position: absolute;
  right: 4px;
  top: 4px;
  font-size: 20px;
  cursor: pointer;
}

div.query_filters .filter_box hr {
  margin: 5px 0;
  border-top: 1px solid #000;
}

div.query_filters .filter_box select {
  width: 90%;
  margin: 20px auto;
  padding: 6px 6px;
  height: 32px;
  font-size: 0.9rem;  
}

.ngdialog .card .card-header .product_info_header .product_icon {
  display: block;
  float: left;
  margin-right: 6px;
}

div.product_info_header {
  margin-bottom: 0px;
}

div.product_info_header div {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

div.product_info_header .product_icon img {
  width: 65px;
  height: 65px;
}

div.product_info_header .header_title {
  font-weight: bold;
  font-size: 20px;
}

div.product_info_header .header_data {
  font-size: 16px;
  margin-left: 12px;
}

table.campaign-events {
  border-collapse: unset; 
  border-spacing: 0px; 
  margin-bottom: 12px; 
  font-size: 14px;
}

table.campaign-events th {
  width: 150px;
}

h5.recent-bids {
  background-color: rgba(0,0,0,.03);
  border-top: 1px solid rgba(0,0,0,.125);
  border-bottom: 1px solid rgba(0,0,0,.125);
  padding: 6px 0;
}

table.recent-bids {
  border-spacing: 0px;
  border-collapse: unset;
  font-size: 14px;
  line-height: 1.2em;
}

table.recent-bids td {
  white-space: nowrap;
  overflow: hidden;
}

table.recent-bids tr.last-sub-row div.text-cell {
  margin-bottom: 10px;
}

table.campaigns_or_products_table td .center {
  text-align: center;
}

div.clink-tabs ul.nav-tabs {
  white-space: nowrap;
  flex-wrap: nowrap;
}



.scroller {
	width: 100%;
	overflow-x: scroll;
}

.scroller_view {
	display:inline;
}

.diff {
	background-color: #fff;
	padding: 10px;
	text-align:center;
	min-width: 500px;
}

.bar {
	width: 100%;
	padding: 5px;
}

.input-group-addon {
	min-width: 150px;
}

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
	background-color: #fff;
}

.changed {
	color: #eee;
	background-color: #f0ad4e;
}

.noedit {
	margin-bottom: 5px;
	background-color: #eee;
	padding: 5px;
}

div.modal.clink-mod table.clink-reach-partner-table thead {
  margin-bottom: 5px;
}

div.modal.clink-mod table.clink-reach-partner-table input {
  font-size: 13px;
  height: 26px;
  padding: 0 6px;
  margin: 4px 0;
}

div.modal.clink-mod table.clink-reach-partner-table td {
  white-space: nowrap;
}

div.modal.clink-mod table.clink-reach-partner-table tbody tr:nth-child(6n),
div.modal.clink-mod table.clink-reach-partner-table tbody tr:nth-child(6n-1),
div.modal.clink-mod table.clink-reach-partner-table tbody tr:nth-child(6n-2) {
  background-color: #F7F7F7;
}

div.modal.clink-mod table.clink-reach-partner-table td.informational {
  font-size: 12px;
}

div.modal.clink-mod table.clink-reach-partner-table .input-group {
  margin: 0;
}

div.modal.clink-mod table.clink-reach-partner-table select {
  padding: 0 6px;
  height: 28px;
}

.input-group span.currency-label {
  font-size: 13px;
  padding: 0 6px;
}

.input-group span.currency-label {
  min-width: unset;
}

.negativeNumber {
  color: red;
}

.negativeNumber:before {
  content: "("
}

.negativeNumber:after {
  content: ")"
}

div.modal.clink-mod table.clink-reach-partner-table .btn-danger, 
div.modal.clink-mod div.add-reach .btn-primary {
  padding: 6px;
  font-size: 12px;
}

div.modal.clink-mod div.card-existing-clinks div.card-body {
  overflow-x: scroll;
}

div.modal.clink-mod table.existing-clinks {
  white-space: nowrap;
}

div.modal.clink-mod table.existing-clinks td.clink-stats div {
  float: left;
}

div.modal.clink-mod table.existing-clinks td.clink-stats div.clicks {
  width: 68px;
}

div.modal.clink-mod table.existing-clinks td.clink-stats div.installs {
  width: 53px;
}

div.modal.clink-mod table.existing-clinks td.clink-stats div.cti {
  width: 73px;
}

div.modal.clink-mod table.existing-clinks .btn {
  padding: 4px;
  font-size: 12px;
  width: 26px;
}

div.modal.clink-mod div.existing-clink-campaigns h4 {
  font-size: 16px;
}

div.modal.clink-mod td.checkbox-with-label label {
  margin: 0;
  font-weight: normal;
}

div.modal.clink-mod td.checkbox-with-label input[type="checkbox"] {
  height: unset;
  margin: 0 1px 0 4px;
  padding: 0;
}

div.modal.clink-mod td.checkbox-with-label label.no-checkbox-label {
  margin-left: 29px;
}

div.modal.clink-mod td.checkbox-with-label label.no-checkbox-label input[type="checkbox"] {
  display: none;
}

div.modal.clink-mod div.add-reach {
  margin-bottom: 12px;   
}

div.modal.clink-mod div.add-reach span.section-label {
  float: left;
  margin: 3px 12px 0 0;
}

div.modal.clink-mod div.add-reach select {
  width: 300px;
  padding: 0 6px;
  height: 28px;
  float: left;
}

div.modal.clink-mod div.add-reach .btn-primary {
  margin: 0px 0 0 8px;
  height: 100%;
}

div.modal.clink-mod table.existing-clinks tr {
  white-space: nowrap;
}

div.history-fields .input-group-addon {
  min-width: 180px;
  text-align: left;
  padding-top: 8px;
}

div.bulk-edit-clinks div.section-header {
  font-weight: 500; 
  font-size: 18px;
  margin-bottom: 6px;
}

div.bulk-edit-clinks label.attribute-label {
  font-size: 16px;
  font-weight: 500;
  float: left;
  margin: 7px 0 0 0;
  width: 80px;
}

div.radio-selector label {
  cursor: pointer;
}

.green {
  background-color: #339933;
}

.yellow {
  background-color: #FFFF99;
}

.red {
  background-color: #CC0000;
}

.ok {
  color: #5cb85c;
}

.not_ok, .cap_warning {
  color: #ed9c28;
}

.cap_alert {
  color: red;
}

.cap_paused {
  color: purple;
}

i.fa-apple {
  color: #7d7d7d;
  font-size: 15pt;
}

i.fa-android {
  color: #a4c639;
  font-size: 15pt;
}

i.fa-chrome {
  color: #03a1fc;
  font-size: 15pt;
}

i.fa-thumbtack {
  color: #1785fa;
}

i.fa-less-than {
  color: #666;
  margin-right: 4px;
  font-size: smaller;
}

.tooltip {
  z-index: 999990 !important;
  font-size: 12px;
}

.tooltip.stats-tooltip .tooltip-inner {
  text-align: left !important;
}

label.disabled-active, label.disabled-inactive {
  cursor: none;
  pointer-events: none;
}

label.disabled-active {
  background-color: rgba(0, 123, 255, 0.5);
  border-color: #EEEEEE;
}

label.disabled-inactive {
  background-color: rgba(90, 98, 104, 0.5);
  border-color: #EEEEEE;
}