/* Redefine browser CSS rules, cleanup to default values */
html {
  height: 100%;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #f2f2f2;
  color: #333;
  min-width: 800px;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: normal;
  font-variant: normal;
}

h1 {
  font-size: 230%;
  font-weight: 100;
}

h2 {
  font-size: 130%;
  font-weight: bold;
}

h3 {
  font-size: 110%;
  font-weight: bold;
}

img {
  border: 0;
}

ul {

}

.touchTooltip.detailsIcon {
    background-image: url("/static/images/application_view_detail.png")
}

.touchTooltip.helpIcon {
    background-image: url("/static/images/help_blue.png");
}

.touchTooltip {
    background-size: 16px 16px;
    width: 16px;
    height: 16px;
    position: relative;
    cursor: default;
    display: inline-block;
}


.touchTooltip .tooltip {
    display: none; /* Will be turned to block on :hover */
    background: #ffffff;
    border: 2px solid black;
    box-shadow: 0 0 5px #AAAAAA;
    color: black;
    font: 12px/1.5 Arial,Helvetica,sans-serif;
    max-width: 1000px;
	min-width: 300px;
	text-align: left;
    padding: 8px;
    position: absolute;
    top: 20px; /* Will be computed by JS */
    left: 25px; /* Will be computed by JS */
    z-index: 9999;
}

.touchTooltip:hover .tooltip {
    display: block;
}



/* Links */
a {
  color: #0088cc;
  text-decoration: underline;
}

a:hover {
  color: blue;
  text-decoration: underline;
}

a:focus {
  outline: thin dotted #333;
  outline-offset: 0;
}

a:hover, a:active {
  outline: 0;
}

/* Default font */
body, table, input, textarea, button {
  font-family: 'Helvetica', 'Arial', sans-serif;
  font-size: 100%;  /* Make sure that intput, textarea inherit the font-size from parents */
}


div.errorMessage {
  color: red;
}

