@charset "UTF-8";
/* Base styles */
*, input[type=search] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
}

html {
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  min-width: 1000px;
}

body {
  background-color: #f4f4f4;
  height: 100%;
  color: #202020;
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  font-size: 13px;
  line-height: 1.5; /* easier on the eyes for reading articles */
  margin: 0; /* remove default margin */
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

img[width], img[height] {
  max-width: none;
}

figure > img {
  display: block;
  margin: auto;	/*makes all figure images centered TL 10/29/2019 */
}

/*makes all figure captions centered & italicized below the figure TL 10/29/2019 */
figure > figcaption {
  text-align: center;
  font-style: italic;
}

a {
  font-family:'Open Sans', sans-serif;
  text-decoration: none;
  color: #303030;
  -webkit-transition: color 150ms ease, background-color 150ms ease;
  -moz-transition: color 150ms ease,  background-color 150ms ease;
  transition: color 150ms ease, background-color 150ms ease;
}

a:hover {
  text-decoration: none;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  text-align: left;
  width: 100%;
}

[dir=rtl] table {
  text-align: right;
}

td, th {
  border-style: solid;
}

/* changed so that borders match td, with bold and center text for proper doc structure TL 10/18/2019 */
th {
  font-weight: bold;
  text-align: center;
  border-width: 1px;
  border-color: #999;
}

td {
    padding: 12px;
}

hr {
  margin: 5px 0;
  opacity: .5;
}

h1, h2, h3, h4, h5, h6 {
  color: #333;
  font-weight: 400;
}

h1 {
  font-size: 20px;
}

input, label {
  display: inline-block;
  vertical-align: middle;
}

label {
  font-size: 14px;
}

input[type="checkbox"] + label {
  margin-left: 5px;
}

input, textarea {
  border: 1px solid #c0c0c0;
  padding: 10px;
  outline: none;
}

textarea {
  height: 100px;
  padding: 7px 10px;
  resize: vertical;
}

textarea, input[type=text] {
  width: 100%;
}

input, textarea, select {
  color: #555;
}

input::-ms-clear {
  display: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

::-webkit-input-placeholder {
  color: #CCC;
}

  :-ms-input-placeholder {
    color: #CCC;
  }

  ::-moz-placeholder {
    color: #CCC;
  }

  /* Buttons, and the navigation Log In Button */
  button, [role=button], [type=button], [type=submit] {
    color: #1a74b0;
    cursor: pointer;
    display: inline-block;
    padding: 5px 10px;
    position: relative;
    vertical-align: middle;
    white-space: nowrap;
  }

  a[role=button]:hover {
    text-decoration: none;
  }

  input[type=submit] {
    background-color: #444;
    border-color: transparent;
    color: #FFF;
    padding: 10px 30px;
    -webkit-transition: background-color 250ms ease;
    -moz-transition: background-color 250ms ease;
    transition: background-color 250ms ease;
  }

input[type=submit]:hover {
 background-color: #45d167; 
}

input[type=submit][disabled] {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  /* IE 8 */
  opacity: 0.4;
}

button img, [role=button] img {
  margin: 0 5px 0 0;
  height: 20px;
  position: relative;
  top: -1px;
  vertical-align: middle;
}
[dir=rtl] button img, [dir=rtl] [role=button] img {
  margin: 0 0 0 5px;
}

.user-avatar { /* remove avatar from username in navigation */
  display: none;
}

/* Forms */
.form-report-issue {
  float: right;
  bottom: 0;
}
.form-report-issue a {
  color: silver; 
}

.form-report-issue a:hover {
  text-decoration: underline; 
}

#request_description {
  height: 250px;
}

.form {
  max-width: 100%;
}

.form-field ~ .form-field {
  margin-top: 25px;
  clear: both;
}

.form-field label {
  display: block;
  margin-bottom: 5px;
  font-weight: 400;
}

.form-field input[type=checkbox] + label {
  margin: 0 0 0 10px;
}

.form-field.required > label:after {
  content: "*";
  color: #ff6b01;
  margin-left: 2px;
}

.form-field p {
  color: #A6A6A6;
  font-size: 12px;
  text-align: justify;
  line-height: 16px;
}

.form-field input[type=number], .form-field input.datepicker {
  width: 150px;
}

.form form + form {
  margin-top: 25px;
}

.searchbox {
  margin: 25px 0px;
}

.searchbox-suggestions {
  background-color: #fff;
  border: 1px solid #EEE;
  padding: 10px 20px;
}

.searchbox-suggestions li {
  padding: 5px 0;
}

[data-loading="true"] input,
[data-loading="true"] textarea {
  background: transparent url("/hc/theming_assets/01J2BSH8H24N36WNMGJ0QGFY1B") 99% 50% no-repeat;
  background-size: 16px 16px;
}

.form footer {
  text-align: right;
}

.form footer a {
  color: #CCC;
  cursor: pointer;
  margin-right: 15px;
}

/* Form attachments area */
.upload-dropzone {
  border: none;
}

.upload-dropzone a {
  font-size: inherit; 
}

#upload-dropzone span {
  color: rgba(0,0,0,.75);
}

.upload-dropzone {
 border: 2px dashed #DDD;
 -webkit-transition: background-color 200ms ease;
 -moz-transition: background-color 200ms ease;
 transition: background-color 200ms ease;
}

.upload-dropzone:hover {
  background-color: #e8e8e8;
}

/* Navigation menus */
.nav li, .nav-bordered li, .nav-spaced li {
  display: inline-block;
  font-weight: bold;
}

.nav li a, .nav-bordered li a, .nav-spaced li a {
  font-weight: normal;
}

.nav-bordered li + li {
  border-color: #EEE;
  border-style: solid;
  border-width: 0 0 0 1px;
  margin: 0 0 0 30px;
  padding: 0 0 0 30px;
}

[dir=rtl] .nav-bordered li + li {
  border-width: 0 1px 0 0;
  margin: 0 30px 0 0;
  padding: 0 30px 0 0;
}

.nav-spaced li + li {
  margin: 0 0 0 40px;
}

[dir=rtl] .nav-spaced li + li {
  margin: 0 40px 0 0;
}

/* Breadcrumbs */
.breadcrumbs li {
  color: #333;
  display: inline-block;
  font-size: 12px;
}

.breadcrumbs li + li:before {
  content: ">";
  color: #60798A;
  margin-left: 4px;
  margin-right: 6px;
}
.breadcrumbs li a {
  color: #333;
  -webkit-transition: color 250ms ease;
  -moz-transition: color 250ms ease;
  transition: color 250ms ease;
}

.breadcrumbs li a:hover {
  color: #FF6B01;
}

.breadcrumbs li:last-child {
  color: #FF6B01; 
}

/* Labels */
.label, .request-status {
  display: inline-block;
  font-size: 10px;
  padding: 3px 10px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Metadata */
.meta, .meta-group {
  color: #CCC;
  display: inline-block;
  font-size: 11px;
}

.meta-group * + *:before {
  content: "\2022";
  font-size: 8px;
  margin: 0 10px;
}

/* Helper classes */
.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

/* Social share links */
.share {
  white-space: nowrap;
}

.share li, .share a {
  display: inline-block;
}

.share a {
  height: 30px;
  line-height: 30px;
  overflow: hidden;
  vertical-align: middle;
  width: 30px;
}

.share a:before {
  background: #CCC;
  border-radius: 0;
  color: #FFF;
  display: inline-block;
  font-family: "entypo";
  text-align: center;
  width: 100%;
}

.share a:hover {
  text-decoration: none;
}

.share-twitter:before {
  content: "\F309";
}

.share-facebook:before {
  content: "\F30C";
}

.share-linkedin:before {
  content: "\F318";
}

.share-googleplus:before {
  content: "\F30F";
}

/* Pagination */
.pagination {
  margin: 0 auto;
  text-align: center;
  padding-bottom: -3px;
}

.pagination * {
  display: inline-block;
  vertical-align: middle;
}

.pagination li {
  float: left;
  margin-left: -1px;
  -webkit-transition: background-color 150ms ease;
  -moz-transition: background-color 150ms ease;
  transition: background-color 150ms ease;
}

.pagination li:not(.pagination-current):hover {
  background-color: #BBC9D3;  
}

[dir=rtl] .pagination li {
  float: right;
}

.pagination a, .pagination span {
  color: inherit;
  font-size: 12px;
  padding: 5px 12px;
}

.pagination-current {
  background-color: #60798A;
  color: white;
}

.pagination-first {
  border-radius: 0;
}
[dir=rtl] .pagination-first {
  border-radius: 0;
}

.pagination-last {
  border-radius: 0;
}
[dir=rtl] .pagination-last {
  border-radius: 0;
}

/* Notification Banner */
.notification-notice {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    background: #dbf3ff;
  }
  50% {
    background: #fcffff;
  }
  100% {
    background: #dbf3ff;
  }
}

.notification-alert {

}

.notification-error {
  background: #e36a6a;
  border-color: #8f2e2e;
}

.notification-lock {

}

.notification {
  position: relative;
  font-family: 'Open Sans', sans-serif;
}


/* ====================================================
   Header, Navigation, Content Frame
   ==================================================== */
.header-inner {
  max-width: 1200px;
  min-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  position: absolute; /* allows header to overlap search section */
  left: 0; /* These 2 properties stretch the header across the page */
  right: 0;
  top: 0; /* adds margin to top, brings header down a bit */
}

.left-nav {
  float: left;
}

.right-nav {
  float: right;
  margin-top: 6px;
}

.nav-link{
  float: left;
}

.left-nav .nav-link > a {
  font-size: 20px;
  color: #afafaf;
}

.right-nav .nav-link > a {
  color: #f4f6f6;
}

.nav-link a:hover {
  color: #ff6b01;
}

.logo {
  float: left;
  margin-top: 26px; /* moves logo down to be in line with nav text */
}

.exago-logo {
  width: 131px;
  height: 35px;
  fill: #fff;
}

.nav-link > a { /* gives nav text bigger clickable area */
  display: inline-block;
  padding: 20px;
}

.user-info > [role=button] { /* styling for username nav button */
  padding: 19px;
  color: #f4f6f6;
  -webkit-transition: color 250ms ease;
  -moz-transition: color 250ms ease;
  transition: color 250ms ease;
}

.user-info > [role=button]:hover {
  color: #ff6b01;
}

.dropdown-menu { /* changing default values I can't access */
  border: none;
  margin-top: -10px;
  border-radius: 0;
  padding: 0;
}

.dropdown-menu [role=menuitem] { /* color of links in dropdown menu */
  color: #505050;
}

#user #user-dropdown { /* transparency and size of dropdown menu */
  background: white;
  min-width: 175px;
}

.dropdown-menu-end { /* push dropdown menu to the left a bit */
  right: 7px;
}

.dropdown-menu [role=separator] { /* dropdown menu separator thingy */
  margin: 0;
  padding: 0;
}

/*zendesk stuff*/
.user-nav {
  display: table-cell;
  vertical-align: middle;
}

.user-nav {
  text-align: right;
}
.user-nav > * {
  display: inline-block;
  margin: 0 0 0 25px;
}
[dir=rtl] .user-nav {
  text-align: left;
}
[dir=rtl] .user-nav > * {
  margin: 0 25px 0 0;
}

