html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  outline: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: Ubuntu, sans-serif;
  font-size: 85%;
  line-height: 1;
  padding-bottom: 65px;
  background-color: #ffffff;
}

a {
  font-size: 16px;
  text-decoration: none;
  color: gray;
}

a:hover{
  color:#1097E1;
}

/* Header banner */

.header-banner {
  text-align: center;
  padding: 30px 20px 10px;
}

.header-banner img {
  max-width: 900px;
  width: 100%;
  height: auto;
}

/* Page content */

.page-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 40px;
}

/* Quick Start Banner */

.quick-start-banner {
  text-align: center;
  margin-bottom: 35px;
}

.quick-start-btn {
  display: inline-block;
  padding: 14px 40px;
  background-color: #108CDD;
  color: #fff !important;
  font-size: 1.3em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.quick-start-btn:hover {
  background-color: #0b6fb3;
  color: #fff !important;
}

.quick-start-btn .fa {
  margin-right: 8px;
}

/* Product sections */

.product-section {
  margin-bottom: 40px;
}

.product-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.product-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-right: 15px;
  flex-shrink: 0;
}

.product-title {
  color: #108CDD;
  font-weight: normal;
  font-size: 1.8em;
  line-height: 1.3em;
}

/* Table styling */

table{
  margin: 0 auto !important;
}

table.custom-table {
    border-collapse: collapse;
    background: #fff;
    margin-bottom: 20px;
    display: table;
    width: 100%;
}

table.custom-table td, table.custom-table th {
    padding-bottom: 0.75em;
    padding-top: 0.75em;
    text-align: center;
}

td.err {
  background-color: #e992b9;
  color: #fff;
  font-size: 0.75em;
  text-align: center;
  line-height: 1;
}

th {
    background-color: #108CDD;
    font-weight: bold;
    color: #fff;
    white-space: nowrap;
}

tbody th {
  background-color: #108CDD;
}

tbody tr:nth-child(2n-1) {
    background-color: #E2E2E2;
}

tbody tr {
    background-color: #f5f5f5;
}

th.apidoc, td.apidoc{
    width: 10%;
}

th.version, td.version{
    width: 10%;
}

th.samples, td.samples{
    width: 50%;
}

.see-reference {
  font-size: 0.85em;
  color: #666;
  padding: 0 10px;
  font-style: italic;
}

/*---------------------*/
/*  Dropdown styling  */

ol, ul { list-style: none; }

.dropdown {
  font-size: 1.2em !important;
  display: block;
  padding: 4px 3px;
  width: 266px;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
  border-left: 4px solid #739cda;
  background: #fff;
  font-size: 1.55em;
  color: #656565;
  font-weight: normal;
  -webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  -moz-box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
.dropdown:hover { color: #898989; }

.dropdown.open {
  background: #5a90e0;
  color: #fff;
  border-left-color: #6c6d70;
}

.dropdown ul {
  position: absolute;
  top: 100%;
  left: -4px; /* move content -4px because of container left border */
  width: 266px;
  z-index: 1;
  max-height: 200px;
  overflow: auto;
  padding: 5px 0px;
  display: none;
  border-left: 4px solid #8e9196;
  background: #fff;
  -webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  -moz-box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.dropdown ul li { font-size: 0.9em; }

.dropdown ul li a {
  text-decoration: none;
  display: block;
  color: #447dd3;
  padding: 7px 15px;
  font-size: 90%;
}
.dropdown ul li a:hover {
  color: #6fa0e9;
  background: #e7f0f7;
}


.panel-manager-table {
    table-layout: fixed;
}

.panel-manager-table th.version,
.panel-manager-table td.version {
    width: 33.33%;
}

.panel-manager-table th.apidoc,
.panel-manager-table td.apidoc {
    width: 33.33%;
}

.panel-manager-table th.download,
.panel-manager-table td.download {
    width: 33.33%;
    text-align: center;
}