.Btn {
  display: inline-block;
  margin: 0 0.3em 0 0;
  padding: 0.2em 1em;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  border-radius: 3px;
  border-width: 1px;
  border-style: solid;
  border-color: #c5c5c5;
  border-color: rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
  cursor: default;
  color: #3b3b41;
  min-height: 1em;
  font-weight: 200;
  font-size: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.Btn:hover {
  text-decoration: none;
  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
  -moz-transition: background-position 0.1s linear;
  -o-transition: background-position 0.1s linear;
  transition: background-position 0.1s linear;
}
.Btn:active {
  -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
  -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
  box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
}

.Btn.danger {
  background-color: #bd362f;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
  background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
  background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
  background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
  background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
  background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);
}
.Btn.main-target,
.Btn.success {
  color: #fff;
  background-color: #5ea401;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#5ea401));
  background-image: -webkit-linear-gradient(top, #62c462, #5ea401);
  background-image: -moz-linear-gradient(top, #62c462, #5ea401);
  background-image: -ms-linear-gradient(top, #62c462, #5ea401);
  background-image: -o-linear-gradient(top, #62c462, #5ea401);
  background-image: linear-gradient(to bottom, #62c462, #5ea401);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff5ea401', GradientType=0);
}



.Btn.submit {
  color: #fff;
  background-color: #5ea401;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#5ea401));
  background-image: -webkit-linear-gradient(top, #62c462, #5ea401);
  background-image: -moz-linear-gradient(top, #62c462, #5ea401);
  background-image: -ms-linear-gradient(top, #62c462, #5ea401);
  background-image: -o-linear-gradient(top, #62c462, #5ea401);
  background-image: linear-gradient(to bottom, #62c462, #5ea401);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff5ea401', GradientType=0);
}
.Btn[disabled] {
    opacity: .5;
}



.bt-events {
    width : 16px;
    height: 16px;
    display: table-cell;
    background-size: 16px 16px;
}

.bt-events.bt-disabled {
    opacity: 0.5;
}

.bt-events.bt-start-events {
    background-image: url('/static/images/go-top-32.png');
}
.bt-events.bt-prev-events {
    background-image: url('/static/images/go-up-32.png');
}

.bt-events.bt-next-events {
    background-image: url('/static/images/go-down-32.png');
}

.bt-events.bt-end-events {
    background-image: url('/static/images/go-bottom-32.png');
}

.bt-events.bt-events-play {
    background-image: url('/static/images/media-play.png');
}

.bt-events-pause {
    background-image: url('/static/images/media-pause.png');
}

.bt-events.bt-events-pick {
    background-image: url('/static/images/date-time.png');
}


div.timeControlsDiv .ui-dialog div {
    font-size: 90%;
    background-color: white;
}

div.timeControlsDiv #events-pick-dialog .ui-dialog .ui-dialog-buttonpane {
    text-align: center;
}
div.timeControlsDiv #events-pick-dialog .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
    float: none;
}

div.timeControlsDiv #events-pick-dialog .ui-slider .ui-slider-handle {
    width: 4px;
    height: 40px;
    top: -12px;
    background: #7eac41;
}

div.timeControlsDiv .ui-slider-horizontal {
    height: 20px;
    background: #f0f0f0;
}

/* Use tables with .alignmentTable to align divs */
.alignmentTable {
    border: 0px none;
    padding: 0px;
    border-spacing: 0px;
    border-collapse: collapse;
}

.alignmentTable td {
    border: 0px none;
    padding: 0px;
    border-spacing: 0px;
    border-collapse: collapse;
}




.headerTable {
    border: 0px none;
    padding: 0px;
    border-spacing: 0px;
    border-collapse: collapse;
}

.headerTable td {
    border: 0px none;
    padding: 0px;
    border-spacing: 0px;
    border-collapse: collapse;
}

tr.headerTableRow2 td {
    border-spacing: 2px;
    height: 100%;
}



.peerHeaderInfo {
    border: 1px solid;
    margin: 1px;
    white-space: nowrap;
    overflow: hidden;
    font-size: 70%
}

/* Old ones */


table {
    border-width: 1px;
    border-spacing: 3px;
    border-style: solid;
    border-collapse: separate;
    border-color: black;
}

 td {
    border-width: 1px;
    border-spacing: 3px;
    border-style: inset;
    border-collapse: separate;
    border-color: #ccc;
    padding-left: 2px;
    padding-right : 0px;
    padding-top: 0px;
    padding-bottom: 0px;
}

.navbar {
    position: fixed;
    top: 0px;
    height: 40px;
    width: 100%;
    min-width: 1200px;
    background: #505050;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;

    z-index: 1000;
    overflow: visible;

    color: #fff;
    width: 100%;
}


.gradientBackground {
        background: #e8e8e0;
        background-image: linear-gradient(to bottom, #ffffff, #e8e8e0);
        background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e8e8e0));
        background-image: -webkit-linear-gradient(top, #ffffff, #e8e8e0);
        background-image: -moz-linear-gradient(top, #ffffff, #e8e8e0);
        background-image: -ms-linear-gradient(top, #ffffff, #e8e8e0);
        background-image: -o-linear-gradient(top, #ffffff, #e8e8e0);
        background-repeat: repeat-x;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe8e8e0', GradientType=0);
}

/* For testing, we use non-gradient background because it results in fewer
   false positives when comparing screen shots */
.gradientBackground_testing {
        background: #e8e8e0;
}

.navbar-inner {
}

.navbar .pull-right {
    float: right;
    margin-right: 0px;
}

.navbar .pull-right button {
    border-color: #505050;
    min-height: 26px;
    min-width: 50px;
    margin: 0;
    line-height: 1.3;
    text-align: left;

    color: #fff;
    background: #505050;
}

.navbar .pull-left {
    float: left;
    margin-left: 0px;
    font-size: 120%;
    font-weight: bold;
    padding: 5px 10px;
}

.navbar .pull-center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    font-size: 120%;
    font-weight: lighter;
    padding: 5px 10px;
}
.menu_options {
    background-color: #f2f2f2;
    border: 1px solid #ccc;
    position: absolute;
    font-size: 80%;
    z-index: 10;
    right: 10px;
    top: 42px;
    padding: 5px 5px 5px 5px;
    color: #000;
    border-radius:5px;
}


.menu_options ul {
    padding-left: 0;
    list-style: none;
    white-space: nowrap;
}

.menu_options li {
    padding: 2px;
}

.menu_options li a{
    color:#000;
    text-decoration: none;
}


.Dropdown {
    display: inline-block;
    position: relative;
    z-index: 1001;
}
.login_name {
    display: block;
    font-size: 90%;
    line-height: 1.1;
    position: relative;
    top: -2px;
}
.login_button {
    height: 38px;
    font-size: 90%;
}

.errorMessageDiv {
    position:fixed;
    right:0px;
    top:42px;
    background:red;
    z-index: 1001;
}

.dialogDiv {
    z-index: 1000;
}

.mainDiv {
    position: relative;
    width: 100%;
    height: 100%;
    min-width: 800px; /* Must fit on a small projector screen */
}

.company_name_impersonating {
    color: red;
}

.ui-button  .ui-icon.icon-gear {
    position: absolute;
    top: 45%;
    right: .6em;
    display: inline-block;
    width: 0;
    height: 0;
    vertical-align: middle;
    border-style: solid;
    border-width: 4px;
    border-color: #fff transparent transparent;
    content: '';
    margin: 0;
}

#but_settings .ui-button-text {
    padding-right: 2.5em;
}

.opacity03 {
  opacity: 0.3;
}

#okta-sign-in {
  border: none;
  margin: 0;
  width: auto;
  min-width: auto;
}

#okta-sign-in .auth-content {
  padding: 0;
}

#okta-sign-in .button-primary {
  height: 38px;
  background-color: #93c90e;
  border-color: #82b10c;
  color: white;
  line-height: 38px;
}

.SiteHeader {
  height: 40px;
  width: 100%;
  text-align: right;
  background-color: white;
  position: fixed;
  z-index: 99999999;
  border-bottom: 1px solid #c4c4c4;
}
.SiteHeader .header_item {
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  position: relative;
  line-height: 40px;
  height: 40px;
  padding: 0 10px;
  cursor: pointer;
  color: #6e6e6e;
  outline: none;
}
.SiteHeader .header_item:hover,
.SiteHeader .header_item.focus {
  text-decoration: none;
  background-color: white;
}
.SiteHeader .header_item::after {
  display: none;
}
.SiteHeader .header_item.focus::after {
  content: '';
  display: block;
  position: absolute;
  border-style: solid;
  left: 13px;
  top: 35px;
  border-width: 0px 8px 6px 8px;
  border-color: #969696 transparent;
}
@media (max-width: 667px) {
  .SiteHeader .header_item {
    margin-left: 0;
    padding: 0 2px;
  }
  .SiteHeader .header_item.timezone,
  .SiteHeader .header_item.username,
  .SiteHeader .header_item.account {
    display: none;
  }
}

.SiteHeader .header_item.ts_title{
  float: left;
  text-align: left;
  vertical-align: middle;
  position: relative;
  line-height: 40px;
  height: 40px;
  padding: 0 10px;
  cursor: pointer;
  color: #6e6e6e;
  outline: none;
  padding-top: 1px;
}
.SiteHeader a.header_item {
  text-decoration: none;
}
.SiteHeader .apps {
  width: 20px;
  height: 40px;
  float: left;
  padding: 0 9px;
  margin-left: 6px;
}
.SiteHeader .apps .DropdownList {
  left: 0;
  max-width: 350px;
  min-width: 231px;
}
.SiteHeader .apps .DropdownList .item {
  padding-left: 20px;
  background-size: 20px auto;
}
.SiteHeader .apps .DropdownList .item:hover {
  text-decoration: none;
}
.SiteHeader .apps .DropdownList .current {
  position: relative;
}
.SiteHeader .apps .DropdownList .current::after {
  content: '';
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  right: 15px;
  top: 15px;
  background: #93c90e;
}
.SiteHeader .logo {
  float: left;
  margin-left: 0;
  padding: 0 6px 0 0;
}
.SiteHeader .dots + .logo {
  padding-left: 0;
}
.SiteHeader.guest {
  text-align: center;
}
.SiteHeader.guest .logo {
  float: none;
  padding: 0 10px;
}
.SiteHeader .pulse_logo {
  padding-left: 120px;
  padding-bottom: 5px;
  background: url('/static/images/conviva-logo-registered.png') 0 0 no-repeat;
  background-size: 108px auto;
}
.SiteHeader .pulse_logo.switch_menu {
  margin-left: 6px;
}
.SiteHeader .alerts_bell,
.SiteHeader .search,
.SiteHeader .Dropdown .dropdown_button {
  width: 24px;
  height: 24px;
  display: block;
  margin: 8px 6px 0 0;
  background-image: url('/static/images/pulse_sprite.png');
  background-repeat: no-repeat;
  background-size: auto 96px;
}
.SiteHeader .Dropdown.apps .dropdown_button {
  background-position: -8px -36px;
}
.SiteHeader .Dropdown.help .dropdown_button {
  background-position: -67px -68px;
}
.SiteHeader .Dropdown.settings .dropdown_button {
  background-position: -262px -35px;
}
.SiteHeader .Dropdown.user_menu .dropdown_button {
  background-position: -294px -35px;
}
.SiteHeader .Dropdown.user_menu {
  margin-right: 10px;
}
.SiteHeader .alert_alert {
  opacity: .7;
  padding-left: 15px;
}
.SiteHeader .alert_alert:hover {
  opacity: 1;
}
.SiteHeader .alerts_bell {
  z-index: 1;
  position: absolute;
  background-position: -192px -64px;
  top: -3px;
  left: -1px;
}
.SiteHeader .alerts_amount {
  text-align: center;
  font-size: 11px;
  border: 1px solid #6e6e6e;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  left: 3px;
  z-index: 1;
  width: 16px;
  height: 16px;
  line-height: 16px;
}
.SiteHeader .alerts_amount.digits2 {
  width: 24px;
  height: 24px;
  line-height: 24px;
}
.SiteHeader .alerts_amount.digits3 {
  width: 26px;
  height: 26px;
  line-height: 26px;
}
@media (max-width: 667px) {
  .SiteHeader .Dropdown.user_menu {
    margin-right: 5px;
  }
  .SiteHeader .alert_alert {
    display: none;
  }
}
.Dropdown {
  opacity: .7;
  outline: none;
  z-index: 1;
}
.Dropdown:hover,
.Dropdown.focus {
  opacity: 1;
  z-index: 4;
  background-color: #45494d;
}
.Dropdown:after {
  position: absolute;
  top: 45%;
  right: .6em;
  display: inline-block;
  width: 0;
  height: 0;
  vertical-align: middle;
  border-style: solid;
  border-width: 4px;
  border-color: #fff transparent transparent;
  content: '';
  margin: 0;
}
@media (max-width: 667px) {
  .Dropdown:after {
    right: 0.2em;
  }
}
.Dropdown .dropdown_button {
  width: 20px;
  display: inline-block;
  margin-right: 10px;
  height: 40px;
}
.Dropdown.focus .DropdownList {
  display: block;
}
.Dropdown .DropdownList {
  right: 0;
  top: 40px;
  color: #fff;
  position: absolute;
  max-width: 300px;
  min-width: 150px;
  line-height: 30px;
  white-space: nowrap;
  background-color: #969696;
  display: none;
}
.Dropdown .DropdownList .item,
.Dropdown .DropdownList .account {
  display: block;
  color: #fff;
  padding: 3px 25px 3px 20px;
  text-decoration: none;
  cursor: default;
  width: 100%;
  outline: none;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.Dropdown .DropdownList .item .label,
.Dropdown .DropdownList .account .label {
  display: block;
  font-size: 85%;
  margin-top: .2em;
  margin-bottom: -0.7em;
  color: #bfbfbf;
}
.Dropdown .DropdownList .item:hover,
.Dropdown .DropdownList .item.selected {
  text-decoration: none;
  color: #fff;
  background-color: #696f75;
}
.Dropdown .DropdownList .account {
  line-height: 1.5;
  padding-top: .5em;
  padding-bottom: .5em;
}
.Dropdown .DropdownList .divider {
  border-top: 1px solid #8a8a8a;
}
.Page .Btn.Dropdown {
  opacity: 1;
  padding-right: 1.5em;
}
.Page .Btn.Dropdown:hover,
.Page .Btn.Dropdown.focus {
  background-color: #e6e6e6;
}
.Page .Btn.Dropdown:after {
  border-color: #3a3f42 transparent transparent;
}
.g-clearfix:after {
  content: '';
  display: block;
  clear: both;
  height: 0;
  overflow: hidden;
}