/*
 * Column size
 */
.column-container {
  width: 1000px;
  margin: 15px auto;
}


.main-column, .side-column {
  padding: 15px;
  display: inline-block;
  vertical-align: top;
  background-color: #ffffff;
  border: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0,0,0,0.08);
}

.main-column {
  display: block;
  width: 700px;
  float: left;
  
}

.side-column {
  width: 100%;
  margin-bottom: 15px;
}

#sidebar {
  width: 285px;
  float: right;
  margin-left: 10px;
  left: 10px;
}


[dir=rtl] .side-column {
  margin-left: 0;
  margin-right: 45px;
}

.centered-side-column {
  text-align: center;  
}

.wide-column {
  width: 1000px;
}

.article-column {
  min-height: 800px;
  width: 700px;
}

.category-column,
.section-column {
  min-height: 400px; 
}

.accordion-column {
  padding: 0;
}

.homepage-column {
  width: 500px;
  float: left;
}

.twitter-column {
  width: 500px;
  float: right;
}

.border1 {
  margin: 10px;
  padding: 0;
  border: 1px solid lightgray;
}

.border2 {
  margin: 5px;
  padding: 40px;
  border: 1px solid lightgray;
  position: relative;
}

.twitter-header {
  width: 100%;
  padding: 6px 10px;
  color: #494949;
  text-align: center;
  background: #ffffff;
  border: 1px solid #E8E8E8;
  border-bottom: none;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.05);
  font-weight: bold;
}

.category-accordion-header {
 width: 485px;
  padding: 7px 10px;
  color: #494949;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-bottom: 0;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.05);
  font-weight: bold;
}

.twitter-feed-icon {
  position: relative;
  top: 3px;
  width: 16px;
  height: 16px;
}

.twitter-feed-container-outer {
  width:500px;
  height:451px;
  background:#ffffff;
  border:1px solid #E8E8E8;
}

.accordion-box {
  border: 1px solid transparent;
  margin: 20px;
  padding: 15px 20px;
  display: inline-block; /* because float:right screws with the accordion collapse transition*/
  background-color: #f6f6f6;
  width: 550px;
  box-shadow: 0 1px 3px 0 rgba(0,0,0,0.08);
}

.accordion-inner-container {
  border-top: 1px solid #e6e6e6; 
}

/*hide role-specific div html*/
div.anonymous, 
div.end_user, 
div.agent,
div.manager,
li.agent,
li.manager {
display: none;
}

/* ====================================================
   Homepage Categories and Elements
   ==================================================== */
.homepage-panel {
  margin-bottom: 0;
  margin-right: 15px;
  border: 1px solid #e8e8e8;
  border-bottom: 0;
}

.homepage-panel:last-child {
  border-bottom: 1px solid #e8e8e8;
}

.homepage-panel:hover > .category-list-item > svg {
  fill: #334D64; 
}

.category-list-item {
  background-color: #ffffff;
  display: block;
  min-height: 74px;
  position: relative;
  padding: 9px 15px;
}

.category-list-item h3 {
  font-size: 22px;
  color: #353535;
  margin-top: 3px;
  padding-left: 10px;
  overflow: hidden;
  transition: color 200ms ease;
}

.homepage-panel:hover .category-list-item > h3 {
  color: #334d64; 
}

.category-list-item p {
  color: #686868;
  overflow: hidden;
  clear: both;
}

.category-arrow {
  position: absolute;
  top: 25px;
  right: 30px;
}

.category-list .inner-panel {
  background-color: #fff;
  border-top: 1px solid #e4e4e4;
  padding: 0 10px 10px 10px;
}

.category-list .inner-panel li {
  margin: 0 10px;
  padding: 5px 10px 0 15px;
  background-image: url("/hc/theming_assets/01J2BSH7XJRDZHSFP5JT5JZYQ7");
  background-repeat: no-repeat;
  background-size: 9px;
  background-position: 0 10px;
  -webkit-transition: background-color 150ms ease, color 150ms ease;
  -moz-transition: background-color 150ms ease, color 150ms ease;
  transition: background-color 150ms ease, color 150ms ease;
}

.category-list .inner-panel a {
  border-bottom: 1px dotted lightgray;
}

.category-list .inner-panel li:hover > a {
  color: #ff6b01; 
}

.more-articles-btn {
  margin-top: 8px;
  height: 35px;
  line-height: 32px;
  background-color: gray;
  text-align: center;
  color: #FFFFFF;
  text-shadow: 1px 1px 0 rgba(61, 61, 61, 0.4);
    transition: border-bottom 200ms ease;
}

.blue-btn {
  background-image: url("/hc/theming_assets/01J2BSH86ESMERSMHKR1PDJWGP");
  background-attachment: fixed;
  background-size: 300px;
  border: 1px solid #1B2833;
}

.blue-btn:hover {
  text-decoration: underline;
}

.thin-top-bar {
  background-color: #ffffff;
  width: 1000px;
  margin: 15px auto 0;
  padding: 10px;
  text-align: center;
  border: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0,0,0,0.08);
}

.thin-top-bar p {
  font-size: 16px;
  color: #606060;
}

.thin-top-bar a {
  color: #fa7556;
  text-decoration: underline;
}

.upgrade-link {
  color: #eea978;  
}

.upgrade-link:hover {
  text-decoration: underline; 
}

.homepage-icon {
  float: left; 
  width: 35px;
  height: 35px;
  vertical-align: middle;
  transition: fill 200ms ease;
}

.gears-icon,
.users-icon,
.admin-icon,
.howto-icon,
.videos-icon,
.about-icon,
.secret-icon {
 fill: #494949;  
}



/* ====================================================
   Search
   ==================================================== */
.hero-search {
  height: 250px;
  padding-top: 90px; /* pushes search bar down within this div */
  background-image: url("/hc/theming_assets/01J2BSH86ESMERSMHKR1PDJWGP");
  background-position: 0 0;
  background-size: 700px;
  background-repeat: repeat;
  background-attachment: fixed;
  box-shadow: rgba(0, 0, 0, 0.6) 0 -7px 20px -7px inset;
}

.search-container {
  max-width: 1150px;
  min-width: 1000px;
  margin: 0 auto;
  padding: 0 30px;
}

form.search::before { /* adds blank content into form */
  content: " ";
  display: table;
}

.search-container
.search input {
  border: 0;
  display: inline-block;
  height: 55px;
  outline: 0;
  vertical-align: middle;
}

.search-container
.search input[type=search],
.search-container
#query {
  width: 80%;
  padding: 8px 12px;
  background-color: #ffffff;
  float: left;
  font-size: 16px;
  text-align: left;
}

/***** Search Button *****/

.search-container-border {
  border: 3px solid rgba(0, 0, 0, 0.15);
}

.search-container
.search input[type=submit] {
  width: 20%;
  height: 55px;
  float: left;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: white;
  font-size: 16px;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.2), 2px 2px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: background-color 300ms ease, border-color 300ms ease;
  -moz-transition: background-color 300ms ease, border-color 300ms ease;
  transition: background-color 300ms ease, border-color 300ms ease;
}

.search-container
.search input[type=submit]:hover {
  background-color: rgba(255, 107, 1, 0.55);
  border: 1px solid #ff6b01;
}


/***** Homepage Ticket Buttons *****/
.ticket-button-container::before, /* prevents top margin from collapsing in itself */
.ticket-button-container::after {
  content: " ";
  display: table;
}

.ticket-button-container::after { /* clears floats */
  clear: both;
}

.ticket-button-container {
  padding: 0 120px; /* pushes container in from both sides */
  width: 800px;
  margin: 0 auto; /* centers the buttons */
  margin-top: 24px; /* pushes buttons down from search bar */
}

.ticket-button-column {
  width: 50%;
  float: left;
}

.ticket-button {
  display: block;
  height: 45px;
  padding-top: 13px; /* pushes text down into center of button */
  text-align: center;
  color: #f1f1f1;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.2), 2px 2px 0px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.72);
  background-color: transparent;
  -webkit-transition: background-color 300ms ease, border-color 300ms ease, text-shadow 300ms ease;
  -moz-transition: background-color 300ms ease, border-color 300ms ease, text-shadow 300ms ease;
  transition: background-color 300ms ease, border-color 300ms ease, text-shadow 300ms ease;
}

.ticket-button-border {
  margin: 0 auto;
  width: 85%; 
  border: 3px solid rgba(0, 0, 0, 0.15);
}

.ticket-button-border:hover > .ticket-button {
  background-color:  rgba(81, 125, 178, 0.3);
  border-color: #5E83BF;
  text-shadow: 1px 1px 0 rgba(61, 61, 61, 0.2);
} 

.button-text {
  font-size: 12px;
  padding: 0;
  text-align: center;
  color: #a0a0a0;
  margin-top: 9px;
  text-shadow: rgba(0, 0, 0, 0.3) 1px 1px 0;
}

.button-text span {
  color: lightgray;
  -webkit-transition: color 250ms ease;
  -moz-transition: color 250ms ease;
  transition: color 250ms ease;
}

.button-text span:hover {
  color: #54d65e;
}


/* ====================================================
   404 Page
   ==================================================== */
.error {
  text-align: center;
}

.error a {
  color: #ff6b01; 
}

.error a:hover {
  text-decoration: underline; 
}



/* ====================================================
   Footer
   ==================================================== */
.footer-container {
  margin-top: 50px;
}

.social-links {
  float: left;
  list-style: none;
  margin-left: 30px;
  margin-bottom: 30px;
}

.social-links::before,
.social-links::after {
  content: " ";
  display: table;
}

.social-links::after {
  clear: both;
}
/***** social icons *****/
.social-links li {
  float: left;
  list-style: none;
}

.sml-icon {
  width: 20px;
  height: 20px;
  float: left;
  overflow: hidden;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 0 0;
  vertical-align: top;
  text-align: left;
  display: block; /* need this for text-indent to work */
  text-indent: -999em;
  direction: ltr;
  opacity: 0.25;
  -webkit-transition: opacity 250ms ease;
  -moz-transition: opacity 250ms ease;
  transition: opacity 250ms ease;
}

.sml-icon:hover {
  opacity: 0.5;
}

.social-links .twitter-icon {
  width: 30px;
  background-image: url("/hc/theming_assets/01K47733NZSS7AMRQ64D909A05");
  background-position: center top;
}

.social-links .linkedin-icon {
  width: 30px;
  background-image: url("/hc/theming_assets/01K477352JMM9F0V6MV0JKF73K");
  background-position: center top;
}

.social-links .youtube-icon {
  width: 30px;
  background-image: url("/hc/theming_assets/01K47732ZY3Y2DWHN9QHCEKXW1");
  background-position: center top;
}

.social-links .facebook-icon {
  width: 30px;
  background-image: url("/hc/theming_assets/01K4773501XZS9ZCJZ0WCHJ7ZX");
  background-position: center top;
}

/***** footer navigation *****/
.footer-nav {
  float: right;
  margin-right: 30px;
  margin-bottom: 30px;
}

.footer-nav li {
  float: left;
  margin-left: 20px;
}

.footer-nav a {
  color: #999;
  font-size: 12px;
}

.footer-nav a:hover {
  color: #444;
}

