/* The container of the entire debug app */
.container {
  line-height: 1;
  text-align: center;
  font-size: 13px;
  font-family: Arial;
  font-weight: bold;
  bottom: 0;
  height: 100%;
  width: 100%;
  position: fixed;
  font-family: AmazonEmber, Helvetica, Arial, sans-serif;
  color: #394E50;
}
/* Navigation Bar */
.titleBar {
  padding: 5px 5px 5px 16px;
  height: 24px;
  border-top: 1px solid #AAB7B8;
  background-color: #F4F6F6;
  letter-spacing: 0;
  font-size: 13px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
}
.titleBar span {
  float: left;
  line-height: 16px;
  height: 16px;
  padding: 4px;
}
.titleBar .exitButton {
  float: right;
  width: 16px;
  cursor: pointer;
  font-size: 20px;
}
.titleBar .logo {
  float: left;
  height: 20px;
  margin-right: 4px;
  padding: 3px 0;
}
.navBar {
  height: 34px;
  border-top: 1px solid #AAB7B8;
  border-bottom: 1px solid #AAB7B8;
  background-color: #F4F6F6;
  position: absolute;
  top: 35px;
  left: 0;
  right: 0;
  z-index: 2;
}
.navBar .navItem {
  float: left;
  margin: 0 10px 0 20px;
  cursor: pointer;
  display: flex;
}
.navBar .navItem.selected .navItemTitle {
  border-bottom: 2px solid #FFA724;
}
.navBar .navItem .navItemTitle {
  padding: 9px 0 7px;
  font-size: 13px;
  height: 16px;
  line-height: 16px;
}
.navBar .navItem .navItemIndicator {
  margin: 8px 0 8px 2px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  border-radius: 8px;
  text-align: center;
}
.navBar .navItem .navItemIndicator.pass {
  background-color: #4BCA81;
  color: white;
  font-size: 9px;
}
.navBar .navItem .navItemIndicator.warn {
  background-color: #ffa724;
  color: white;
  font-size: 12px;
}
.navBar .navItem .navItemIndicator.fail {
  background-color: #F13F62;
  color: white;
  font-size: 12px;
}
/* Results Section */
.tabBody {
  position: absolute;
  top: 71px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: scroll;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  align-content: flex-start;
  background-color: white;
  padding: 0 10px 10px;
  margin: 0;
}
.testSection {
  width: calc(100% - 24px);
  margin: 10px 10px 0;
  border: 2px solid #EAEDED;
  border-radius: 5px;
}
.testSection .testSectionTitle {
  height: 30px;
  width: calc(100% - 13px);
  background-color: #EAEDED;
  font-size: 15px;
  text-align: left;
  line-height: 30px;
  padding-left: 13px;
}
.testSection .testSectionBody {
  padding-bottom: 10px;
}
.testResult {
  margin: 10px 10px 0;
  width: calc(100% - 24px);
  border: 2px solid #EAEDED;
  border-radius: 5px;
}
.testResult.fail .testResultIcon {
  background-color: #F13F62;
  color: white;
  line-height: 18px !important;
}
.testResult.warn .testResultIcon {
  background-color: #ffa724;
  color: white;
  font-weight: bold;
}
.testResult.pass .testResultIcon {
  background-color: #4BCA81;
  color: white;
  font-size: 11px !important;
}
.testResult.info {
  border: none;
  text-align: left;
}
.testResult .testResultRow {
  width: calc(100% - 14px);
  padding: 7px;
  display: flex;
}
.testResult .testResultRow.bottom {
  border-top: 2px solid #EAEDED;
}
.testResult .testResultRow.bottom .testResultText {
  margin-left: 1px;
}
.testResult .testResultRow .testResultIcon {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  text-align: center;
  line-height: 20px;
  font-size: 15px;
}
.testResult .testResultRow .testResultText {
  min-height: 20px;
  line-height: 20px;
  flex-grow: 1;
  text-align: left;
  margin: 0 8px;
}
.testResult .testResultRow .testResultLink {
  display: block;
  text-decoration: none;
  height: 18px;
  width: 81px;
  line-height: 18px;
  color: #394E50;
  background-color: #FFA724;
  box-shadow: 0 2px 0 0 rgba(84, 84, 84, 0.3);
  border-radius: 3px;
  font-size: 12px;
  color: #002F36;
}