/***** sticky footer *****/
.site-container {
  position: relative;
  min-height: 100%;
  /*margin-bottom: -101px;*/
}

.site-container::after {
  content: " ";
  display: block;
}

.site-container::after, footer-container {
  height: 100px;
}


/* ====================================================
   Navigation pages
   ==================================================== */

.help-center-name {
  color: #FFF;
  font-size: 60px;
  font-weight: bold;
  margin: 65px 0 50px 0;
  text-align: center;
  text-transform: uppercase;
}

.help-center-name + .search {
  margin-bottom: 135px;
}

.category-tree h2 ~ *, .category-tree h3 ~ * {
  display: none;
}

.category-tree .category {
  display: inline-block;
  padding-right: 30px;
  vertical-align: top;
  width: 49.5%;
}

.category-tree .category h2 {
  margin: 12px 0;
}

.category-tree .category h2 a {
  color: inherit;
  font-weight: lighter;
}

.category-tree .section {
  margin: 5px 20px;
}

.category-tree .article-list, .category-tree .section-empty a {
  margin: 20px;
}

.category-tree .section-empty a {
  display: block;
}

.category-tree .article-list li {
  margin-bottom: 5px;
}

.section-tree .category-sections {
  display: inline-block;
  padding: 10px;
  margin-bottom: 3px;
  vertical-align: top;
  width: 49.5%;
  min-height: 265px;
  border: 1px solid #dddddd;
  border-top: 0;
  border-left: 0;
}

.section-tree .category-sections:nth-child(2n) {
  border-right: 0;
}

.section-subscribe, .section-unsubscribe,
.article-subscribe, .article-unsubscribe {
  float: right;
}

.section-subscribe [role=button], .section-unsubscribe,
.article-subscribe, .article-unsubscribe {
  background: #ededed;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  height: 25px;
  line-height: 25px;
  margin-top: 5px;
  padding: 0 10px;
}

.article-list {
  margin-bottom: 5px;  
}

.article-list li {
  margin-bottom: 4px;
  /* DOC-606 */
  font-size: 15px;
}

.category-column .article-list li:nth-child(6n) {
  margin-bottom: 5px; 
}

.see-all-articles {
  margin-left: 15px;
  color: #ff6b01;
}

.see-all-articles:hover {
  text-decoration: underline;
}

.category-tree .see-all-articles {
  position: relative;
  top: -10px;
  left: 20px;
}

.main-categories h1 {
  font-size: 34px;
  margin: 0;
  line-height: 1.2;
}

.main-categories .category-description,
.main-categories .section-description {
  margin-bottom: 10px;
  padding-bottom: 5px;
  color: #888;
}

.main-categories .category-description {
  display: inline-block;
  border-bottom: 1px solid #dddddd;
}

.main-categories .section-tree h3 {
  margin: 0;
  line-height: 24px;
  margin-bottom: 10px;
  font-size: 24px;
}

.main-categories .section-tree h3 a:hover {
  color: #ff6b01; 
}

.main-categories .article-list li,
#anchormenu ol li,
.main-categories .side-column li {
  padding-left: 15px;
  background-image: url("/hc/theming_assets/01J2BSH6VDM86TDW9ET2BT2W1B");
  background-repeat: no-repeat;
  background-size: 9px;
  background-position: 0 5px;
}

.main-categories .article-list li a:hover,
.downloads-section li a:hover {
  color: #ff6b01; 
}

.downloads-title {
  text-align: center;  
}

.downloads-description {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 5px;
  border-bottom:1px solid #eee;
  color: #888;
}

.downloads-section {
  padding-bottom: 20px;
  text-align: center;
}

.downloads-section:not(:nth-child(n+7)) {
  margin-bottom: 20px;
}

.wide-downloads {
  display: block;
  width: 100%;  
}

.half-downloads {
  display: inline-block;
  width: 50%;
  float: left;
}

.third-downloads {
  display: inline-block;
  width: 32%;
  float:left;
}

.full-downloads {
  display: inline-block;
  width: 100%;
  float:left;
}

.app-downloads {
  background-color: #F2F2F2;
  margin: 0;
  padding: 10px 15px;
  border: 1px dotted lightgray;
}

.dl-desc {
  color: #3e3e3e; 
}

.dl-center {
  text-align: center; 
}

.half-downloads .dl-btn-posttext {
  font-size: 11px;
  color: #a0a0a0;
  line-height: 15px;
}

.downloads-section h3 {
  font-size: 24px;
  margin: 0;
  line-height: 1.2;
}

.downloads-section p {
  color: #888;
}

.downloads-section li {
  margin: 0;
}

.dl-btn-container {
  text-align: center;
}

.installer-btn-container {
  text-align: center;
  opacity: .5;
}

.eula-click {
  opacity: 1; 
}

#app-downloads-section li:first-child a {
	font-weight: 600;
}

#app-downloads-section li:first-child a::before {
	content: 'New';
	display: block;
	position: absolute;
	top: -4px;
	left: -19px;
	padding: 0 3px;
	background: #6896ed;
	color: #fff;
	text-shadow: 1px 1px rgba(0, 0, 0, 0.25);
	border-radius: 5px;
	font-size: 10px;
	height: 13px;
	line-height: 12px;
	box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.2);
}

.dl-badge,
.dl-badge-beta,
.dl-badge-demo{
  display: block;
  position: absolute;
  top: -4px;
  left: -19px;
  padding: 0 3px;
  background: #6896ed;
  color: #fff;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  font-size: 10px;
  height: 13px;
  line-height: 12px;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.2);
}

.dl-badge-beta {
  background: #3785CC; 
}

.dl-badge-demo {
  left: -26px; 
}

.dl-btn {
  display: inline-block;
  padding: 8px 1px;
  transition: all 200ms ease-out;
  width: 200px;
  text-align: center;
  margin: 3px;
  text-decoration: none !important;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
  outline: none;
  border: 1px solid #717171;
  border-radius: 5px;
  font-weight: 900;
}

.dl-btn:hover:enabled {
  transform: translateY(-2px);
  box-shadow: 0 3px 6px 0 rgba(0,0,0,0.1);
}

.win-btn {
  color: #202020 !important;
  background: #ffffff;
}

.win-btn:before {
  content: ' ';
  display: inline-block;
  vertical-align: top;
  margin-right: 5px;
  width: 20px;
  height: 20px;
  background-image: url("/hc/theming_assets/01K47734WGGFN1WX87B0GV2NR2");
}

.linux-btn {
  color: #202020 !important;
  background: #ffffff;
}

.linux-btn:before {
  background-position: 0 0;
  content: ' ';
  display: inline-block;
  vertical-align: top;
  margin-right: 5px;
  width: 20px;
  height: 20px;
  background-image: url("/hc/theming_assets/01K477352WFQPA08WF43SR95RG");
}

.guide-dl-btn {
  display: inline-block;
	position: relative;
  padding: 3px 60px 3px 10px;
  margin: 3px;
  text-align: center;
  text-decoration: none !important;
  color: black !important;
  border: 1px solid #cfcfcf;
  background: #ffffff;
  -webkit-transition: background-color 200ms ease;
  -moz-transition: background-color 200ms ease;
  transition: background-color 200ms ease;
}

.guide-dl-btn:hover {
  background-color: #eee;
}

.guide-dl-btn:hover > .guide.dl-btn:after {
  color: blue; 
}

.guide-dl-btn:after {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	padding-top: inherit;
	padding-bottom: inherit;
	width: 50px;
	text-align: center;
  transition: background 200ms ease;
}

.www-btn:after {
  content:"article";
  color: #4182BC;
  background: #fff;
  border-left:1px solid rgba(0,0,0,0.08);
}

.pdf-btn:after {
  content: ".pdf";
  color: #D71515;
  background: #ffffff;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}


.doc-btn:after {
  content: ".docx";
  color: #3479D1;
  background: #ffffff;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.zip-btn:after {
  content: ".zip";
  color: #ff6b01;
  background: #ffffff;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.sh-btn:after {
  content: ".sh";
  color: #ff6b01;
  background: #ffffff;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.tgz-btn:after {
  content: ".tgz";
  color: #ff6b01;
  background: #ffffff;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.install-btn {
  padding: 3px 95px 3px 10px;  
}

.install-btn:after {
  width: 80px;
}
.build-btn-20262:after {
  content: "Release 1";
  color: #6896ed;
  background: #ffffff;
  border-left: 1px solid rgba(0,0,0,0.08);
  }
.build-btn-20261:after {
  content: "Release [[v20261_minor]]";
  color: #6896ed;
  background: #ffffff;
  border-left: 1px solid rgba(0,0,0,0.08);
  }
.build-btn-20253:after {
  content: "Release 2";
  color: #6896ed;
  background: #ffffff;
  border-left: 1px solid rgba(0,0,0,0.08);
  }

.build-btn-20251:after {
  content: "Release 4";
  color: #6896ed;
  background: #ffffff;
  border-left: 1px solid rgba(0,0,0,0.08);
  }

.build-btn-20244:after {
  content: "Release [[v20244_minor]]";
  color: #6896ed;
  background: #ffffff;
  border-left: 1px solid rgba(0,0,0,0.08);
  }

.build-btn-20242:after {
  content: "Release [[v20242_minor]]";
  color: #6896ed;
  background: #ffffff;
  border-left: 1px solid rgba(0,0,0,0.08);
  }

.build-btn-20241:after {
  content: "Release [[v20241_minor]]";
  color: #6896ed;
  background: #ffffff;
  border-left: 1px solid rgba(0,0,0,0.08);
  }

.build-btn-20234:after {
  content: "Release [[v20234_minor]]";
  color: #6896ed;
  background: #ffffff;
  border-left: 1px solid rgba(0,0,0,0.08);
  }

.build-btn-20233:after {
  content: "Release [[v20233_minor]]";
  color: #6896ed;
  background: #ffffff;
  border-left: 1px solid rgba(0,0,0,0.08);
  }

.build-btn-20232:after {
  content: "Release [[v20232_minor]]";
  color: #6896ed;
  background: #ffffff;
  border-left: 1px solid rgba(0,0,0,0.08);
  }
  .build-btn-20231:after {
    content: "Release [[v20231_minor]]";
    color: #6896ed;
    background: #ffffff;
    border-left: 1px solid rgba(0,0,0,0.08);
  }

.build-btn-20231:after {
  content: "Release [[v20231_minor]]";
  color: #6896ed;
  background: #ffffff;
  border-left: 1px solid rgba(0,0,0,0.08);
  }

.build-btn-20212:after {
  content: "Release [[v20212_minor]]";
  color: #6896ed;
  background: #ffffff;
  border-left: 1px solid rgba(0,0,0,0.08);
  }    

  .build-btn-20211:after {
	content: "Release [[v20211_minor]]";
	color: #6896ed;
	background: #ffffff;
	border-left: 1px solid rgba(0,0,0,0.08);
  }

.build-btn-20201:after {
	content: "Release [[v20201_minor]]";
	color: #6896ed;
	background: #ffffff;
	border-left: 1px solid rgba(0,0,0,0.08);
  }

.build-btn-20192:after {
	content: "Release [[v20192_minor]]";
	color: #6896ed;
	background: #ffffff;
	border-left: 1px solid rgba(0,0,0,0.08);
  }

.build-btn-20191:after {
  content: "Release [[v20191_minor]]";
  color: #6896ed;
  background: #ffffff;
  border-left: 1px solid rgba(0,0,0,0.08);
}

.build-btn-20182:after {
  content: "Release [[v20182_minor]]";
  color: #6896ed;
  background: #ffffff;
  border-left: 1px solid rgba(0,0,0,0.08);
}

.build-btn-20181:after {
  content: "Release [[v20181_minor]]";
  color: #6896ed;
  background: #ffffff;
  border-left: 1px solid rgba(0,0,0,0.08);
}

.build-btn-20173:after {
  content: "Release 25";
  color: silver;
  background: #ffffff;
  border-left: 1px solid rgba(0,0,0,0.08);
}

.build-btn-20172:after {
  content: "Release 8";
  color: silver;
  background: #ffffff;
  border-left: 1px solid rgba(0,0,0,0.08);
}

.build-btn-20171:after {
  content: "Release 16";
  color: silver;
  background: #ffffff;
  border-left: 1px solid rgba(0,0,0,0.08);
}

.build-btn-20163:after {
  content: "Release 11";
  color: silver;
  background: #ffffff;
  border-left: 1px solid rgba(0,0,0,0.08);
}

.build-btn-20162:after {
  content: "Release 16";
  color: silver;
  background: #ffffff;
  border-left: 1px solid rgba(0,0,0,0.08);
}

.build-btn-2016:after {
  content: "Release 11";
  color: silver;
  background: #ffffff;
  border-left: 1px solid rgba(0,0,0,0.08);
}

.build-btn-2015:after {
  content: "Build 3.9";
  color: silver;
  background: #ffffff;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.build-btn-2014:after {
  content: "Build 2.93";
  color: silver;
  background: #ffffff;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.build-btn-2013:after {
  content: "Build 3.7";
  color: silver;
  background: #ffffff;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.build-btn-eval:after {
  content: "Release 12";
  color: #ff6b01;
  background: #ffffff;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.build-btn-beta:after {
  content: "Release 4";
  color: #3785CC;
  background: #ffffff;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.hidden-dl-section-description {
  color: #ff6b01; 
}

.hidden-dl-section-description:hover {
  text-decoration: underline;
}

.dl-info-link {
  color: #ff6b01; 
}

.dl-info-link:hover {
  text-decoration: underline; 
}

.js-disable-test {
  color: red;
  border: 1px solid red;
  font-size: 11px;
  line-height: 12px;
  padding: 5px;
}

/* ====================================================
   Community box
   ==================================================== */
.community {
  background: #f8f8f8;
  border-radius: 0;
  margin-top: 40px;
  padding: 25px 30px;
}
.community .recent-activity {
  padding: 0;
  width: auto;
}
.community .recent-activity h2 {
  border-bottom: 1px solid #e6e6e6;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: normal;
  font-size: inherit;
  margin: 0 0 15px 0;
  padding-bottom: 20px;
  text-transform: uppercase;
}

.community h4 {
  color: #111111;
  float: right;
  font-size: 13px;
  margin: 0;
}
[dir=rtl] .community h4 {
  float: left;
}

.community h4 a {
  font-weight: normal;
  font-size: 11px;
}

.trending-questions {
  margin-bottom: 40px;
}

.trending-questions h2 {
  border-bottom: 1px solid #e6e6e6;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  color: #111111;
  font-weight: normal;
  font-size: inherit;
  margin: 0 0 15px 0;
  padding-bottom: 20px;
  text-transform: uppercase;
}

.trending-questions:last-child {
  margin-bottom: 0;
}

.trending-question-list {
  margin-bottom: 15px;
}

.trending-question-list li {
  display: inline-block;
  font-size: 13px;
  padding: 10px 25px 0 0;
  width: 49.5%;
}

/* ====================================================
   Promoted tooltip
   ==================================================== */
.article-promoted span {
  cursor: default;
  font-family: "entypo";
  position: relative;
  color: #FF6B01;
}

.article-promoted span:before,
.article-promoted span:after {
  display: none;
  position: absolute;
}

.article-promoted span:hover:before,
.article-promoted span:hover:after {
  display: block;
}

.article-promoted span:before {
  background: #222;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 0;
  color: #FFF;
  content: attr(data-title);
  font-family: sans-serif;
  left: -10px;
  margin-top: 5px;
  padding: 3px 10px;
  top: 100%;
  white-space: nowrap;
  z-index: 1;
}

.article-promoted span:after {
  border-bottom: 5px solid #222;
  border-bottom: 5px solid rgba(0, 0, 0, 0.85);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  bottom: -5px;
  content: "";
  height: 0;
  left: 50%;
  margin-left: -5px;
  width: 0;
}

/* ====================================================
   Sub nav
   ==================================================== */
.sub-nav {
  background-color: #ffffff;
  width: 1000px;
  margin: 15px auto 0;
  padding: 10px;
  text-align: center;
  border: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0,0,0,0.08);
}

.sub-nav .breadcrumbs {
  overflow: hidden;
  white-space: nowrap;
}
.sub-nav .search {
  width: 300px;
}

/* ====================================================
   Articles
   ==================================================== */
/* Markdown styles */
.markdown {
  word-wrap: break-word;
  line-height: 1.7;
}

.markdown img {
  max-width: 100%;
}

.markdown hr {
  background-color: #D7D7D7;
  border: 0;
  height: 1px;
}

.markdown ul, .markdown ol {
  list-style-position: inside;
  padding: 0 15px;
}

.markdown ul {
  list-style-type: disc;
}

.markdown ol {
  list-style-type: decimal;
}

.markdown ol ul, .markdown ul ul {
  list-style-type: circle;
}

.markdown ol ol ul,
.markdown ol ul ul,
.markdown ul ol ul,
.markdown ul ul ul {
  list-style-type: square;
}

.markdown pre {
  background: #f9f9f9;
  /*background-image: -webkit-repeating-linear-gradient(top,#ffffff 0px,#ffffff 22px,#f3f3f3 22px,#f3f3f3 44px);*/
  margin-bottom: 15px;
  border: 1px solid #d0d0d0 !important;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre-wrap;
}

.markdown blockquote {
  border-left: 3px solid #D0D0D0;
  margin: 10px 20px 15px 20px;
  padding: 10px;
  background-color: #efefef;
  font-size: 12px;
}

.markdown blockquote p,
.markdown blockquote ul,
.markdown blockquote ol {
  font-size: 12px; 
}

.markdown blockquote > strong {
	font-variant: small-caps;
}

.markdown blockquote p {
  margin: 0 0 0 0;
}

.markdown .note::before {
  content: "🔎 ";
}

.markdown .caution::before {
  content: "⚠️ ";
}

.markdown .warning::before {
	content: "🛑 ";
}

.markdown blockquote img {
  max-width: 100%; 
}

.markdown code {
  font-family: monospace;
  /*font-size: 15px;*/
}

/* Article styles */
.article-img-border {
  border: 1px solid #d3d3d3;  
}

.article-title .visibility-internal-icon:before {
  width: auto;
  min-width: 13px;
  margin-right: 10px;
}

.article-info > * {
  display: table-cell;
  vertical-align: middle;
}

.article-avatar {
  min-width: 55px;
}
.article-avatar img {
  border-radius: 0;
  max-height: 38px;
  max-width: 38px;
}

.article-meta {
  width: 100%;
}

.article-updated {
  display: block;
}

.thin-bottom-bar {
  background-color: #ffffff;
  width: 700px;
  margin: 20px auto 0;
  padding: 15px 0;
  float: left;
  text-align: center;
  border: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0,0,0,0.08);
}

.ticket-submit-bar {
  color: #ffffff;
  background-color: #4E80AC;
  -webkit-transition: background-color 200ms ease;
  -moz-transition: background-color 200ms ease;
  transition: background-color 200ms ease;
}

.ticket-submit-bar:hover {
  background-color: #457198;
}

.wide-bar {
  width: 100%; 
}

.main-articles .article-title {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 28px;
}

.article-column h1,
.article-column h2, 
.article-column h3 {
  /*font-family: 'Merriweather', serif;*/
  margin: 5px 0px;
}

.article-column h1:not(.article-title) {
  color: #202020;
  font-size: 26px;
  line-height: 28px;
  padding-bottom: 5px;
  padding-top: 15px;
  border-bottom: 1px dotted #C7C7C7;
}

.article-column h2 {
  color: #202020;
  font-size: 20px;
  line-height: 22px;
}

.article-column h3 {
  color: black;
  font-size: 16px;
  line-height: 18px;
  /*text-decoration: underline;*/
  font-weight: 600;
}

.article-side-column h3,
.main-requests .side-column h3,
.search-results .side-column h3 {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin: 0 0 10px;
  font-size: 15px;
}

.article-column h4 {
  font-size: 16px;
}

.main-articles .related-articles li a,
.main-articles .recent-articles li a,
#anchormenu ol li a,
.main-categories .side-column li a {
  color: #505050;
}

#anchormenu ol li a,
.main-categories .side-column li a {
  border-bottom: 1px dotted lightgray; 
}

.main-articles .related-articles li,
.main-articles .recent-articles li,
#anchormenu ol li,
.main-categories .side-column li,
.search-results .side-column li {
  -webkit-transition: background-color 250ms ease;
  -moz-transition: background-color 250ms ease;
  transition: background-color 250ms ease;
}

.main-articles .related-articles li:hover,
.main-articles .recent-articles li:hover,
#anchormenu ol li:hover,
.main-categories .side-column li:hover,
.search-results .side-column li:hover {
  background-color: #f1f1f1;
}

.main-articles .related-articles li:hover > a,
.main-articles .recent-articles li:hover > a,
#anchormenu ol li:hover > a,
.main-categories .side-column li:hover > a,
.search-results .side-column li:hover > a {
  color: #ff6b01;
}

#related_articles ul,
#recent_articles ul {
  display: none; 
}

.search-results .recent-articles ul {
  display: none; 
}

.article-column p {
  font-size: 14px;
  line-height: 21px;
  word-spacing: 0;
  margin: 0 0 15px 0;
}

.article-column strong {
  font-weight: 600 !important; 
}

.article-column p,
.article-column ul,
.article-column ol {
  font-family: 'Open Sans', arial, sans-serif;
}

.article-column ul,
.article-column ol {
  margin: 15px 0 15px 15px;
  list-style-position: outside;
  font-size: 14px;
}

.article-column li {
  margin-left: 10px;
  line-height: 1.5;
  margin-bottom: 5px;
}

.article-column a {
  color:  #ff6b01;
}

.article-column a:hover {
  text-decoration: underline;
}

.article-column td {
  padding: 3px 3px 5px 3px;
}

.article-column td p {
  margin: 0;
}

.article-column tbody tr:hover {
  cursor: default;
  background-color: transparent;
}

.article-body {
  word-wrap: break-word;
  margin-top: 20px;
}

.article-body table {
  table-layout: fixed;
  margin-bottom: 15px;
  box-shadow: 1px 1px 2px 0 rgba(0,0,0,0.15);
}

.article-left-img {
  float: left;
  padding-right: 20px;
}

.article-center-img {
  text-align: center; 
}

.article-right-img {
  float: right;
  padding-left: 20px;
}

.article-footer {
  border-bottom: 1px solid #EEE;
  margin-top: 15px;
  padding: 20px 0;
}
.article-footer .article-vote, .article-footer .share {
  display: table-cell;
}

.article-vote {
  width: 100%;
}

.article-vote > * {
  display: inline-block;
}

.article-vote-controls {
  margin: 0 5px;
}

.article-vote-count {
  color: #999;
  min-width: 20%;
}

.article-vote-up, .article-vote-down {
  color: inherit;
  font-family: "entypo";
  padding: 0px 10px;
}

.article-vote-up:before {
  content: "\1f44d";
}

.article-vote-down:before {
  content: "\1f44e";
}

.article-vote-up.article-voted {
  color: #6B9100;
  border-color: #6B9100;
}

.article-vote-down.article-voted {
  color: #999;
  border-color: #999;
}

.article-footer a, .article-footer a:before {
  background: #cccccc;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  color: #FFF;
  height: 30px;
  line-height: 30px;
}

.article-attachments {
  background-color: #eee;
  display: none;
}

.attachments {
  padding: 20px;
  margin: 5px !important;
}

pre.prettyprint {
  padding: 0 5px !important;
  margin-bottom: 15px;
  border: 1px solid #d0d0d0 !important;
}

.agreement-buttons {
  margin: 50px auto;
	width: 400px;
}

.eula-agreement-btn {
}

/* ====================================================
   Requests
   ==================================================== */
.request_cc_emails > ul {
  background-color: #fff;
  border: 1px solid #c0c0c0;
  border-radius: 0;
}

/*remove default margin from below form cc */
div[data-hc-pills-error] {
  margin: 0;  
}

/*overrides default focus border*/
ul[data-hc-pills-container][data-hc-focus=true] {
  border: 1px solid #c0c0c0 !important;
}

.request_ticket_form_id {
  text-align: center;
  margin-top: 20px;
}

label[for=request_ticket_form_id] {
  text-align: center;
  font-weight: 400;
  padding: 3px;
  margin: 0;
  height: 30px;
  display: inline-block;
}

.request_ticket_form_id > .nesty-input {
  position: relative;
  top: 9px;
  display: inline-block;
  width: 20%;
  margin: 0 auto;
  text-align: center;
  border-radius: 0;
}

.nesty-panel {
  text-align: center; 
}

.form-desc-link {
  color: #ff6b01;
}

.form-desc-link:hover {
  text-decoration: underline;
}

.main-requests h1 {
  margin: 0;
  line-height: 1.1;
  font-weight: normal;
  font-size: 24px;
  color: #595959;
  text-align: center;
}

.main-requests .accordion-box h3 {
  font-size: 18px;
}

#request_comment_body {
 margin-bottom: 5px; 
}

.request-page-submit-button input[type=submit] {
  padding: 15px 60px;
  float: right;
  border: none;
  -webkit-transition: background-color 200ms ease;
  -moz-transition: background-color 200ms ease;
  transition: background-color 200ms ease;
}

.request-page-submit-button input[type=submit]:hover {
  background-color: #45d167;
}

.main-requests .main-column:first-child {
  margin-bottom: 20px;
}

.new-request .upload-dropzone {
  width: 685px;
  float: left;
}

.upload-pool {
  overflow: visible;
}

.upload-progress {
  background-color: #A8D0F0; 
}

.new-request input[type=submit] {
  background-color: #4088CF;
  padding: 0; 
  padding: 14px 59px;
  -webit-transition: background-color 200ms ease;
  -moz-transition: background-color 200ms ease;
  transition: background-color 200ms ease;
}

.new-request input[type=submit]:hover {
  background-color: #3673B0;
}

.new-request input[type=submit]:disabled {
  background-color: silver;
}

.request-follow-up {
  text-align: center;
  margin-bottom: 8px;
}

.request-follow-up a {
  color: white;
  padding: 10px;
  background-color: #60798a;
  text-shadow: rgba(40, 60, 70, 0.5) 1px 1px 0;
}

.request-follow-up a:hover {
  background-color: #ff6b01;
}

.follow-up-hint {
  display: inline-block;
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 13px;
  color: #666;
}

.follow-up-hint > a {
  border-bottom: 1px dotted #D3D3D3;
  color: #666;
}

.request-details {
  padding: 15px 20px;
  margin: auto;
  width: 50%;
  text-align: left;
}

.request-details dt ~ dt, .request-details form dt {
  font-weight: bold;
  margin-top: 15px;
}

.request-details .nested-field-tag:before {
  content: " > ";
}
.request-details .nested-field-tag:first-child:before {
  content: "";
}

.request-details li + li {
  margin-top: 10px;
}

.request-header {
  font-weight: lighter;
  font-size: 1.7em;
  margin: 1em 0;
}

.request-id {
  color: #bbb;
  display: block;
  font-size: 13px;
  float: right;
}

.request-subject {
  max-width: 500px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#request-table tr:hover > .request-subject a {
  color: #ff6b01;
}

.request-details dt ~ dt {
  font-weight: bold;
  margin-top: 15px;
  background-color: #ececec;
  padding: 5px;
}

.request-details dd {
  margin: 5px;
  word-wrap: break-word;
}

.request-details dd ul {
  margin: 10px 0;
}

.request-details dd li {
  margin: 0;
}

.request-details dd a:hover {
  color: #ff6b01;
}

.request-details .nested-field-tag:before {
  content: " > ";
}
.request-details .nested-field-tag:first-child:before {
  content: "";
}

.request-status {
  color: #FFF;
  display: inline-block;
  font-size: 11px;
  font-weight: normal;
  letter-spacing: 1px;
  padding: 2px 5px;
  white-space: nowrap;
}

.request-open {
  background: #59BBE0;
}

.request-solved {
  background: #828282;
}

.page-header {
  border-bottom: 1px solid #EEE;
  margin-bottom: 30px;
  min-height: 50px;
  padding-bottom: 15px;
}
.page-header > * {
  display: table-cell;
  vertical-align: middle;
}
.page-header > *:first-child {
  width: 100%;
}
.page-header + p {
  color: #BEBEBE;
  margin: -15px 0 20px 0;
}
.page-header h1 {
  font-size: 20px;
  font-weight: 400;
}

/****Ticket fields****/

/*'version' and 'build' wrapper*/
.version-build-bg {
  margin: 0 auto;
  margin-top: 5px;
  max-width: 80%;
  background-color: #DDDDDD;
}

/*'version' and 'build' title*/
.version-build-bg-title {
  margin-top: 25px;
  margin-left: 85px;
}

/*'version' and 'build' description*/
.version-build-bg-desc {
  font-size: 12px;
  margin-top: 3px;
  margin-left: 85px;
  color: #A6A6A6;
}

.cc-desc {
  margin-top: 3px; 
}

/*"version"*/
.request_custom_fields_28135878 {
  margin: 20px 0 20px 80px;
  padding-right: 40px;
  float: left;
}

/*"ALL Builds"*/
.request_custom_fields_29374197,
.request_custom_fields_29511787,
.request_custom_fields_29511867,
.request_custom_fields_29563478,
.request_custom_fields_29563088,
.request_custom_fields_29645988,
.request_custom_fields_31679877,
.request_custom_fields_35319308,
.request_custom_fields_47752388,
.request_custom_fields_360020612494,
.request_custom_fields_114094143994,
.request_custom_fields_114101749273,
.request_custom_fields_114103417354,
.request_custom_fields_360005073734,
.request_custom_fields_360010955053,
.request_custom_fields_360033770874,
.request_custom_fields_360044459354,
.request_custom_fields_360048679654,
.request_custom_fields_360040563951,
.request_custom_fields_4413293554068 {
  margin: 20px 40px 20px 0 !important;
  border-left: 1px solid #9E9E9E;
  padding-left: 40px;
}

/*Version + ALL builds*/
.request_custom_fields_28135878,
.request_custom_fields_29374197,
.request_custom_fields_29511787,
.request_custom_fields_29511867,
.request_custom_fields_29563478,
.request_custom_fields_29563088,
.request_custom_fields_29645988,
.request_custom_fields_31679877,
.request_custom_fields_35319308,
.request_custom_fields_47752388,
.request_custom_fields_114094143994,
.request_custom_fields_114101749273,
.request_custom_fields_114103417354,
.request_custom_fields_360005073734,
.request_custom_fields_360010955053,
.request_custom_fields_360020612494,
.request_custom_fields_360033770874,
.request_custom_fields_360044459354,
.request_custom_fields_360048679654,
.request_custom_fields_360040563951,
.request_custom_fields_4413293554068 {
  display: inline-block;
  width: 40%;
  text-align: center;
}

/* Hidden override with form classname selector */
.form-field[hidden] {
  display: none;
}

/*"how important is this"*/
.request_custom_fields_29593538 > a,
.request_custom_fields_29512517 > a {
  width: 50%;
}

/*steps to replicate (text field)*/
#request_custom_fields_29512237 {
  height: 200px;
}

/*'report an issue' form misc yes/no fields*/
.request_custom_fields_29612478 > a,
.request_custom_fields_29606897 > a,
.request_custom_fields_29612358 > a,
.request_custom_fields_29612368 > a,
.request_custom_fields_29626527 > a,
.request_custom_fields_29612388 > a,
.request_custom_fields_29626537 > a, 
.request_custom_fields_29612468 > a,
.request_custom_fields_35362427 > a {
  width: 10%; 
}

.request_custom_fields_29502458 > a {
 width: 25%; 
}

/*'report an issue' form misc hidden conditional fields*/
.request_custom_fields_29534178,
.request_custom_fields_29512527,
.request_custom_fields_29575477,
.request_custom_fields_29660197,
.request_custom_fields_31679897,
.request_custom_fields_29561668,
.request_custom_fields_29561748,
.request_custom_fields_29561928,
.request_custom_fields_29612928, 
.request_custom_fields_29612938,
.request_custom_fields_29626807,
.request_custom_fields_29612948,
.request_custom_fields_29612958,
.request_custom_fields_29512747,
.request_custom_fields_29612618,
.request_custom_fields_29612628,
.request_custom_fields_29626727,
.request_custom_fields_29626887,
.request_custom_fields_29512797,
.request_custom_fields_29513047,
.request_custom_fields_29503008,
.request_custom_fields_35376467,
.request_custom_fields_47752428,
.request_custom_fields_114095607034,
.request_custom_fields_114101783393,
.request_custom_fields_114103417694,
.request_custom_fields_360005019893,
.request_custom_fields_360010955073,
.request_custom_fields_360020585673,
.request_custom_fields_360033735553,
.request_custom_fields_360044459374,
.request_custom_fields_360048598094,
.request_custom_fields_360040627072,
.request_custom_fields_4413286050708 {
  margin-left: 10px;
  padding-left: 20px;
  padding-top: 0;
  margin-top: 0 !important;
  border-left: 5px solid #DBDBDB;
}

.request_custom_fields_29512747,
.request_custom_fields_29612628,
.request_custom_fields_29626727,
.request_custom_fields_29626887 {
  padding-top: 15px;  
}

.request_custom_fields_29575477 > a,
.request_custom_fields_31679897 > a,
.request_custom_fields_29561668 > a,
.request_custom_fields_29561748 > a,
.request_custom_fields_29561928 > a,
.request_custom_fields_35376467 > a,
.request_custom_fields_47752428 > a,
.request_custom_fields_114095607034 > a,
.request_custom_fields_114101783393 > a,
.request_custom_fields_114103417694 > a,
.request_custom_fields_360005019893 > a,
.request_custom_fields_360010955073 > a,
.request_custom_fields_360020585673 > a,
.request_custom_fields_360033735553 > a,
.request_custom_fields_360044459374 > a,
.request_custom_fields_360048598094 > a,
.request_custom_fields_360040627072 > a,
.request_custom_fields_4413286050708 > a {
  width: 20%;
}

.request_custom_fields_29512747 > a,
.request_custom_fields_29612618 > a,
.request_custom_fields_29612628 > a,
.request_custom_fields_29626727 > a,
.request_custom_fields_29626887 > a,
.request_custom_fields_29512797 > a,
.request_custom_fields_29513047 > a,
.request_custom_fields_29626557 > a {
  width: 30%; 
}

.request_custom_fields_29561748 label,
.request_custom_fields_29575477 label,
.request_custom_fields_31679897 label,
.request_custom_fields_29561668 label,
.request_custom_fields_29660197 label,
.request_custom_fields_35376467 label,
.request_custom_fields_47752428 label,
.request_custom_fields_114095607034 label,
.request_custom_fields_114101783393 label,
.request_custom_fields_114103417694 label,
.request_custom_fields_360005019893 label,
.request_custom_fields_360010955073 label {
  font-size: 13px !important;
  color: #A5A5A5;
}

.request_custom_fields_29561668,
.request_custom_fields_29660197 {
  padding-top: 2px; 
}

/*'what type of issue is this'*/
.request_custom_fields_29502458 {
  background-color: #dddddd;
  padding: 20px;
  text-align: center;
}

/*'what type of issue is this / report design/execution checkboxes*/
.request_custom_fields_29503008,
.request_custom_fields_29512807,
.request_custom_fields_29581548,
.request_custom_fields_29503158,
.request_custom_fields_29512817 {
  font-size: 13px;
  text-align: center;
  color: #939393;
  display: inline-block;
  padding-top: 0;
  margin: 0 10px;
  margin-top: 0 !important;
}



/*'report an issue' form misc hidden conditional fields, 2nd indent*/
.request_custom_fields_29626557,
.request_custom_fields_29612968,
.request_custom_fields_29612978,
.request_custom_fields_29612918,
.request_custom_fields_29675247 {
  margin-left: 45px;
  padding-left: 20px;
  margin-bottom: 10px;
  margin-top: 0!important;
  border-left: 3px solid #ECECEC;
}

/* 'what type of issue is this' descriptions */
.type-of-issue-desc > p {
  padding: 10px 10px 10px 0;
  font-size: 16px;
}

/*'fields with asterisk are required' message*/
.form-required-fields {
  margin-top: 5px;
  font-size: 12px;
  color: #A6A6A6;
  text-align: right;
}

.form-required-fields > span {
  color: orange; 
}

body.community-enabled .search-results-column {
  width: 430px !important;
}

.visibility-internal-icon:before {
  content: "\1F512";
  display: inline-block;
  font-family: "entypo";
  text-align: center;
  width: 13px;
}

.article-promoted span, .visibility-internal {
  cursor: default;
  position: relative;
}
.article-promoted span:before, .article-promoted span:after, .visibility-internal:before, .visibility-internal:after {
  display: none;
  font-size: 13px;
  font-weight: normal;
  position: absolute;
}
.article-promoted span:before, .visibility-internal:before {
  background: #222;
  border-radius: 0;
  color: #FFF;
  content: attr(data-title);
  font-family: sans-serif;
  left: -10px;
  margin-top: 5px;
  padding: 3px 10px;
  text-transform: none;
  top: 100%;
  white-space: nowrap;
  z-index: 1;
}
.article-promoted span:after, .visibility-internal:after {
  border-bottom: 5px solid #222;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  bottom: -5px;
  content: "";
  height: 0;
  left: 50%;
  margin-left: -5px;
  width: 0;
}
.article-promoted span:hover:before, .article-promoted span:hover:after, .visibility-internal:hover:before, .visibility-internal:hover:after {
  display: block;
}

.article-body td {
  border: 1px solid #909090;
}

/* Comments - Article, Request and Post pages */
.zd-comment h1 {
  font-size: 22px;
}

.zd-comment h2 {
  font-size: 20px;
}

.zd-comment h3 {
  font-size: 18px; 
}

.zd-comment h4 {
  font-size: 16px;
}

.zd-comment h5 {
  font-size: 14px;
}

.zd-comment h1,
.zd-comment h2,
.zd-comment h3,
.zd-comment h4,
.zd-comment h5 {
  color: #4182BC;
  text-align: left;
  line-height: 1.5;
}

.zd-comment img {
  margin: 5px 0;  
}

.zd-comment p {
  margin-bottom: 10px; 
}

.zd-comment li {
  margin-bottom: 15px;
}

.zd-comment ul {
  margin: 5px;
  margin-left: 25px;
  list-style-type: disc;
  list-style-position: inside;
}

.zd-comment li ul {
  margin: 0;
  margin-left: 20px;
  list-style-type: circle;
}

.zd-comment ol {
  margin: 5px;
  margin-left: 25px;
  padding-left: 10px;
  list-style-type: decimal;
}

.zd-comment li ol {
  margin: 0;
  margin-left: 20px;
  list-style-type: lower-latin;
}

.zd-comment li li ol {
  list-style-type: lower-roman;
}


.zd-comment blockquote {
  display: inline-block;
  margin: 5px;
  padding: 5px;
  padding-right: 30px;
  border-left: 3px solid #C1C1C1;
  background: #E6E6E6;
}

.zd-comment blockquote span {
  background-color: #e6e6e6 !important;
  color: #202020 !important;
}

.zd-comment blockquote a span{
  color: #ff6b01 !important; 
}

.zd-comment code {
  font-family: Courier, monospace;
  border: 1px solid #E4E4E4;
  background-color: #F4F4F4;
  color: #43516C;
  margin: 2px;
  padding: 0 2px;
}

.zd-comment pre {
  font-family: Courier, monospace;
  border: 1px solid #e4e4e4;
  background-color: #F4f4f4;
  /*background-image: -webkit-repeating-linear-gradient(top,#e8e8e8 0px,#e8e8e8 19px,#f3f3f3 19px,#f3f3f3 38px);*/
  line-height: 19px;
  overflow: auto;
  white-space: pre-wrap;
  padding: 0 10px;
  margin: 15px 0;
}

.zd-comment a {
  color: #ff6b01;
}

.zd-comment a:hover {
  text-decoration: underline; 
}

.comment-body {
  padding-right: 10px; 
  padding-top: 5px;
}

.comment-container {
  padding-left: 5px; 
}

.comment-container > .attachment-list {
  margin-right: 450px;
  padding: 5px;
  background-color: #e0e0e0;
}

.comment-container > .attachment-list li {
  margin-bottom: 0;
  padding: 5px;
  padding-left: 9px;
}

.comment-container > .attachment-list li:before {
  content: none;  
}

.comment-container > .attachment-list li a {
  font-weight: 700; 
  transition: color 200ms ease;
}

.comment-container > .attachment-list li a:hover {
  color: #ff6b01; 
}

.comment-container > .attachment-list span {
  color: #454545; 
}

.comment-author {
  color: #a9a9a9;
  font-weight: normal;
  font-style: italic;
}

.signature {
  margin-top: 20px;
  font-size: 11px;
  color: silver; 
}

.comment-list {
  margin-bottom: 25px;
}
.comment-list > * {
  border-bottom: 1px solid #EEE;
  padding: 25px 0;
}
.comment-list > *:first-child {
  border-top: 1px solid #EEE;
}

.comment-sorter {
  float: right;
}
.comment-sorter a {
  color: #999;
  text-decoration: none;
  padding-left: 20px;
}
[dir=rtl] .comment-sorter {
  float: left;
}
[dir=rtl] .comment-sorter a {
  padding-left: 0;
  padding-right: 20px;
}

.comment-sorter [aria-selected=true] {
  font-weight: bold;
  color: #333;
}

.comment, .comment-form {
  display: table;
  table-layout: fixed;
  width: 100%;
}
.comment > *, .comment-form > * {
  display: table-cell;
  vertical-align: top;
}

.comment-vote, .comment-bookmark {
  text-align: center;
  width: 50px;
}

.comment-bookmark:before {
  color: #77a500;
  content: "\1F516";
  font-family: "entypo";
  font-size: 23px;
  line-height: 1.1;
}

.comment-avatar {
  position: relative;
  width: 65px;
}
.comment-avatar img {
  max-width: 55px;
  max-height: 55px;
}

.comment-avatar-agent:after {
  background-color: transparent;
  background-image: url("/hc/theming_assets/01J2BSH6T2DXFNR6H6660JZZQ6");
  background-repeat: no-repeat;
  background-size: 55px;
  content: " ";
  height: 20px;
  left: 0;
  position: absolute;
  top: 57px;
  width: 55px;
}
[dir=rtl] .comment-avatar-agent:after {
  left: auto;
  right: 55px;
}

.comment-header {
  margin-bottom: 15px;
}

.comment-published, .comment-pending, .comment-official {
  border: 1px solid transparent;
  float: right;
  font-size: 11px;
  padding: 1px 5px;
}
[dir=rtl] .comment-published, [dir=rtl] .comment-pending, [dir=rtl] .comment-official {
  float: left;
}

.comment-published {
  color: #BEBEBE;
}
.comment-published:before {
  content: " ";
  display: inline-block;
  width: 5px;
}

.comment-pending, .comment-official {
  border-color: currentcolor;
  border-radius: 0;
}

.comment-pending {
  color: #eec100;
}

.comment-official {
  color: #77a500;
}

.comment-form textarea {
  border-radius: 0;
  border-width: 1px;
  height: 150px;
}

.comment-attachments {
  float: left;
  width: 794px;
}

.comment-form-controls {
  margin-top: 10px;
  text-align: right;
}

.comment-form-controls input[type=submit] {
  margin-left: 15px;
}
[dir=rtl] .comment-form-controls input[type=submit] {
  margin-left: 0;
  margin-right: 15px;
}

.comment-screencasts, .comment-mark-as-solved {
  display: inline-block;
  margin-top: 10px;
  vertical-align: middle;
}
[dir=rtl] .comment-screencasts, [dir=rtl] .comment-mark-as-solved {
  margin-left: 20px;
}

.comment-actions {
  float: right;
  color: #999;
}
[dir=rtl] .comment-actions {
  float: left;
}

.comment-actions .dropdown-toggle:before {
  content: "\2699";
  font-size: 11px;
  font-family: "entypo";
}

.attachment-list, .screencast-list {
  font-size: 11px;
  margin-top: 25px;
}
.attachment-list span, .screencast-list span {
  color: #999;
}
[dir=rtl] .attachment-list span, [dir=rtl] .screencast-list span {
  direction: rtl;
  unicode-bidi: bidi-override;
}
.attachment-list li, .screencast-list li {
  margin-bottom: 10px;
  list-style: none;
}
.attachment-list li:before, .screencast-list li:before {
  background: #f9f9f9;
  border-radius: 0;
  color: #bbb;
  font-family: "entypo";
  margin-right: 5px;
  padding: 5px;
}

.attachment-list li:before {
  content: "\1F4CE";
}

.screencast-list li:before {
  content: "\1F4BB";
}

.my-activities-header {
  border-bottom: 1px solid #EEE;
  margin-bottom: 25px;
  padding: 25px 0;
}
.my-activities-header .breadcrumbs li {
  color: #000;
  font-size: 20px;
  font-weight: normal;
}
.my-activities-header .breadcrumbs li:first-child, .my-activities-header .breadcrumbs li:before {
  display: none;
}

.my-activities-nav {
  margin-bottom: 100px;
}

.my-activities-sub-nav {
  margin: 5px 0 30px;
  padding-bottom: 10px;
  text-align: center;
  border-bottom: 1px solid #EAEAEA;
}

.my-activities-sub-nav li a {
  border: 2px solid transparent;
  -webkit-transition: border-color 250ms ease;
  -moz-transition: border-color 250ms ease;
  transition: border-color 250ms ease;
}

.my-activities-sub-nav li a:hover {
  border-style: solid;
  border-width: 2px;
  border-color: transparent
                transparent
                rgba(128, 128, 128, 0.3)
                transparent;
}

tbody tr {
  -webkit-transition: background-color 200ms ease;
  -moz-transition: background-color 200ms ease;
  transition: background-color 200ms ease;
}

tbody tr:hover {
  background-color: #f2f2f2;
  cursor: pointer;
}

.request-table-toolbar {
  display: table;
  width: 100%;
}


.request-table-toolbar form {
  font-size: 0; /*removes default margin b/w form and button*/
}

#quick-search {
  font-size: 13px;
}

.request-list-error-msg {
  padding-top: 14px;
  color: #b7b7b7;
  font-size: 11px;
}

.request-list-error-msg > a {
   color: #b7b7b7;
   text-decoration: underline;
}

#request-table {
  display: none;
}

.request-table th {
  border-top: 0;
  padding: 20px 12px 5px;
}

.request-table-filters {
  display: table-cell;
  text-align: right;
  font-size: 13px;
}
[dir=rtl] .request-table-filters {
  text-align: left;
}
.request-table-filters label:before {
  content: " ";
  width: 25px;
  display: inline-block;
}

.requests-search {
  outline: none;
  padding: 6px 15px;
}

.request-table-toolbar .requests-search-button {
  border: 1px solid silver;
  border-left: 0;
  font-size: 13px;
  background-color: #fff;
  color: #202020;
  padding: 6px 10px;
}

.request-table-toolbar .requests-search-button:hover {
  background-color: #ECECEC;
}

.request-table-filters label {
  padding: 3px;
  font-size: 13px;
}

#request-status-select {
  padding-left: 5px;
  width: 210px;
  height: 32px;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid #c0c0c0;
  border-radius: 0;
  background: white url("/hc/theming_assets/01J2BSH5NJBZH0R5WJP7738011") no-repeat 182px 8px;
  background-size: 15px 15px;
  outline: 0;
  transition: border 150ms ease;
}

#request-status-select::-ms-expand{
    display: none;
}

#request-status-select:hover {
  border: 1px solid #8D8D8D; 
}

.request-id {
  color: #BEBEBE;
  padding: 5px;
}

.request-status {
  color: #FFF;
}

.request-open {
  background: #59BBE0;
}

.request-answered {
  background: #FF6D03;
}

.request-solved {
  background: #828282;
}

.

/* Community heading */
.community-heading {
  font-size: 18px;
  margin: 0;
  width: 100%;
}

/* Community nav */
.community-nav {
  border-bottom: 1px solid #EEE;
  margin-bottom: 55px;
  padding: 25px 0;
}

.community-nav li {
  display: inline-block;
  font-weight: bold;
  padding-right: 30px;
}

.community-nav li a {
  font-weight: normal;
}

.community-nav li + li {
  border-left: 1px #EEE;
  padding-left: 30px;
}

.community-nav li:last-child {
  border: 0;
  float: right;
  margin: 0;
  padding: 0;
  position: relative;
  top: -5px;
}
[dir=rtl] .community-nav li:last-child {
  float: left;
}

.community-nav li:last-child a {
  color: #1a74b0;
}

.community-nav li:last-child a:before {
  content: "\270E";
  font-family: "entypo";
  font-size: 14px;
  margin-right: 10px;
  vertical-align: middle;
}
[dir=rtl] .community-nav li:last-child a:before {
  margin-right: 0;
  margin-left: 10px;
}

/* Community sub-nav */
.community-sub-nav {
  border-bottom: 1px solid #EEE;
  padding: 15px 0;
  position: relative;
  width: 800px;
}

.community-sub-nav li {
  display: inline-block;
  font-weight: bold;
  padding-right: 15px;
}

.community-sub-nav li a {
  font-weight: normal;
}

.community-sub-nav li + li {
  padding-left: 15px;
}

.community-sub-nav .topic-add {
  position: absolute;
  right: 0;
  top: 10px;
}

/* Topics/questions/answers */
.topic {
  display: inline-block;
  width: 49.5%;
  padding: 20px 30px 20px 0;
  vertical-align: top;
}

.topic-header, .question-header {
  border-bottom: 1px solid #EEE;
  display: table;
  padding-bottom: 10px;
}

.topic-header > *, .question-header > * {
  display: table-cell;
  vertical-align: middle;
}

.topic-header .topic-meta, .question-header .question-meta {
  padding: 0 15px;
  white-space: nowrap;
}

.topic-heading, .question-heading, .answer-list-heading {
  font-weight: bold;
  font-size: 13px;
  width: 100%;
}

.topic-heading {
  font-size: 18px;
}

.topic-questions {
  margin-top: 45px;
}

.topic-description {
  word-break: break-word;
}

.question, .answer {
  border-bottom: 1px solid #EEE;
  padding: 20px 0;
  position: relative;
}

.question-form .nesty-input {
  max-width: none;
}

.question-avatar, .answer-avatar {
  display: table-cell;
  margin-right: 10px;
  min-width: 50px;
  position: relative;
  vertical-align: top;
}

.question-avatar-agent:after, .answer-avatar-agent:after {
  background-color: transparent;
  background-image: url("/hc/theming_assets/01J2BSH64SP2A0PK58G22737CF");
  background-image: url("/hc/theming_assets/01KVAH78D0AVX0A66XEJH0XJED");
  background-repeat: no-repeat;
  background-size: 14px;
  position: absolute;
  width: 15px;
  height: 15px;
  left: 30px;
  top: 30px;
  content: " ";
}

.question-avatar img, .answer-avatar img {
  border-radius: 0;
  max-height: 38px;
  max-width: 38px;
}

.question-body, .answer-body, .answer-official-body {
  display: table-cell;
  vertical-align: top;
  width: 100%;
}

.question-body .answer-official-body {
  vertical-align: top;
  width: 100%;
}

.question-body p, .answer-body p, .answer-official-body p {
  margin: 0 0 5px;
}

.question-body .question-meta, .answer-body .answer-meta, .answer-official-body .answer-meta {
  float: left;
}

.question .answer {
  border: none;
  padding-bottom: 0;
}

.question-topic-list {
  margin: -20px 0 30px;
}

.question-topic-list li {
  display: inline-block;
  margin: 10px 10px 0 0;
}

.question-topic-list a {
  background: #f6f6f6;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 0;
  color: #CCC;
  display: inline-block;
  font-size: 11px;
  padding: 7px 15px;
}

.question-title, .topic-title {
  margin: -3px 0 5px;
  font-size: 15px;
}

.question-title a, .topic-title a {
  font-weight: lighter;
}

.question-meta, .answer-meta, .topic-meta {
  color: #CCC;
  font-size: 11px;
}

.topic-meta span + span:before, .question-meta span + span:before, .answer-meta span + span:before {
  content: "\2022";
  font-size: 10px;
  margin: 0 10px;
}

.answer-form {
  margin: 30px 0 0 95px;
}

.answer-form-controls {
  display: none;
  margin-top: 10px;
  text-align: right;
}

.answer-form-controls input[type=submit] {
  margin-left: 15px;
}

.answer-form-controls .pull-left {
  float: left;
}

.answer-official-heading {
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
  margin: 0 0 20px;
  border-bottom: 0px;
}

.answer-list-heading {
  border-bottom: 1px solid #EEE;
  margin-top: 30px;
  padding-bottom: 20px;
}

.pending-moderation-answer-badge {
  clear: both;
  border-style: solid;
  border-width: 1px;
  border-color: #c7aa2b;
  color: #c7aa2b;
  padding: 3px 5px;
  float: left;
  margin-top: 10px;
  font-size: 12px;
}

.question-share, .answer-share {
  position: relative;
}

.related-questions-header {
  border-bottom: 1px solid #EEE;
}

.related-questions-heading {
  margin-top: 3px;
}

.related-questions li {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* Vote */
.vote {
  display: table-cell;
  margin-left: 15px;
  margin-right: 10px;
  min-width: 95px;
  vertical-align: top;
}

.vote-sum, .vote-controls {
  display: inline-block;
  vertical-align: middle;
}

.vote-sum {
  font-size: 15px;
  font-weight: bold;
  min-width: 60px;
  padding-left: 10px;
  text-align: center;
}

.vote-controls {
  border-radius: 0;
}

.vote-controls a {
  background: #FFF;
  border-color: #f6f6f6;
  box-shadow: none;
  color: #BEBEBE;
  display: block;
  font-family: "entypo";
  font-size: 13px;
  height: 18px;
  line-height: 18px;
  padding: 0 6px;
}

.vote-up {
  border-radius: 0;
}

.vote-down {
  border-radius: 0;
  border-top: 0;
}

.vote-up:before {
  content: "\E763";
}

.vote-down:before {
  content: "\E760";
}

.vote-controls:hover {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.vote-controls:hover a {
  background: #FFF;
  border-color: #A6A6A6;
  color: #BBB;
}

.vote-controls a:hover, .vote-controls [aria-selected=true] {
  background: #f6f6f6;
  color: #333;
}

.vote-controls a:active {
  background: #CCC;
  color: #111;
}

/* Accept */
.answer-accept {
  color: #BBB;
  font-size: 15px;
  max-width: 15px;
  overflow: hidden;
  padding-top: 7px;
  position: absolute;
  white-space: nowrap;
}

.answer-accept:hover {
  text-decoration: none;
}

.answer-accept:before {
  content: "\2713";
  font-family: "entypo";
  margin-right: 5px;
}

.answer-accepted .answer-accept, .answer-accepted .vote-sum {
  color: green;
}

/* Admin controls */
.topic-controls, .question-controls, .answer-controls {
  float: right;
  font-size: 11px;
}

.topic-edit:before, .question-delete:before, .question-mark-as-spam:before, .answer-delete:before, .answer-mark-as-spam:before {
  color: #CCC;
  content: "\2022";
  font-size: 10px;
  margin-left: -16px;
  margin: 0 8px;
  pointer-events: none;
  position: relative;
  display: inline-block;
}

/* Share questions and answers */
.share-label {
  cursor: pointer;
}

.share-label + .share {
  background: #FFF;
  border: 1px solid #DDD;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
  left: 50%;
  line-height: 70px;
  margin: 10px 0 0 -75px;
  position: absolute;
  text-align: center;
  top: 100%;
  white-space: nowrap;
  width: 175px;
  z-index: 1;
}

.share-label + .share:before, .share-label + .share:after {
  content: "";
  display: inline-block;
  left: 50%;
  position: absolute;
}

.share-label + .share:before {
  top: -7px;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #CCC;
  border-left: 7px solid transparent;
  margin-left: -6px;
}

.share-label + .share:after {
  top: -6px;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #FFF;
  border-left: 6px solid transparent;
  margin-left: -5px;
}

.share-label[aria-selected="true"] {
  color: #111;
}

.share-label[aria-selected="true"] + .share {
  display: block;
}

.share-label[aria-selected="false"] + .share {
  display: none;
}

body.community-enabled .search-results-column {
  display: inline-block;
  vertical-align: top;
  width: 450px;
}
body.community-enabled .search-results-column + .search-results-column {
  margin-left: 35px;
}
[dir=rtl] body.community-enabled .search-results-column + .search-results-column {
  margin-left: 0;
  margin-right: 35px;
}

.search-results-heading {
  text-align: center;  
}

.search-results-subheading {
  padding-bottom: 10px;
  margin-bottom: 0;
}

.search-results-subheading-link {
  font-size: 13px;
  font-weight: normal;
  margin-left: 5px;
}

.search-results-list {
  margin-bottom: 25px;
}
.search-results-list > * {
  border-bottom: 1px solid #EEE;
  padding: 20px 0;
}
.search-results-list > *:first-child {
  border-top: 1px solid #EEE;
}

.search-result {
  padding: 0 10px 0;
  -webkit-transition: background-color 250ms ease;
  -moz-transition: background-color 250ms ease;
  transition: background-color 250ms ease; 
}

.search-result:hover {
  background-color: #f8f8f8;
}

.search-result-div {
  padding: 15px 0; 
}

.search-result-div h3 {
  display: inline-block;
  font-size: 16px; 
  -webkit-transition: color 150ms ease;
  -moz-transition: color 150ms ease;
  transition: color 150ms ease;
}

.search-result-div h3:hover {
  color: #ff6b01;
}

.search-result-description {
  padding-top: 0;
  color: gray;
  font-size: 13px;
  font-style: italic;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-meta {
  font-size: 12px;
  color: gray;
  /* opacity: .5; */ /* changed by Alex */
}

/* added by Alex.
 * Natalie wanted the breadcrumb to pop a little more
 */
.search-result-meta a {
  color: #273B4C;
}

.search-result-meta a:hover:nth-child(2),
.search-result-meta a:hover:nth-child(3),
/* following two lines added by Alex */
.search-result-meta a:hover:nth-child(4),
.search-result-meta a:hover:nth-child(5){
  color: #ff6b01;  
}

.search-result-meta-name, .search-result-meta-time, .search-result-meta-count {
  font-size: 12px;
  color: #BEBEBE;
}

.search-result-meta-time:before, .search-result-meta-count:before {
  display: inline-block;
  padding-right: 5px;
  content: '\2022';
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

.search-result-meta .search-result-link { /*removes items in {{meta}}*/
  display: none;  
}

.search-result-meta time { /*remove items in {{meta}} */
  display: none; 
}

.search-result-votes {
  background: #A8D119;
  border-radius: 0;
  color: #FFF;
  display: inline-block;
  line-height: 1;
  margin-left: 5px;
  padding: 4px 5px;
  position: relative;
  top: -2px;
}
.search-result-votes:before {
  content: "\1F44D";
  font-family: "entypo";
  margin-right: 3px;
}

.chat {
  background: #f6f6f6;
  border: 1px solid #E0E0E0;
  border-bottom: 0;
  border-radius: 0;
  bottom: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  font-size: 13px;
  line-height: 35px;
  padding: 0 15px;
  position: fixed;
  right: 85px;
  -webkit-transition: bottom .5s ease-in, color .5s ease-in;
  -moz-transition: bottom .5s ease-in, color .5s ease-in;
  transition: bottom .5s ease-in, color .5s ease-in;
}

.chat:before {
  content: "\E720";
  font-family: "entypo";
  font-size: 16px;
  margin-right: 10px;
  vertical-align: middle;
}

.chat:hover {
  text-decoration: none;
}

.chat-available {
  bottom: 0;
}

.chat-unavailable {
  color: gray;
  cursor: default !important;
  bottom: -50px;
}

.error-page {
  margin: 0 auto;
  max-width: 500px;
  padding-top: 5%;
}

.error-page h1 {
  font-size: 52px;
  margin-bottom: 0;
}

.error-page h2 {
  font-size: 16px;
  margin-bottom: 5px;
}

.error-page > a {
  display: block;
  margin-top: 25px;
}

.recent-activity {
  border-radius: 0;
  padding: 5px;
}

.recent-activity-header {
  margin-top: 0;
  font-size: 15px;
}

.recent-activity-item ~ .recent-activity-item {
  margin-top: 15px;
}

.recent-activity-item-parent {
  color: #333333;
  font-size: 12px;
  text-decoration: none;
  display: block;
}
.recent-activity-item-parent:hover {
  text-decoration: underline;
}

.recent-activity-item-link {
  display: block;
}

.recent-activity-item-meta {
  font-size: 12px;
  color: #999;
}

.recent-activity-item-time {
  display: inline-block;
}

.recent-activity-item-comment {
  display: none;
}
.recent-activity-item-comment:before {
  display: inline-block;
  content: "•";
}
.recent-activity-item-comment span:before {
  font-family: "entypo";
  content: "\00a0\00a0\e718";
  display: inline-block;
  vertical-align: middle;
  padding-right: 3px;
}

[data-recent-activity-action="article_comment_added"] .recent-activity-item-comment,
[data-recent-activity-action="post_comment_added"] .recent-activity-item-comment,
[data-recent-activity-action="answer_added"] .recent-activity-item-comment {
  display: inline-block;
}

.recent-activity-controls,
.recent-activity-loader {
  padding-top: 20px;
  font-size: 12px;
}

.recent-activity-loader {
  display: inline-block;
  position: relative;
}
.recent-activity-loader:before {
  display: block;
  position: absolute;
  content: "\0020";
  width: 50%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #f9f9f9 50%, rgba(255, 255, 255, 0) 100%);
  animation: recent-activity-loader 0.5s infinite;
  -webkit-animation: recent-activity-loader 0.5s infinite;
}

@keyframes recent-activity-loader {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
@-webkit-keyframes recent-activity-loader {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}

/* ====================================================
   Bootstrap Accordion CSS
   ==================================================== */

.collapse {
  display: none;
}

.collapse.in {
  display: block;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  -moz-transition: height 0.35s ease;
  transition: height 0.35s ease;
}

.panel-title {
  margin: 0;
  padding: 10px;
  font-size: 13px;
  text-align: center;
  color: #B0B0B0;
  -webkit-transition: color 250ms ease;
  -moz-transition: color 250ms ease;
  transition: color 250ms ease;
}

.panel-title:hover {
  color: #ff6b01;

}

/* ====================================================
   Bootstrap Modal CSS
   ==================================================== */
modal-open {
  overflow: hidden;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity .15s linear;
  -moz-transition: opacity .15s linear;
  transition: opacity .15s linear;
}

.fade.in {
  opacity: 1;
}

.modal {
  position: fixed;
  top: 30px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform .3s ease-out;
  -moz-transition: -moz-transform .3s ease-out;
   transition: transform .3s ease-out;
  -webkit-transform: translate(0, -25%);
  -moz-transform: translate(0, -25%);
   transform: translate(0, -25%);
}

.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
     -moz-transform: translate(0, 0);
          transform: translate(0, 0);
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: 700px;
  margin: 0 auto;
}

.modal-content {
  position: relative;
  background-color: #fff;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #999;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
          box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}

.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: .5;
}

.modal-header {
  min-height: 16.42857143px;
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.modal-header .close {
  margin-top: -2px;
}

.modal-title {
  margin: 0;
  line-height: 1.42857143;
}

.modal-body {
  position: relative;
  padding: 15px;
}

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}

.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}

.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

/* this pushes the site to the left, turned it off
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; */
 
.modal-button {
  margin: 10px 0;
}

.modal-button, 
.modal-button-inner {
  background-color: #60798a;
  color: white;
  border: none;
  outline: none;
  padding: 10px 20px;
  -webkit-transition: background-color 250ms ease;
  -moz-transition: background-color 250ms ease;
  transition: background-color 250ms ease;
}

.modal-button:hover, 
.modal-button-inner:hover {
  background-color: #ff6b01;
}

/* ====================================================
   Up Arrow
   ==================================================== */
.uparrow{
  width: 30px;
  height: 30px;
  opacity: 0.3;
  position: fixed;
  bottom: 100px;
  right: 30px;
  display: none;
  text-indent: -9999px;
  background: url("/hc/theming_assets/01K477352TS6W7C30FANXPFHMP") no-repeat;
}

.uparrow:hover{
  opacity:0.6;
}

.updating-guide-notice {
  color: #222222;
	border: 1px solid #505050;
	padding: 10px;
	border-radius: 9px;
	margin: 50px 0;
	display: flow-root;
	box-shadow: -1px 7px 13px rgba(0, 0, 0, 0.08);
  font-family: 'Open Sans', arial, sans-serif;
	font-size: 14px;
}

/* =============================
   Dynamic Versioning
   ============================= */
#versioningSidebar {
  -moz-transition: box-shadow 1s; /* Firefox 4 */
  -o-transition: box-shadow 1s; /* Opera */
  -webkit-transition: box-shadow 1s; /* Chrome */
  transition: box-shadow 1s;
  box-shadow: 0 1px 3px 0 rgba(0,0,0,0.08);    
}

.versionDropdown {
  position: relative;
  border: 1px solid lightgray;
  border-left: 2px solid #555;
  height: 30px;
  width: 100%;
  border-radius: 0px;
  padding: 5px 35px 5px 5px;
  background: url("/hc/theming_assets/01KVAH77ZS8JC19AXZ9TMQP1S0") 96% / 4% no-repeat #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
}

.versionDropdown::-ms-expand {
    display: none;
}

#article_body {
  transition: opacity .25s ease;
}

.maintenanceVersionGrayscale {
  vertical-align:top;
  background:white;
  color:darkgray;
  font-size:11px;
  border:1.6px solid darkgray;
  padding:2px 4px;
  border-radius:5px;
  margin-left:5px;
}

.maintenanceVersion {
  vertical-align:top;
  background:#87a9f7;
  color:#ffffff;
  font-size:11px;
  border:1.6px solid #4e80f4;
  padding:2px 4px;
  border-radius:5px;
  margin-left:5px;
}

.request-form > .form-field.string > .nesty-input {
  width: 300px !IMPORTANT;
}

/* =============================
   Media Queries
   ============================= */
/*coming soon!*/