/* Base styles */
*, input[type=search] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  background-color: #ffffff;
}

body {
  color: #12910E;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: lighter;
  line-height: 1.5;
  margin: 0;
  padding-bottom: 50px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

figure > img {
  display: block;
}

a {
  color: #049CC2;
  font-family: Helvetica, Arial, sans-serif;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

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

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

td, th {
  border-color: #eeeeee;
  border-style: solid;
  padding: 12px;
}

th {
  border-width: 1px 0;
  color: #bebebe;
  font-size: 11px;
  font-weight: normal;
  white-space: nowrap;
}

td {
  border-width: 0 0 1px 0;
}

h1, h2, h3, h4, h5, h6 {
  color: black;
  font-weight: 800;
}

h1, h2, h3 {
}

h1 {
  font-size: 20px;
}

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

label {
  font-size: 12px;
}

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

input, textarea {
  border: 1px solid #dddddd;
  border-radius: 2px;
  padding: 10px;
}

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;
  font-weight:normal;
}

:-ms-input-placeholder {
  color: #CCC;
  font-weight:normal;
}

::-moz-placeholder {
  color: #CCC;
  font-weight:normal;
}

/* Buttons */
button, [role=button], [type=button], [type=submit] {
  border-radius: 4px;
  border: 1px solid #dddddd;
  color: #049CC2;
  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: #444;
  border-color: transparent;
  color: #FFF;
  padding: 10px 30px;
}

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

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

/* Forms */
.form {
  max-width: 570px;
  display: none;
}

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

fieldset.no-border {
  border: none;
}

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

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

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

.form-field p {
  font-size: 13px;
}

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

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

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

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

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

.form footer {
  border-top: 1px solid #eeeeee;
  margin-top: 40px;
  padding: 30px;
  text-align: right;
}

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

/* 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: #eeeeee;
  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;
}

/* Search box */
.search-box, .sub-nav .search {
  position: relative;
}

.search-box:before, .sub-nav .search:before {
  content: "\1F50D";
  font-family: "entypo";
  font-size: 1.25em;
  line-height: 0;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 2.5em;
  z-index: 1;
}

.search-box input, .sub-nav .search input {
  font-weight: lighter;
  padding: .75em 2.7em;
  width: 100%;
  -webkit-appearance: none;
}

.search-box input[type="submit"], .sub-nav .search input[type="submit"] {
  display: none;
}

/* Breadcrumbs */
.breadcrumbs li {
  color: #bebebe;
  display: inline-block;
  font-size: 14px;
  white-space: nowrap;
}
.breadcrumbs li + li:before {
  content: ">";
}
.breadcrumbs li a {
  color: #1F73B7;
}

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

/* Metadata */
.meta, .meta-group {
  color: #cccccc;
  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 {
  display: inline-block;
  color: #FFF;
  font-family: "entypo";
  text-align: center;
  width: 100%;
}

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

.share-twitter:before {
  background: #00ACED;
  content: "\F309";
}

.share-facebook:before {
  background: #3B5998;
  content: "\F30C";
}

.share-linkedin:before {
  background: #4875B4;
  content: "\F318";
}

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

/* Pagination */
.pagination {
  margin: 20px 0;
  text-align: center;
}

.pagination * {
  display: inline-block;
}

.pagination li {
  border: 1px solid #eeeeee;
  float: left;
  margin-left: -1px;
}
[dir="rtl"] .pagination li {
  float: right;
}

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

.pagination-current {
  background-color: #f9f9f9;
  color: #bebebe;
}

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

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

/* Markdown styles */
.markdown {
  word-wrap: break-word;
  line-height: 1.7;
}
.markdown h1, .markdown h2, .markdown h3, .markdown h4, .markdown h5, .markdown h6 {
  padding: 0;
  margin: 0 0 10px 0;
  font-weight: bold;
  line-height: 13px;
  font-size: 13px;
}
.markdown img {
  display: block;
  max-width: 100%;
}
.markdown hr {
  background-color: #eeeeee;
  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 pre {
  background: #f9f9f9;
  border: 1px solid #eeeeee;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}
.markdown blockquote {
  border-left: 1px solid #eeeeee;
  color: #bebebe;
  font-style: italic;
  padding: 0 15px;
}

/* Frame */
main, .header-inner, .footer-inner {
  margin: 0 auto;
  padding: 0 20px;
  width: 980px;
}

/* Columns */
.main-column, .side-column {
  display: inline-block;
  vertical-align: top;
}

.main-column {
  width: 620px;
}

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

/* Header */
.header {
  background: #262627;
}

.header-inner {
  display: table;
}

.logo, .user-nav {
  display: table-cell;
  vertical-align: middle;
}

.logo a {
  border-bottom-style: none;
}

.logo img {
  width: 165px;
  margin: 20px 0;
  opacity: .84;
}

.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;
}

/* Home page */
.hero-unit {
  display: block;
  font-size: 22px;
  padding: 80px 60px;
}

body.community-enabled .knowledge-base, body.community-enabled .community {
  display: inline-block;
  vertical-align: top;
}
body.community-enabled .knowledge-base {
  width: 620px;
}

.knowledge-base, .community {
  display: inline-block;
  vertical-align: top;
}

.knowledge-base {
  width: 100%;
}

.community {
  background: #f9f9f9;
  border-radius: 5px;
  display: none;
  padding: 25px 20px;
  margin-top: 65px;
  margin-left: 45px;
  width: 270px;
}
[dir=rtl] .community {
  margin-left: 0;
  margin-right: 45px;
}

.community h2, .community h3, .section h3 {
  color: #12910E;
  font-size: 13px;
  font-weight: lighter;
  margin: 10px 0 20px;
}

.community h4 {
  font-size: 15px;
  margin-top: 0;
}

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

.community .trending-questions + h4 {
  margin-top: 50px;
}

/* Knowledge base trees */
.article-list li, .community li {
  margin-bottom: 12px;
}

.category h2 {
  border-bottom: 1px solid #eeeeee;
  font-size: 16px;
  margin: 25px 0;
  padding-bottom: 18px;
}

.category h2 a, .section h3 a {
  color: inherit;
}

.category-empty, .section {
  display: inline-block;
  padding: 20px 50px 30px 50px;
  vertical-align: top;
  width: 46.5%;
}
[dir=rtl] .category-empty, [dir=rtl] .section {
  padding: 0 0 30px 50px;
}

.see-all-articles {
  display: inline-block;
  font-size: 12px;
  margin-top: 10px;
  text-decoration: underline;
}

.category-description, .section-description {
  color: #bebebe;
  margin-bottom: 50px;
  margin-top: -15px;
}

.category-list a, .section-list a {
  color: inherit;
  display: inline-block;
  font-size: 18px;
  margin-bottom: 10px;
}

.page-header {
  border-bottom: 1px solid #eeeeee;
  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;
}

/* Sub-nav */
.sub-nav {
  display: table;
  margin-bottom: 25px;
  padding: 25px 0;
  width: 100%;
}
.sub-nav > * {
  display: table-cell;
}
.sub-nav .search {
  width: 300px;
}

/* Article */
.article-header {
  margin-bottom: 25px;
}
.article-header h1 {
  font-weight: bold;
  margin: 0 0 10px;
}

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

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

.article-meta {
  width: 100%;
}

.article-body {
  line-height: 1.7;
}
.article-body ul, .article-body ol {
  list-style-position: outside;
  padding: 0 15px;
}
.article-body ul {
  list-style-type: disc;
}
.article-body ol {
  list-style-type: decimal;
}
.article-body span.changelog-pill {
  font-size: 9px;
  font-weight: bold;
  padding: 3px 5px;
  border-radius: 3px;
  margin-right: 3px;
  display: inline-block;
  line-height: 9px;
  letter-spacing: 0.5px;
}
.article-body span.changelog-pill.changelog-pill-new {
  background-color: #78af2c;
  color: #fff;
}
.article-body span.changelog-pill.changelog-pill-bugfix {
  background-color: #CD3C2A;
  color: #fff;
}
.article-body span.changelog-pill.changelog-pill-improvement {
  background-color: #00ACED;
  color: #fff;
}
.article-body span.changelog-pill.changelog-pill-internal {
  background-color: #ccc;
  color: #000;
}
.article-body span.marketplace-submission-pill {
  font-size: 9px;
  font-weight: bold;
  padding: 3px 5px;
  border-radius: 3px;
  margin-right: 3px;
  display: inline-block;
  line-height: 9px;
  letter-spacing: 0.5px;
  background-color: #30aabc;
  color: #fff;
	vertical-align: middle;
}

.article-sidebar {
  padding-top: 75px;
}

.article-more-questions {
  margin-bottom: 50px;
  margin-top: 15px;
}

.article-footer {
  border-bottom: 1px solid #eeeeee;
  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: #999999;
  min-width: 20%;
}

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

.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;
}

/* Side column */
.side-column h3 {
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 15px;
  margin: 0 0 20px;
}
.side-column ul {
  margin-bottom: 60px;
}
.side-column li {
  margin-bottom: 10px;
}

.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;
  top: -2px;
}
.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: 3px;
  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;
}

/* Comments - Article page and Request page */
.comment-list {
  margin-bottom: 25px;
}
.comment-list > * {
  border-bottom: 1px solid #eeeeee;
  padding: 25px 0;
}
.comment-list > *:first-child {
  border-top: 1px solid #eeeeee;
}

.comment, .comment-form {
  min-height: 100px;
  padding: 20px 0;
  position: relative;
}

.comment-container {
  margin-left: 85px;
}
[dir=rtl] .comment-container {
  margin-left: 0;
  margin-right: 85px;
}

.comment-avatar {
  position: absolute;
  display: inline-block;
}
.comment-avatar img {
  border-radius: 3px;
  max-width: 65px;
  max-height: 65px;
}

.comment-avatar-agent:after {
  background-color: transparent;
  background-image: url("/hc/theming_assets/01HZGZYCZN73CZ9PEQXHCTR2H9");
  background-image: url("/hc/theming_assets/01HZGZYD41GE35P5YHMSN6P1AW");
  background-repeat: no-repeat;
  background-size: 14px;
  position: absolute;
  width: 15px;
  height: 15px;
  bottom: -5px;
  right: -3px;
  content: " ";
}
[dir=rtl] .comment-avatar-agent:after {
  right: auto;
  left: -3px;
}

.comment-author {
  display: inline-block;
  font-size: 12px;
  margin: 0 0 15px 0;
}

.comment-published, .comment-edit, .comment-delete, .comment-mark-as-spam {
  float: right;
  font-size: 11px;
  margin-right: 12px;
  margin-left: 12px;
}
[dir=rtl] .comment-published, [dir=rtl] .comment-edit, [dir=rtl] .comment-delete, [dir=rtl] .comment-mark-as-spam {
  float: left;
}

.comment-published {
  color: #bebebe;
  font-weight: lighter;
}

.comment-edit:before, .comment-delete:before, .comment-mark-as-spam:before {
  color: #cccccc;
  content: "\2022";
  font-size: 10px;
  margin-left: -14px;
  pointer-events: none;
  position: absolute;
}
[dir=rtl] .comment-edit:before, [dir=rtl] .comment-delete:before, [dir=rtl] .comment-mark-as-spam:before {
  margin-left: 0;
  margin-right: -14px;
}

.comment-body {
  font-weight: lighter;
  line-height: 1.7;
  word-wrap: break-word;
}

.comment-body p:first-child {
  margin-top: 0px;
}

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

.comment-attachments {
  border: 1px solid #dddddd;
  margin-top: -1px;
  padding: 10px;
}

.comment-form-controls {
  display: none;
  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-mark-as-solved {
  float: left;
  margin-top: 5px;
}
[dir=rtl] .comment-mark-as-solved {
  float: right;
}

.comment-screencasts {
  float: left;
  margin-top: 5px;
  margin-right: 25px;
}
[dir=rtl] .comment-screencasts {
  float: right;
}

.pending-comments-list {
  list-style: none;
}

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

.my-activities-header {
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 25px;
  padding: 25px 0;
}
.my-activities-header .breadcrumbs li {
  color: black;
  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-bottom: 15px;
}

.request-table-toolbar {
  background: #f9f9f9;
  display: table;
  padding: 8px;
  width: 100%;
}

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

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

.request-id {
  color: #bebebe;
}

.request-details {
  background: #f9f9f9;
  border: 1px solid #eeeeee;
  border-radius: 3px;
  font-size: 12px;
  margin: 0 0 30px;
  padding: 15px 20px;
}

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

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

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

.request-details dd li {
  list-style-type: disc;
  list-style-position: inside;
  margin: 0;
}

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

.request-status {
  color: #FFF;
  border-radius: 3px;
}

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

.request-answered {
  background: #F5CA00;
}

.request-solved {
  background: #828282;
}

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

/* Community nav */
.community-nav {
  border-bottom: 1px solid #eeeeee;
  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 #eeeeee;
  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: #049CC2;
}

.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 #eeeeee;
  padding: 15px 0;
  position: relative;
}

.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 #eeeeee;
  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 #eeeeee;
  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/01HZGZYCZN73CZ9PEQXHCTR2H9");
  background-image: url("/hc/theming_assets/01HZGZYD41GE35P5YHMSN6P1AW");
  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: 3px;
  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: 5px;
  color: #cccccc;
  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: #cccccc;
  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 #eeeeee;
  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 #eeeeee;
}

.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: 5px;
}

.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: 5px 5px 0 0;
}

.vote-down {
  border-radius: 0 0 5px 5px;
  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, .question-delete, .question-mark-as-spam, .answer-delete, .answer-mark-as-spam {
  margin-left: 25px;
}

.topic-edit:before, .question-delete:before, .question-mark-as-spam:before, .answer-delete:before, .answer-mark-as-spam:before {
  color: #cccccc;
  content: "\2022";
  font-size: 10px;
  margin-left: -16px;
  pointer-events: none;
  position: absolute;
}

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

.share-label + .share {
  background: #FFF;
  border: 1px solid #dddddd;
  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 #cccccc;
  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-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 #eeeeee;
  padding: 20px 0;
}
.search-results-list > *:first-child {
  border-top: 1px solid #eeeeee;
}

.search-result-link {
  font-size: 16px;
}

.search-result-description, .search-result-meta {
  padding-top: 16px;
}

.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-votes {
  background: #A8D119;
  border-radius: 2px;
  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: 5px 5px 0 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;
  -ms-transition: bottom .5s ease-in, color .5s ease-in;
  -o-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 {
  background: #f9f9f9;
  border-radius: 5px;
  padding: 25px 20px;
  width: 270px;
}

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

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

.recent-activity-item-parent {
  color: #12910E;
  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: #999999;
}

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

.recent-activity-item-comment {
  display: none;
}
.recent-activity-item-comment:before {
  display: inline-block;
  content: "\2022";
}
.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%;
  }
}



 /* ====================================================
               GENERAL CUSTOM STYLES 
   ==================================================== */

body {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  height: 100%;
  font-weight:normal;
  min-width:724px;
  color:#58585a;
  padding:0;
  background:url("/hc/theming_assets/01HZGZY44GDQ7PZ68SHGV522TC") repeat;
}


h1 {
  font-size:30px;
  line-height:40px;
 }
 
h2 {
  font-size:28px;
  line-height:32px;
 }
 
h4 {
  font-size:20px;
  line-height:30px;
 }
 
h1, h2, h3, h4, h5 {
  color:#212121;
  font-family: 'Inter', sans-serif;
}

h5 {
  font-weight: normal;
}

a, p {
  font-family:'Inter', sans-serif;
}

a {
  color: #333333;
  text-decoration: none !important;
  border-bottom:1px solid #8ec73f;
  padding: 1px 0;
  font-weight: bold;
}

a:hover {
  border-bottom-color:#17746b;
}

/* remove link styles from ... */

h2 a,
h3 a,
header #mainnav ul li a,
header #mainnav ul li a:hover,
.userguides-listinner ul a{
  border:none;
}


main {
  width:100%;
  max-width:1216px;
  padding:0 20px;
  border-radius:4px;
}

.header {
  border:none;
}

.header-inner, .footer-inner {
  width:100%;
  max-width:1216px;
  padding:0 20px;
}

 main p, 
 main a,  
 main form, 
 main input,  
 main button,  
 main textarea,  
 main span, 
 main  ul,  
 main li, 
 main  b, 
 main  td {
   font-family:Helvetica-neue;
   font-weight:normal;
   outline:none;
   
}

 main a {
   font-weight:bold;
 }

p {
  color:#58585a;
}

p a {
  text-decoration:underline;
  
}

a,a:active,a:visited{
  text-decoration:none;
}

a:hover{
  transition: all 0.5s ease 0s;
  text-decoration:none;
}

input, textarea {
  outline:none;
}

.category-description, .section-description {
  margin:10px 0;
}

.article-vote-up, 
.article-vote-down, 
.vote-controls a {
font-family: "entypo" !important;
}

/* my activities tables styling */

.my-activities-table {
  background:#fff;
}

table tbody tr:nth-child(2n+1) {
  background:#f3f3f3;
}

table tr, table th {
  border:#e6e6e6 1px solid;
}

.request-table-toolbar .nesty-input {
  text-align:left;
}

main button, 
main [role=button], 
.nav-bar [role=button],
main [type=button], 
main [type=submit],
main form button, 
main input[type=submit]
main .community-nav li:last-child a{
  background:#718492 !important;
  color:#fff !important;
  border-radius:3px !important;
  box-shadow:none !important;
  border:none !important;
  outline:none;
}

main button:hover, 
main [role=button]:hover, 
main [type=button]:hover, 
main [type=submit]:hover,
main .community-nav li:last-child a:hover,
main form button:hover, 
main input[type=submit]:hover {
  -webkit-transition:background 100ms linear;
  -moz-transition:background 100ms linear;
  transition:background 100ms linear;
  background:#6b93b0 !important;
  color:#fff;
  outline:none;
  border:none !important;
}


.articlepage .img-noborder {
  border:none;
}

.articlepage .img-floatright {
  float:right;
  margin:0 0 10px 10px;
}

.articlepage figure {
  border:1px solid #e1e1e1;
  padding:40px 40px 20px;
  background:#fff;
  text-align:center;
  margin:20px 0;
  display:inline-block;
  clear:both;
}

.articlepage figure img {
  display:inline-block;
  padding:5px;
  background:#fff;
  border:none;
}

.articlepage figcaption {
  margin-top:10px;
  clear:both;
}

.articlepage blockquote
{
  background:transparent !important;
  border:0 !important;
  font-size:14px;
  font-style:italic;
  font-weight:normal;
  color:#fff;
  padding:20px 30px 20px 0;
  text-indent:100px !important;
  line-height:18px;
  color:#000;
  font-family:Verdana, Geneva, sans-serif;
  position:relative;
}



.main-column {
  width:65%;
  min-height:300px;
  margin-right:5%;
   -moz-box-sizing:border-box;
  -o-box-sizing:border-box;
  -webkit-box-sizing:border-box;
  -ms-box-sizing:border-box;
  box-sizing:border-box;
  float:left;
}

.side-column {
  width:30%;
   -moz-box-sizing:border-box;
  -o-box-sizing:border-box;
  -webkit-box-sizing:border-box;
  -ms-box-sizing:border-box;
  box-sizing:border-box;
  margin:0;
}

/*-------- ALERT NOTICE -----------*/

.alert-notice {
  max-width:960px;
 -moz-box-sizing:border-box;
  -o-box-sizing:border-box;
  -webkit-box-sizing:border-box;
  -ms-box-sizing:border-box;
  padding:0 10px 0 45px;
  min-height:52px;
  background:#ffd9db;
  margin:0 auto;
  position:relative;
}

.alert-notice:before {
  font-family:;
    width:30px;
    height:30px;
    display:inline-block;
    font-size:30px;
    vertical-align: middle;
    content:"\e";
    position: absolute;
  top: 50%;
  margin-top: -22px;
  left: 20px;
  color:#9c0b0b;
}

.alert-notice p {
  overflow:hidden;
  color:#000;
  line-height:20px;
  padding:15px 20px;
  margin-bottom:0;
}

@media screen and (max-width:800px){
  .main-column, 
  .side-column,
  .search-results-column,
body.community-enabled .search-results-column{
    width:100%;
    margin:0;
  }
  
  .side-column{
    margin-top:20px;
  }
   .community-nav {
     min-height:110px;
   }
   
   .community-nav li {
     float:left;
   }
   
 .community-nav li:last-child {
   clear:both;
   float:left;
   top:20px;
  }
}

@media screen and (max-width:500px){
   .community-nav {
     min-height:220px;
   }
   
   .community-nav li{
   width:100%;
   clear:left;
   float:left;
   padding:10px 0;
  }
  
  .community-nav li + li {
   border:none;
   padding-left:0;
  }
  
  .article-vote,
  .share,
  .article-comments{
    float:left;
    clear:both;
    margin-top:20px;
  }


}





/*------------------------------------------------
        CUSTOM LOVESTOCK LEAF STYLES 123
-----------------------------------------------*/

/*---------- FONTS ------------*/
@font-face {
    font-family:Helvetica-neue;
    src: url('/hc/theming_assets/01HZGZXZ0HSZ3NW06M4WS97FDX');
    src: url('/hc/theming_assets/01HZGZXZ0HSZ3NW06M4WS97FDX?#iefix') format('embedded-opentype'),
       url('/hc/theming_assets/01HZGZY2MDEZV3500AK871RJGY') format('woff'),
       url('/hc/theming_assets/01HZGZXZ78Z9HM57PSGQ736HMM') format('truetype');
    font-weight:bold;
}  

@font-face {
    font-family:Helvetica-neue;
    src: url('/hc/theming_assets/01HZGZXZBE3EJXKA0M7BNWT78T');
    src: url('/hc/theming_assets/01HZGZXZBE3EJXKA0M7BNWT78T?#iefix') format('embedded-opentype'),
       url('/hc/theming_assets/01HZGZXZGMCR2GPG3E725FT9BC') format('woff'),
       url('/hc/theming_assets/01HZGZY2W0NTM2ZWJDBKWQPSAC') format('truetype');
    font-weight:lighter;
}    
  
@font-face {
    font-family:Helvetica-neue;
    src: url('/hc/theming_assets/01HZGZY2R12RPKVKGZWE7MKX2H');
    src: url('/hc/theming_assets/01HZGZY2R12RPKVKGZWE7MKX2H?#iefix') format('embedded-opentype'),
       url('/hc/theming_assets/01HZGZXZPZ0GMDQGXSRJFA7MYJ') format('woff'),
       url('/hc/theming_assets/01HZGZXZY4HAV59HF4WF7CBXW6') format('truetype');
    font-weight:normal;
} 

@font-face {
    font-family:icons;
    src: url('/hc/theming_assets/01HZGZY730VC85SNVVYK3Q3CWD');
    src: url('/hc/theming_assets/01HZGZY730VC85SNVVYK3Q3CWD?#iefix') format('embedded-opentype'),
       url('/hc/theming_assets/01HZGZY7CKV2NYKNQ2K8RMT7ND') format('woff'),
       url('/hc/theming_assets/01HZGZY77KFJNYNG20WB899N7G') format('truetype');
    font-weight:normal;
} 

/* icon smoothing */
.search:before,
.submit-a-request:before,
.login:before,
.close-modal:before,
button.is-undo:before,
.tickettab-cloud:before,
.tickettab-apps:before,
.tickettab-general:before,
fieldset.form-yourdetails h2.ll-group-title:before,
.\#request_anonymous_requester_email h2.ll-group-title:before,
fieldset.form-attachments h2.ll-group-title:before,
.tile[value=enquiry_type_request_for_quote]:before,
.tile[value=enquiry_type_support]:before,
.tile[value=enquiry_type_idea]:before,
.tile[value=enquiry_type_bug_report]:before,
.modal-general:before,
.modal-apps:before,
.modal-cloud:before,
.article-list a:before,
.recent-articles a:before,
.related-articles a:before,
.search-result-link:before {
  font-family:icons;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/*---------- HEADER & SEARCH ------------*/
.logo {
  display:block;
  float:left;
}

.logo img {
  margin:15px 0 10px;
}

/* from lovestockleaf.com */
.slideshow-divider {
padding: 7px 0px;
width: 100%;
height: 2px;
min-height: 2px;
background-color: #fff;
background-color:#fff;
background-repeat: repeat-x;
display: block;
background-position: center center;
}


header #mainnav {
float: right;
margin-top: 30px;
margin-right: -5px;
position: relative;
}


header #mainnav > ul {
  position:Relative;
  padding-right: 80px;
}

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

header #mainnav ul .active {
  border-width: 2px;
  -moz-border-radius: 0;
  border-style: solid;
  border-radius: 0;
  border-bottom-color: #f6921e;
  cursor: pointer;
}

header #mainnav ul li, 
.foxyshop_cart_link_widget li a {
  position: relative;
  list-style-type: none;
  border-color: transparent;
  display: inline-block;
  text-align: center;
}

header #mainnav ul li a {
  text-decoration: none;
  color: white;
  font-size: 10pt;
  line-height: 25px;
  font-weight:normal;
  padding: 0 5px;
  font-family:'Inter', sans-serif;
}

header #mainnav .homelink {
cursor: pointer;
width: 40px;
min-width: 40px;
display: block;
text-align: center;
}

header #mainnav .homelink-text {
}

header #mainnav ul .normal {
border-style: solid;
border-width: 2px;
-moz-border-radius: 0;
border-radius: 0;
}

header #mainnav ul .normal:hover{
    border-style: solid;
    border-width: 2px;
    -moz-border-radius: 0;
    border-radius: 0; 
    cursor: pointer;
    cursor: hand;   /* for older IE*/ 
    border-color: #F6921E #FFFFFF #FFFFFF #FFFFFF;
}

header #mainnav ul .active:hover{
    background-color: none; 
    border-style: solid;
    border-width: 2px;
    -moz-border-radius: 0;
    border-radius: 0; 
    cursor: pointer;
    cursor: hand;   /* for older IE*/ 
    border-color: #F6921E #FFFFFF #FFFFFF #FFFFFF;
}


header #mainnav ul li .subMenu {
inherit: none;
background-color: #a7c87c;
box-shadow: 0 2px 8px 1px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0px 2px 8px 1px #000 .5;
-webkit-box-shadow: 0px 2px 8px 1px #000 .5;
-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=5, Direction=135, Color='#000000')";
filter: progid:DXImageTransform.Microsoft.Shadow(Strength=5, Direction=135, Color='#000000');
display: none;
left: 0px;
position: absolute;
text-align: left;
top: 32px;
z-index: 1000;
width:248px;
}

header #cloudserviceMenuItem:hover .subMenu,
header #supportMenuItem:hover .subMenu {
    display: block;
}

header #supportMenuItem {
  margin-right: 30px;
}

header #mainnav ul li .subMenu .accent {
height: 15px;
margin-top: -15px;
}

header #mainnav ul li .subMenu ul {
background-color: #FFFFFF;
margin: 4px;
padding: 0;
}

header #mainnav ul li .subMenu li {
display: block;
text-align: left;
border-color: #fff;
list-style-type: none;
position: relative;
}


header #mainnav ul li .subMenu  li:hover {
    background-color: #F5F5F5;
    text-decoration: none;
    border: 0px;  
   
}

header #mainnav ul li .subMenu li a {
color: #8E8E8E;
display: block;
font-size: 0.8em;
margin: 0 5px;
padding: 8px 0 6px 70px;
text-transform: none;
width: 100%;
line-height: 25px;
}

header #mainnav ul li .subMenu li span.subMenuText {
color: #404040;
display: block;
font-size: 1.4em;
font-weight: bold;
line-height: 1;
margin: 0;
padding: 11px 0 3px 0;
}

.reg {
font-size: 0.6em;
vertical-align: super !important;
}

header #mainnav ul li .subMenu .subMenuCloudService a {
background: url('/hc/theming_assets/01HZGZXXB7ZBEJVNRRXST4R5WX') no-repeat scroll 7px 14px transparent;
}

header #mainnav ul li .subMenu .borderTop {
background: url('/hc/theming_assets/01HZGZXX0Y7W8C1EMJ16KCMZCK') 0px 0px repeat-x;
}

header #mainnav ul li .subMenu .subMenuZendesk a {
background: url('/hc/theming_assets/01HZGZXXK9YKH0XP81GNTXD6YG') no-repeat scroll 8px 14px transparent;
}

header #mainnav ul li .subMenu .subMenuYammer a {
background: url('/hc/theming_assets/01HZGZXX46EH6V3ZSDYV1FCNJE') no-repeat scroll 12px 14px transparent;
}

header #mainnav ul li .subMenu .subMenuAWS a {
background: url('/hc/theming_assets/01HZGZXX7THFWKZ5G3N1R1BNVG') no-repeat scroll 12px 14px transparent;
}

header #mainnav ul li .subMenu .subMenuPingIdentity a {
background: url('/hc/theming_assets/01HZGZXXF0AHT3XCVFDYG2381J') no-repeat scroll 12px 14px transparent;
}


header #mainnav ul li .subMenu .subMenuHelpCentre a,
header #mainnav ul li .subMenu .subMenuSupportContracts a,
header #mainnav ul li .subMenu .subMenuServicesEnquiry a{
    background: url("/hc/theming_assets/01HZGZY6RBT993CR8XSNYG4W3X") no-repeat scroll -20px -317px transparent;
}


header #mainnav ul li .subMenu .subMenuPhoneNumber {
padding:20px 30px 15px;
color: #404040;
display: block;
font-size: 13px;
font-weight: bold;
background: url("/hc/theming_assets/01HZGZXWS210JYQ73ERBWTKPQN") repeat;
border-top: 1px solid #ededed !important;
}

.subMenuPhoneNumbericon {
  background: url("/hc/theming_assets/01HZGZY6RBT993CR8XSNYG4W3X") no-repeat scroll -35px -240px transparent;
  width:30px;
  height:30px;
  display:block;
  float:left;
  margin-top:-4px
}

header #mainnav ul li .subMenu .subMenuPhoneNumber:hover {
  background-color:#fff !important;
  cursor:default;
  border-top: 1px solid #ededed !important;
}

header #mainnav > ul > li:last-child {
  position: absolute;
  top: 0;
  right:0;  
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

#cart-checkout .foxyshop_cart_link_widget li, 
#cart-checkout #foxyshop-cart-link-widget-2 {
  background: transparent;
    -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

header #mainnav #cart-checkout .foxycart {
  width: 25px;
  height: 30px;
  background: url("/hc/theming_assets/01HZGZY6RBT993CR8XSNYG4W3X") no-repeat -130px -36px;
  margin-right: 15px;
  display: block;
  padding-right: 25px !important;
  margin-top: -2px;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  padding-left: 13px;
}

header #cart-checkout #fc_quantity {
  background: #8ec73f;
  color: #FFF;
  padding: 2px;
  border-radius: 50px;
  position: absolute;
  top: 2px;
  right: 2px;
  line-height: 18px;
  min-width: 18px;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.foxyshop_cart_link_widget li a {
  border-style: solid;
  border-width: 2px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

#text-2 {
  display: none !important;
}

/* END LSL website styles */


#user-menu a {
  border-bottom:none;
}

.subheader {
  width:100%;
  background-color: #4c4c4c;
  padding:30px 0;
  -moz-background-size:cover;
  -webkit-background-size:cover;
  background-size:cover;
}


.subheader-inner {
  max-width: 1216px;
  padding: 0 20px;
  margin:0 auto;
  min-height:50px;
  position:relative;
}

.search {
  float:left;
  width:60%;
  position:relative;
}

.search:before {
color: #a9a9a9;
content: "\e602";
font-family:icons;
line-height: 0;
position: absolute;
text-align: center;
top: 50%;
z-index: 1;
font-size:30px;
}

.search input[type=submit] {
  display:none;
}

.search #query {
  width:50%;
  background:transparent;
  border:none;
  border-bottom:1px dashed #a9a9a9;
  font-size:24px;
  padding:0 5px 0 40px;
  border-radius:0;
  color:#fff;
  height:50px;
  width:100%;
  font-weight:lighter;
  letter-spacing:1px;
}

.subheader-inner #user {
  float:right;
  background: transparent;
  margin-left:10px;
  border-radius:5px;
}

.subheader-inner #user img {
  border-radius:50px;
}


#query::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #a9a9a9;
  font-weight:100;
  font-family:"museo";
  opacity: 1; /* Firefox */
}

#query:-ms-input-placeholder,
#query::-ms-input-placeholder {
  color: #ffb89e;
  font-weight:100;
  font-family:"museo";
}

.homepagesearch #query::placeholder !important,
.homepagesearch #query:-ms-input-placeholder !important,
.homepagesearch #query::-ms-input-placeholder !important {
    color: #bfbfbf;
}


#user #user-name {
  margin-top:2px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
}

.login {
  float: right;
  color: #fff !important;
  margin-top: 12px;
  letter-spacing:0.5px;
  padding-left:36px;
  position:relative;
  border:none;
}

.login:before {
  content:'\e601';
  color:#fff;
  font-size:20px;
  font-family:icons;
  position:absolute;
  top:3px;
  left:8px;
}


.submit-a-request:before {
  content:'\e600';
  color:#fff;
  font-size:20px;
  font-family:icons;
  position:absolute;
  top: 5px;
  left: 18px;
}

.login:hover {
color: #fff;
}

#user {
  margin-top:10px;
  font-family:Helvetica-neue;
  font-weight:lighter;
}
#user-name {
  color:#fff;
}

#user .btn {
  border:none;
  
}

a.submit-a-request {
  float: right;
  color: #fff;
  padding:5px 18px 5px 45px;
  font-weight:lighter;
  letter-spacing:0.5px;
  position:relative;
  background: #718492;
  border-radius:4px;
  margin-top:12px;
  margin-bottom:15px;
  border-bottom:none;
}

.login {
  border-radius:20px;
  margin-left:10px;
  background: #272727;
  border-bottom:none;
}

a.submit-a-request:hover,
.login:hover,
.subheader-inner #user:hover {
  background: #6b93b0;
  transition:all 1s;
}

/* --------------FOOTER -----------------*/
/* footer sticky */
html {
  min-height:100%;
}

.push {
  height:140px;
}

.wrapper {
  position: relative;
  min-height: 100%;
}



/* from lovestockleaf.com */
footer {
width: 100%;
position: relative;
clear:both;
  margin-top: auto;
}

footer #mainfooter {
width:100%;
padding: 0px 10px;
position: relative;
margin-top:30px;
margin:0 auto;
  background-color: black;
}

footer #mainfooter .footerBg {
width: 100%;
min-height: 150px;
height: 150px;
margin:0 auto;
}

footer #mainfooter .footerTxt {
position: absolute;
top: 0;
left: 0;
width: 100%;
  background-color: black;
}

footer #mainfooter .bodyFooter {
padding-top: 30px;
max-width:980px;
margin:0 auto;
  color: #ef6520;
}

.bodyContainer {
width:100%;
margin: auto;
color: #333333;
padding: 0px 10px;
}

footer #mainfooter .footerCol {
float: left;
padding-right: 100px;
}

footer #mainfooter .bodyFooter ul {
list-style-type: none;
padding-top: 0px;
margin-top: 0px;
padding-left: 0px;
font-size: 0.9em;
}

footer #mainfooter .bodyFooter li {
padding: 0px;
font-weight:bold;
font-family:'Inter', sans-serif;
line-height:22px;
}

footer #mainfooter .bodyFooter a {
  color: white;
  font-weight:normal;
  border-bottom-color: transparent;
}

footer #mainfooter .bodyFooter a:hover {
  text-decoration:none;
  border-bottom-color:#17746B;
}


footer #mainfooter .footerColRight {
float: right;
text-align: center;
margin-top: 10px;
}

img {
border: 0px;
}

.clr {
clear: both;
}


/*---------- HOME PAGE ------------*/

.homePage .subheader-inner .search {
  display:none;
}

.homePage .subheader {
  padding:5px 0;
  min-height:220px;
}

.homePage footer #mainfooter {
  background:black;
}

.homePage .homepage-header{
  display:block;
  clear: both;
  text-align: center;
}

.homepage-header {
  display:none;
}

.homepage-headerinner {
  width:100%;
  max-width:800px;
  margin:0 auto;
  clear:both;
  padding: 10px;
  /*
  background-color:rgba(000, 000, 000, 0.1);
  background: -moz-linear-gradient(top,  rgba(000,000,000,0.1) 0%, rgba(000,000,000,0) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#000000), color-stop(100%,#000000));
background: -webkit-linear-gradient(top,  rgba(000,000,000,0.1) 0%,rgba(000,000,000,0) 100%);
background: -o-linear-gradient(top,  rgba(000,000,000,0.1) 0%,rgba(000,000,000,0) 100%);
background: -ms-linear-gradient(top,  rgba(000,000,000,0.1) 0%,rgba(000,000,000,0) 100%);

background: linear-gradient(to bottom,  rgba(000,000,000,0.1) 0%,rgba(000,000,000,0) 100%);*/
  border-radius:36px;
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
  margin-top:30px;
}

.homePage .homepage-header h2 {
  color: #f2f2f2;
  clear: both;
  font-size:32px;
  padding:5px 0;
  letter-spacing: 1.0px;
  text-shadow:0 0 2px rgba(000, 000, 000, 0.2);
  margin:0;
  font-family:'Inter', sans-serif, 'museo';
  font-weight:800;
}

.homepage-headerinner p,
.homepage-headerinner a {
  color:#cdcdcd;
  font-size: 15px;
  font-weight: normal;
  font-family:Helvetica-neue;
}

.homepage-headerinner a {
  border-bottom-color:#cdcdcd;
}

.homepage-headerinner a:hover {
  color:#fff;
  border-bottom-color:#fff;
}

.homePage .subheader-inner .homepagesearch .search {
  display:block;
  width:100%;
  background: #fff;
  border-radius: 30px;
  border:4px solid #656565;
  background-clip: padding-box;
  margin-top:10px;
}

.homepagesearch .search #query {
  border:none;
  color:#467e47;
  padding-left:50px;
  font-weight:100;
}

.homepagesearch .search:before {
  color:#888888;
  left: 10px;
}

.homePage h2 {
  margin:50px 0;
}


body.homePage {

}

.homePage main {
  box-shadow:none;
}

.community h2, .community h3, .section h3 {
  color:#4c4c4e;
  padding: 20px 0 25px 83px;
}

.userguides-list {
  background:whitesmoke;
  width:100%;
  padding:10px 0;
  margin-bottom:30px;
  box-shadow: 0px 3px 16px 0px #d3d3d3;
}

.userguides-listinner {
  max-width: 1216px;
  padding: 0 20px;
  margin: 0 auto;
  min-height: 50px;
  position: relative;
  text-align:Center;
  width:100%;
}

.userguides-listinner h3 {
  font-size: 24px;
  line-height: 30px;
  padding:20px 0;
}

.userguides-listinner ul {
  width:100%;
  margin:0;
}

.userguides-listinner li {
  float:left;
  display:block;
  width:16.6666%;
  box-sizing:border-box;
}

.userguides-listinner li a {
  padding:30px 0 0;
  display:block;
  height:100%;
  background:#e0e2e4;
  box-shadow:0 2px 3px rgba(000, 000, 000, 0.1);
  border-radius:15px;
  margin-right:10px;
}

.userguides-listinner li img {
  max-width:100%;
}

.userguides-listinner li h5 {
  font-size:18px;
  padding-bottom: 12px;
}

.userguides-listinner .comingsoon {
  opacity:0.5;
  cursor:default;
}

.userguides-listinner > h5 {
  font-size:15px;
  margin:35px 0 25px;
}

.userguides-listinner > h5 a {
  margin-left:10px;
}

/*---------- SHARED ------------*/
.sub-nav {
  width:100%;
  background:#fff;
  padding:20px 0;
  box-shadow:0 0 1px rgba(000, 000, 000, 0.3);
}

.sub-nav-inner {
  max-width: 1216px;
  padding: 0 20px;
  margin: 0 auto;
  float:none;
  display:block;
}

.sub-nav-inner > a {
  float:left;
  margin-right:5px;
  color:#1F73B7;
  line-height:16px;
  border-bottom:none;
  font-weight:normal;
  font-size: 14px;
  margin-top: 1px;
}

.sub-nav ol {
  float:left;
}

.breadcrumbs li a {
  color:#1F73B7;
  border-bottom:none;
  font-weight:normal;
}

.breadcrumbs li a:hover,
.sub-nav-inner > a:hover {
  text-decoration:underline !important;
}

.breadcrumbs li + li:before{
content: "/";
}


.bread-homelink {
  margin-right:15px !important;
  position:relative;
}

.bread-homelink:after {
  content: "/";
  color:#bebebe;
  position:absolute;
  top:2px;
  right:-10px;
  font-weight:normal;
}

.zendeskapps-button,
a.zendeskapps-button {
  display: inline-block;
background-color: #91c84b;
text-shadow: none;
background: url("/hc/theming_assets/01HZGZY5KD9P4N2YJWZQPD03Z7") no-repeat;
border: 1px solid #146650;
margin-top: 20px;
border-radius: 10px;
padding: 13px 13px 13px 41px;
color: #146650;
text-decoration: none;
font-size: 15px;
background-position: 12px -27px;
background-size: 22px;
transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
font-family:'Inter', sans-serif;
  background-color: white;
}

.zendeskapps-button:hover {
    background-position: 12px 13px;
    color: #79a541;
    border-color: #79a541;
}

/* ---------Category page --------------*/
.section-empty a{
  cursor:default;
  border:none;
  color:#ccc;
  font-weight:normal;
}

.categoryPage main.clearfix {
  padding:20px 35px;
  background-color: #e4e4e4;
}

.sectionPage main.clearfix {
  padding:20px 35px;
  background-color: #fff;
}

main.clearfix {
  background-color: #fff;
}

.homePage main.clearfix {
  background-color: transparent;
}


.page-header + p {
  color:#212121;
}

.category h2 a, .section h3 a {
  font-family:'Inter', sans-serif;
  font-size:20px;
}


/* app images for category page */
section.section {
		padding-left: 40px;
    background-repeat: no-repeat;
    background-position: 20px 34px;
    background-size: 100px auto;
    /* margin-left: -20px; */
    box-shadow: 2px 2px 8px 2px #cccccc75;
    border-radius: 4px;
    margin-right: 30px;
    margin-bottom: 30px;
    background-color: white;
}
/* Quickie */
section.section-200421514 { background-image: url('/hc/theming_assets/01HZGZY2GHM3NGQNS5NN666PJQ'); }
/* Lovely Views */
section.section-200421504 { background-image: url('/hc/theming_assets/01HZGZY4A00R40P6NQJ0EMEWEM'); }
/* Tickler all */
section.section-200426630 { background-image: url('/hc/theming_assets/01HZGZY5CSPYT6FQN8WW6YSEDK'); }
/* Bubbly all */
section.section-200646130 { background-image: url('/hc/theming_assets/01HZGZYA8ME02G993SE1FSJ8WP'); }
/* Blower */
section.section-200426690 { background-image: url('/hc/theming_assets/01HZGZYADCK9C5PDK8AREB3Y5H'); }
/* Lovely all */
section.section-200824950 { background-image: url('/hc/theming_assets/01HZGZYCBBD6VFGDZRB6BMZXN7'); }
/* Fork all */
section.section-200426640 { background-image: url('/hc/theming_assets/01HZGZYC589WFFF10KMYC9HWPB'); }
/* Field Marshall */
section.section-200426650 { background-image: url('/hc/theming_assets/01HZGZYAYJJN27XPG9JE9KGZVY'); }


/* app images for section pages */
.sectionPage .page-header h1 {
  background-repeat: no-repeat;
  background-position: left 0;
  background-size: 100px auto;
  margin-left: -20px;
}
/* Quickie */
.section-200421514 .page-header h1 { padding: 10px 0 20px 100px; background-image: url('/hc/theming_assets/01HZGZY2GHM3NGQNS5NN666PJQ'); }
/* Lovely Views */
.section-200421504 .page-header h1 { padding: 10px 0 20px 100px; background-image: url('/hc/theming_assets/01HZGZY4A00R40P6NQJ0EMEWEM'); }
/* Tickler all */
.section-200426630 .page-header h1 { padding: 10px 0 20px 100px; background-image: url('/hc/theming_assets/01HZGZY5CSPYT6FQN8WW6YSEDK'); }
/* Bubbly all */
.section-200646130 .page-header h1 { padding: 10px 0 20px 100px; background-image: url('/hc/theming_assets/01HZGZYA8ME02G993SE1FSJ8WP'); }
/* Blower */
.section-200426690 .page-header h1 { padding: 10px 0 20px 100px; background-image: url('/hc/theming_assets/01HZGZYADCK9C5PDK8AREB3Y5H'); }
/* Lovely */
.section-200824950 .page-header h1 { padding: 10px 0 20px 100px; background-image: url('/hc/theming_assets/01HZGZYCBBD6VFGDZRB6BMZXN7'); }
/* Fork */
.section-200426640 .page-header h1 { padding: 10px 0 20px 100px; background-image: url('/hc/theming_assets/01HZGZYC589WFFF10KMYC9HWPB'); }
/* Field Marshall */
.section-200426650 .page-header h1 { padding: 10px 0 20px 100px; background-image: url('/hc/theming_assets/01HZGZYAYJJN27XPG9JE9KGZVY'); }


/*---------- ARTICLE PAGE ------------*/
main.articlePage {
  background:transparent;
  padding:0;
}

main.articlePage .main-column {
  margin-right:0;
  padding-right:5%;
  background:#fff;
  border-radius:4px 0 4px 4px;
  min-height:600px;
  width:70%;
}

main.articlePage .side-column {
  padding:30px;
  background:rgba(255, 255, 255, 0.5);
  border-radius:0 12px 12px 0;
  min-height:500px;
}
main.articlePage .article-body h3 {
    margin-top: 20px;
    margin-bottom: 5px;
    font-size: 16px;
}

.article-list a,
.recent-articles a,
.related-articles a,
.search-result-link {
  font-weight:normal;
  border:none !important;
  color:#1F73B7;
	font-size: 14px;
}

.article-list a {
  font-size: 15px !important;
}

.article-list a:hover,
.recent-articles a:hover,
.related-articles a:hover,
.search-result-link:hover {
  text-decoration:underline !important;
}

.article-list a:before,
.recent-articles a:before,
.related-articles a:before,
.search-result-link:before {
  position:absolute;
  top:2px;
  left:0;
  font-size:18px;
  color:#4c4c4e;
}

main.articlePage h2, 
main.articlePage h3 {
  margin-top:50px;
}

main.articlePage h3 {
  font-size:20px;
}

main.articlePage h4 {
  font-size: 15px;
  line-height: 22.5px;
  font-weight: bold;
  margin: 18px 0 -8px 0;
}

main.articlePage pre {
  background:#4f4f4f;
  border-radius:10px;
  padding:10px;
  display:block;
  color:#fff;
}

main.articlePage pre code {
  color:#fff;
  font-size:14px;
}

:not(pre) > code {
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 0 5px;
    margin: 0 2px;
}

main.articlePage img {
  /* border: 10px solid #f5f5f5;
  margin:30px 0;
  border-radius:10px;*/

	border: 1px solid #fff;
  border-radius: 3px;
  box-shadow: 0 0 5px rgba(0,0,0,.3);

  /* Give images the same margin as <p> tags. If the image is
  within a <p> tag, the next rule removes it's margin */
  margin: 13px 0; 
}
main.articlePage p > img {
  margin: 0 0; /* Remove margin if the image is within a <p> tag */
}
main.articlePage img.no-shadow {
  box-shadow: none !important;
}
.toc {
  padding-bottom: 30px;
  border-bottom: 1px dotted #ccc;
  margin-bottom: 40px;
}

.toc h5 {
  font-size:20px;
  color:#212121;
  margin-bottom:10px;
}


.toc li a {
  color:#58585a;
  font-size:15px;
  font-weight:bold;
  padding-left:0;
  display:inline-block;
  border-bottom:none;
}

.toc li a:hover {
  text-decoration:underline !important;
}

.toc li {
  margin-top:20px;
}

.toc li li, 
.toc li li li {
  margin-top:0;
}


.toc li ol {
  margin: 10px 0 20px 3px;
  border-left: 2px solid #17746B;
}

.toc li ol ol,
.toc li ol ol ol {
 border-left:none;
 margin:10px 0 0;
}

.toc li li a {
  font-size:13px;
  font-weight:normal;
  padding-left:15px;
  padding-bottom:0;
}

.toc li li li a {
  padding-left:30px;
  padding-bottom:0;
}

.article-header h1 {
  font-weight:normal;
  margin:0;
}

.article-header {
  border-bottom: 1px #eee solid;
  padding-bottom: 30px;
  margin-bottom:30px;
}

.visibility-internal {
  padding-right:10px;
}

.main-column {
  padding:35px;
}

.article-updated p{
  color:#666;
  font-style:italic;
  margin:0;
}

.article-body li {
  margin-bottom:10px;
}

.article-body p,
.article-body a,
.article-body li {
  font-size:15px;
}
.article-body p.toc-target {
	margin: 0;
  height: 1px;
}
.subtitle strong {
  font-family:arial;
}

h2.subtitle strong {
  font-size:30px;
}

h3.subtitle strong {
  font-size:20px;
}


/* responsive */
@media screen and (max-width:1250px){
  main.articlePage  {
    padding:0 20px;
  }
}

@media screen and (max-width:1150px){
  .ticket-forms-inner {
    padding:0 10px;
  }
  
  body .ticket-forms ul {
    width:655px;
  }
  
  body .requestformcont {
    border-radius:0 !important;
  }
}

@media screen and (max-width:1000px){
  body .ticket-forms ul {
    width:100%;
  }
}


@media screen and (max-width:900px){
  main.articlePage  {
    padding:0 20px;
  }
  
  main.articlePage .main-column {
    padding:35px;
    border-radius:20px 20px 0 0;
    min-height:0;
    width:100%;
  }

  main.articlePage .side-column {
    width:100%;
    border-radius:0 0 20px 20px;
    min-height:0;
  }
  
  .userguides-listinner li {
    width:33.333%;
    margin-bottom:10px;
  }
}

@media screen and (max-width:940px){
  header #mainnav {
    float:none;
    clear:both;
    margin:0 auto;
    width:100%;
  }
  
   header #mainnav > ul {
     width:620px;
     margin:0 auto 20px;
   }
   
   .logo {
     width:100%;
   }
   
   .logo a {
    width: 250px;
    margin: 0 auto 10px;
    float: none;
    display: block;
  }
  
  .logo a img {
    height:auto !important;
    
    }
}


@media screen and (max-width:450px){
  .userguides-listinner li {
    width:50%;
  }
}

@media screen and (max-width:320px){
  .userguides-listinner li {
    width:100%;
  }
}


/* expandiles/collapsibles */


 .collapsible {
        display: none;
        padding:10px 20px;
        border-bottom:3px solid #74d7ee;
        margin-bottom:30px;
    }
    
.collapsible.collapsible-fullwidth {
   padding:10px 0;
       
 }

    .truncate .truncate-readmore {
      width:100px !important;
      color:#266c7c;
      cursor: pointer;
    }
    .truncate .truncate-readmore:after {
      content:'read less';
      position:relative;
      padding-left:5px;
    }
    
   .truncate.truncated .truncate-readmore:after {
      content:'read more';
      position:absolute;
      top:0;
      left:100%;
      margin-left:-105px;
    }

    .truncated {
        width: 60%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding-right:100px;
        position:relative;
    }
    .collapsible-expander:hover {
      background:#68bcd1;
      color:#000;
      cursor:pointer;
    }
    
    .collapsible-expander {
      background:#000;
      padding:6px 10px 5px;
      float:right;
      margin-bottom:10px;
      position:relative;
     }
     
     .articlepage .article-body .collapsible-expander p {
       margin-bottom:0;
       color:#fff !important;
     }
     
     .articlepage .article-body .collapsible-expander:hover p,
     .articlepage .article-body .collapsible-expander:hover p:after {
     color:#000;
     }
     
    .collapsible-expander p:after {
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
     font-family: '';
    width:20px;
    height:20px;
    top:2px;
    right:8px;
/*      display:inline-block;*/
    font-size:28px;
    position:absolute;
    display:none;
     }
     
  .collapsible-expander:hover {
   -webkit-transition:background 100ms linear;
   -moz-transition:background 100ms linear;
   transition:background 100ms linear;
  }
     
   .collapsible-collapsed .collapsible-expand-text{
      display:block;
    }
    .collapsible-collapsed .collapsible-expand-text:after {
      content:'\e610';
    }
    
  .collapsible-collapse-text:after {
      content:'\e611';
    }
    .collapsible-expand-text{
      display:none;
    }
    
    .collapsible-collapse-text{
      display:block;
    }
    
    .collapsible-collapsed .collapsible-collapse-text{
      display:none;
    }

    [data-trigger="collapse"]{
        cursor: pointer;
        line-height:1.5em !important;
        margin-bottom:20px;
        padding:25px 60px 25px 80px !important;
        background:#000;
        position:relative;
        color:#fff;
    }
    
h3[data-trigger="collapse"] {
  color:#fff;
}
    
    [data-trigger="collapse"] strong {
      font-size: 40px;
     line-height: 40px;
     padding-top: 10px;
     display: inline-block;
     position: absolute;
     top: 50%;
     left: 20px;
     margin-top:-20px;
     padding:0;
    }
    

    [data-trigger="collapse"]:after{
        content: "\e610";
        color:#fff;
        height:40px;
        display:inline-block;
        width:40px;
        text-align:center;
        margin-right:10px;
        position:absolute;
        top:50%;
        margin-top:-25px;
        right:5px;
        font-size:50px;
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
         font-family:;
    }

    [data-trigger="collapse"].active:after{
        content: "\e611";
        color:#000;
    }
    
    
    [data-trigger="collapse"]:hover {
      background:#333;
    }
    
    
    [data-trigger="collapse"].active{
       background:#74d7ee;
       color:#000;
    }
    
    .articlepage [data-trigger="collapse"]:last-child {
      margin-bottom:50px !important;
    }
    

    
 .collapsible [data-trigger="collapse"]{
        cursor: pointer;
        border-bottom:none;
        line-height:40px !important;
        margin-bottom:0;
        padding:0;
        color:#266c7c;
        text-decoration:underline;
    }
    
 .collapsible  [data-trigger="collapse"]:before{
       display:none;
    }
  
  .collapsible  [data-trigger="collapse"]:after {
        content: "  [read more]";
        color:#266c7c;
        display:inline-block;
        text-align:left;
        text-decoration:underline;
  }
  
  .collapsible  [data-trigger="collapse"].active:after {
         content: "  [read less]";
  }

/* EXPANDABLE STYLES */
    .expandable .expandable-content {
        position: relative;
        display: none;
        width: 100%;
        background-color: #f5f5f5;
        padding: 25px;
        -moz-box-sizing:border-box;
       -o-box-sizing:border-box;
       -webkit-box-sizing:border-box;
       -ms-box-sizing:border-box;
       box-sizing:border-box;
       margin:10px 0;
       border:1px solid #e8e8e8;
    }

    .expandable-content .expandable-close{
        position: absolute;
        right: 7px;
        top: 3px;
        cursor:pointer;
        font-size:12px;
    }
    
    .expandable-content .expandable-close:hover {
    opacity:0.5;
    
    }

    .expandable .expandable-trigger {
        font-weight: bold;
        text-decoration: underline;
        cursor: pointer;
        position:relative;
        padding-right:15px;
    }
    
    .expandable .expandable-trigger:after {
      content: "?";
      position: absolute;
      top: -7px;
      right: 2px;
      padding:1px 3px;
     line-height: 10px;
      border-radius: 20px;
      border:1px solid #666;
      font-size: 11px;
    }
    
     .expandable-active .expandable-trigger:after {
        display:none;
      }


/* user guides */


/* Lovely Views */
.article-202161434 .article-header {
  background: url('/hc/theming_assets/01HZGZY4A00R40P6NQJ0EMEWEM') no-repeat left top;
}

/* Quickie */
.article-203257254 .article-header {
  background: url('/hc/theming_assets/01HZGZY2GHM3NGQNS5NN666PJQ') no-repeat left top;
}

/* Tickler FREE */
.article-203269754 .article-header {
  background: url('/hc/theming_assets/01HZGZY9SWKE93SA5ARDFBMWZW') no-repeat left top;
}

/* Tickler PRO */
.article-204251604 .article-header {
  background: url('/hc/theming_assets/01HZGZYBF4VMTY2FNAHTB4KBX0') no-repeat left top;
}

/* Bubbly FREE */
.article-203450770 .article-header {
  background: url('/hc/theming_assets/01HZGZYA4A1SZS458S4BKYNQS4') no-repeat left top;
}


/* Lovely */
.article-204622930 .article-header {
  background: url('/hc/theming_assets/01HZGZYCBBD6VFGDZRB6BMZXN7') no-repeat left top;
}
  
  /* Blower */
.article-203601684 .article-header,
.article-203593944 .article-header{
  background: url('/hc/theming_assets/01HZGZYADCK9C5PDK8AREB3Y5H') no-repeat left top;
}

/* Fork */
.article-204251864 .article-header {
  background: url('/hc/theming_assets/01HZGZYC589WFFF10KMYC9HWPB') no-repeat left top;
}


/* add to each article */
.article-202161434 .article-header,
.article-203257254 .article-header,
.article-203269754 .article-header,
.article-203450770 .article-header,
.article-203601684 .article-header,
.article-203593944 .article-header,
.article-204251604 .article-header,
.article-204622930 .article-header,
.article-204251864 .article-header{
  background-size: auto 100px !important;
  padding: 20px 0 50px 170px;
  margin-left: -30px;
}

/*---------- MISC ------------*/
.dropdown-menu [role=menuitem] {
  border-bottom: 1px solid #f5f5f5;
}

.dropdown-menu [role=menuitem]:last-child {
  border-bottom:none;
}

.error-page {
  margin-bottom:70px;
}

.my-activities-nav {
  margin:20px 0 50px;
}

.my-activities-table {
  margin-bottom:20px;
}

.myrequests {
min-height:100px;
padding:20px;

}

.search-result-description {
  padding-top:5px;
}

.search-result-meta,
.search-result-description {
  padding-left:25px;
}

.search-results-column {
  width:50%;
  margin-right:5%;
  float:left;
  -moz-box-sizing:border-box;
  -o-box-sizing:border-box;
  -webkit-box-sizing:border-box;
  -ms-box-sizing:border-box;
  box-sizing:border-box;
}

/*---------- REQUEST FORM ------------*/
textarea {
  height:140px;
}

.tickettab-general:before {
  content:'\e608';
  font-size:24px;
  position:absolute;
  left:50%;
  margin-left:-70px;
  top:20px;
  color:#58585a;
}

.tickettab-apps:before {
  content:'\e607';
  font-size:24px;
  position:absolute;
  left:50%;
  margin-left:-48px;
  top:20px;
  color:#58585a;
}

.tickettab-cloud:before {
  content:'\e606';
  font-size:24px;
  position:absolute;
  left:50%;
  margin-left:-78px;
  top:20px;
  color:#58585a;
}

/* icons for buttons */
.tile {
  position:relative;
}

.tile[value=enquiry_type_request_for_quote],
.tile[value=enquiry_type_support],
.tile[value=enquiry_type_idea],
.tile[value=enquiry_type_bug_report] {
  padding:55px 10px 15px;
}

.tile[value=enquiry_type_request_for_quote]:before,
.tile[value=enquiry_type_support]:before,
.tile[value=enquiry_type_idea]:before,
.tile[value=enquiry_type_bug_report]:before{
  font-size:45px;
  position:absolute;
  top:7px;
  left:50%;
  margin-left:-20px;
}


.tile[value=enquiry_type_request_for_quote]:before {
  content:"\e60e";
}

.tile[value=enquiry_type_support]:before {
  content:"\e60f";
}

.tile[value=enquiry_type_idea]:before {
  content:"\e60d";
}

.tile[value=enquiry_type_bug_report]:before {
  content:"\e60c";
}

/* logos for buttons */
.tile {
  position:relative;
}

.tile[value=service_platform_zendesk],
.tile[value=service_platform_yammer],
.tile[value=service_platform_amazon_web_services] {
   min-width:230px;
   text-indent: -99999px;
}

.tile[value=service_platform_zendesk]:before,
.tile[value=service_platform_yammer]:before,
.tile[value=service_platform_amazon_web_services]:before {
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:170px;
  margin-left:-85px;
  background:url("/hc/theming_assets/01HZGZY9084C9FH2X0QTYMSJWR") no-repeat;
  margin-top: -25px;
  height: 51px;
}


.tile[value=service_platform_zendesk]:before {
  background-position:1px -16px;
}

.is-selected.tile[value=service_platform_zendesk]:before {
  background-position:1px -100px;
}

.tile[value=service_platform_yammer]:before {
  background-position:-167px -18px;
}

.is-selected.tile[value=service_platform_yammer]:before {
  background-position:-167px -102px;
}

.tile[value=service_platform_amazon_web_services]:before {
  background-position:-330px -18px;
}

.is-selected.tile[value=service_platform_amazon_web_services]:before {
  background-position:-330px -102px;
}


.requestformcont {
  border-radius:10px 0 10px 10px !important;
  min-height:500px;
  position:relative;
  overflow:hidden;
  padding-top:20px;
}

.form {
  max-width:100%;
  width:100%;
  min-height:500px;
}

.requestfromheader {
  display:none !important;
}

.form footer input {
  font-size:15px;
}

.form [type=submit] {
  padding:20px 40px 15px 60px;
  display:block;
  margin:20px auto;
  width:200px;
  background:url("/hc/theming_assets/01HZGZY8NR91Z5741D415X48KA") no-repeat 45px center #8ec73f !important;
  background-size:25px auto !important;
  font-size: 16px;
}

.form [type=submit]:hover {
  background:url("/hc/theming_assets/01HZGZY8NR91Z5741D415X48KA") no-repeat 45px center #78af2c !important;
  background-size:25px auto !important;
}

.form textarea, 
.form input[type=text] {
  max-width:520px;
}


.form-field {
}

.form-field.required > label:after {
  color:#17746B;
}

div.form label,
h2.ll-group-title {
  clear: both;
  font-size:17px;
  font-weight:normal;
  margin-top:30px;
  padding:10px 0;
  font-family: 'Inter', sans-serif;
  color:#58585a;
}

div.checkbox-tile {
  float: left;
  width: 186px;
  margin: 2px !important;
  color: #fff;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

div.checkbox-tile input[type="checkbox"] {
  margin-top: 14px;
  margin-left: 10px;
  position: absolute;

  cursor: pointer;
}

div.checkbox-tile label {
  display: block;
  width: 100%;
  margin: 0 !important;
  padding: 10px 10px 10px 40px;
  cursor: pointer;
  background-color: #f5f5f5;
  color:#58585a;
  font-size: 16px;
  line-height: 1.4em;
  font-weight: normal;

  background-image: url("/hc/theming_assets/01HZGZY6BGXAT277X6ZYEZ0KJD");
  background-repeat: no-repeat;
  background-size:20px auto;
  background-position:11px 10px;
}

div.checkbox-tile input:checked + label {
  background-color:#8ec73f;
  background-image: url("/hc/theming_assets/01HZGZY8SXKSVV4MWE0A0YZ99D");
  color:#fff;
}

div.checkbox-tile input:checked + label:hover {
  background-color:#6da125 !important;
  color:#fff;
}

div.checkbox-tile input {
  display: none;
}

div.checkbox-tile:hover > label,
div.tiles button:hover{
  background-color:#ededed !important;
  -webkit-transition: background-color 100ms linear;
  -moz-transition: background-color 100ms linear;
  -o-transition: background-color 100ms linear;
  -ms-transition: background-color 100ms linear;
  transition: background-color 100ms linear;
}

.tiles {
  float:left;
  width:100%;
  margin-bottom:30px;
}

div.tiles button {
  display: block;
  float: left;
  width: 20%;
  background-color: #f5f5f5 !important;
  color:#58585a !important;
  padding:30px 10px;
  border: none;
  border-right:2px solid #fff !important;
  border-bottom:2px solid #fff !important;
  border-radius: 0;
  font-size: 15px;
  line-height: 1.4em;
  -moz-box-sizing:border-box;
  -webkit-box-sizing:border-box;
  box-sizing:border-box;
  min-width:230px;
}

div.tiles button:hover {
  border-right:2px solid #fff !important;
  border-bottom:2px solid #fff !important;
}



div.tiles button.is-selected {
  background:#8ec73f !important;
  outline:none;
  display:block;
  color:#fff !important;
}

div.tiles button.is-selected:hover {
   background:#6da125 !important;
}

.is-selected button {
  display:none;
}

div.tiles button.is-undo {
  background: transparent !important;
  width: auto;
  margin: 0 !important;
  display:block;
  outline:none;
  text-decoration:underline;
  color:#8ec73f !important;
  position:relative;
  padding:35px 10px;
}

button.is-undo:before {
  content:'\e603';
  font-size:26px;
  position:absolute;
  top:50%;
  margin-top:-13px;
  left:25px;
}

div.tiles button.is-undo:hover {
  opacity:0.7;
}

div.twocol-checkbox {
  display: inline-block;
  float: left;
  width: 48%;
}

div.twocol-checkbox label {
  display: inline;
}

div.oneline-checkbox label {
  display: inline-block;
}

div.no-label label {
  display: none !important;
}

div.request_description.no-label label {
  display:block !important;
}

.ticket-forms {
  overflow:hidden;
    background: url("/hc/theming_assets/01HZGZY44GDQ7PZ68SHGV522TC") repeat;
    padding:5px 0 0;
}

.ticket-forms-inner {
  width: 100%;
  max-width: 1216px;
  margin:0 auto;
}

.ticket-forms-inner > p {
  display:inline-block;
  font-size:20px;
  padding:2px 0 0 20px;
  line-height:20px;
}

.ticket-forms ul {
  width:70%;
  margin:0 auto;
  float:right;
  border-radius:10px 10px 0 0;
  box-shadow:0 0 5px rgba(000, 000, 000, 0.1);
  
}

.ticket-forms ul li {
  display: inline-block;
  width: 33.333%;
  margin: 0;
  -moz-box-sizing:border-box;
  -webkit-box-sizing:border-box;
  box-sizing:border-box;
  padding:0;
  float:left;
  background-color: rgba(255, 255, 255, 0.4);
}


.ticket-forms ul li:first-child,
.ticket-forms ul li:first-child a {
  border-radius:10px 0 0 0;
  border:none !important;
}

.ticket-forms ul li:last-child,
.ticket-forms ul li:last-child a {
  border-radius:0 10px 0 0;
  border:none !important;
}


div.ticket-forms ul li a {
  display: inline-block;
  width: 100%;
  font-size: 15px;
  line-height:45px;
  padding: 10px 30px 10px 60px;
  text-align: center;
  border-right:1px solid rgba(255, 255, 255, 0.7);
  border-left:1px solid rgba(255, 255, 255, 0.7);
  position:relative;
  border-bottom:none;
  color:#58585a;
}

.ticket-forms .ticket-forms-selected a {
  background:#fff !important;
  border-radius:10px 10px 0 0 !important;
  box-shadow: 0 0 2px rgba(000, 000, 000, 0.1);
}

div.ticket-forms ul li.ticket-forms-selected a {
  border-right:1px solid transparent;
  border-left:1px solid transparent;
}


div.ticket-forms ul li a:hover {
  text-decoration: none;
}

div.ticket-forms ul li a:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

.ll-group {
  border:none;
  clear:both;
}

fieldset {
  padding:0 0 20px;
}

fieldset.form-yourdetails,
.\#request_anonymous_requester_email,
fieldset.form-attachments {
  border:10px solid #f5f5f5;
  clear:both;
  float:left;
  width:100%;
  margin-top:30px;
  padding:20px;
  
}

fieldset.form-yourdetails h2.ll-group-title,
fieldset.form-attachments h2.ll-group-title,
.\#request_anonymous_requester_email h2.ll-group-title{
  margin:0;
  padding:0;
  font-size:22px;
  position:relative;
  padding-left:50px;
}

fieldset.form-yourdetails h2.ll-group-title:before,
.\#request_anonymous_requester_email h2.ll-group-title:before{
  content:'\e609';
  font-size:40px;
  color:#ccc;
  position:absolute;
  top:-3px;
  left:0;
}

fieldset.form-attachments h2.ll-group-title:before {
  content:'\e610';
  font-size:40px;
  color:#ccc;
  position:absolute;
  top:-3px;
  left:-2px;
}

.request_custom_fields_22795430 label {
  padding-top:30px !important;
}

.request_custom_fields_22795440 {
width:250px !important;
margin-top:25px !important;
clear:both;

}

.request_anonymous_requester_email {
  width:48% !important;
  float:left;
  -moz-box-sizing:border-box;
  -webkit-box-sizing:border-box;
  box-sizing:border-box;
}
.request_custom_fields_20780278,
.request_custom_fields_22806280 {
  width:50% !important;
  float:left;
  clear:none;
  -moz-box-sizing:border-box;
  -webkit-box-sizing:border-box;
  box-sizing:border-box;
  padding-right:30px;
  margin-top: 25px;
}
.request_custom_fields_7510736540943{
  width: 50% !important;
  margin-top: 0px !important;
  float: left;
  clear: left;
  padding-right:30px;
}

.request_custom_fields_7510736540943 label{
  margin-top: 0px; 
}

.request_custom_fields_7510736540943:after{
  content: '';
  clear: both;
  float: left;
  display: block;
  width: 100%;
  height: 50px;
}

.sf-description em {
  clear: both;
font-size: 15px !important;
font-weight: normal !important;
margin-top: 30px;
padding: 10px 0 0;
font-family: 'Inter', sans-serif;
color: #58585a !important;
display:block;
}


.request_custom_fields_22646224,
.form-attachment,
.form-screencast{
  width:33.3% !important;
  -moz-box-sizing:border-box;
  -webkit-box-sizing:border-box;
  box-sizing:border-box;
  margin-top:30px !important;
  float:left !important;
  clear:both;
}

.request_description {
   width:66.6% !important;
  -moz-box-sizing:border-box;
  -webkit-box-sizing:border-box;
  box-sizing:border-box;
  margin-top:30px !important;
  float:left !important;
  clear:both;
}

#request_description {
  max-width:100% !important;
}

.request_description {
   margin-top:18px !important;
}

.form-attachment,
.form-screencast {
  clear:none !important;
  margin-top:19px !important;
  padding-left:20px;
}

.form-attachment {
  margin-bottom:0 !important;
}

.upload-dropzone {
  padding:45px 0;
  border-color:#ddd;
}

#request-screencasts {
  padding: 39px 10px;
  display: block;
  background:#f5f5f5;
  text-align: center;
  color: #58585a !important;
  border-bottom:none;
}

#request-screencasts:hover {
  background:#ededed;
}

.form footer {
  border:none !important;
}

/* stack forms when selected 123*/
.group-selected label {
  float:left;
  padding-right:20px !important;
  margin:0 !important;
  min-width:300px;
}

.group-selected div.is-selected {
  float:left;
  width:auto;
}

.group-selected .tile {
  padding:18px;
}

.group-selected .tile[value=enquiry_type_request_for_quote],
.group-selected .tile[value=enquiry_type_support], 
.group-selected .tile[value=enquiry_type_idea], 
.group-selected .tile[value=enquiry_type_bug_report] {
  padding:18px 15px 16px 60px;
}

.group-selected .tile[value=enquiry_type_request_for_quote]:before, 
.group-selected .tile[value=enquiry_type_support]:before, .group-selected .tile[value=enquiry_type_idea]:before, .group-selected .tile[value=enquiry_type_bug_report]:before {
  position:absolute;
  left:7px;
  margin:0;
  top:4px;
}

.group-selected div.tiles button.is-undo {
  padding:17px 10px 15px;
}


/* hide strange appearing box...*/
.app-view {}

/* modal */


div.modal-container {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0%;
    left: 0%;
    z-index: 100;
    background: rgba(0, 0, 0, 0.8);
}

div.modal-container div.modal-window {
    position:absolute;
    top: 50%;
    margin: 0 auto;
    padding: 50px;
    left:50%;
    margin-left:-300px;
    border-radius: 10px;
    background: #fff;
    z-index:130;
}

div.modal-window.ticket-form {
    width: 600px;
    height: 400px;
    margin-top: -200px !important;
    position:relative;
    text-align:center;
}

div.modal-window.ticket-form h2 {
  margin: 10px 0 40px;
  padding: 0;
}
div.modal-window.ticket-form ul{
  text-align: center;
}
div.modal-window.ticket-form ul li {
  width:33.33%;
  display: inline-block;
  margin: auto 20px;
  padding:10px 5px;
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
}

div.modal-window.ticket-form ul li a {
  background:#f5f5f5;
  padding: 35px 0 35px;
  display: block;
  border-radius: 150px;
  font-size:14px;
  border:1px solid #f5f5f5;
  color:#58585a;
}

div.modal-window.ticket-form ul li a:hover {
  background:#fff;
  border:1px solid #eee;
}


.modal-general:before,
.modal-apps:before,
.modal-cloud:before {
  display:block;
  font-size:50px;
  margin-bottom:10px;
}

.modal-general:before {
  content:'\e608';
}

.modal-apps:before {
  content:'\e607';
}

.modal-cloud:before {
  content:'\e606';
}

.close-modal {
  position:absolute;
  top:3px;
  right:0;
  border:none;
  background:transparent;
}

.close-modal:hover {
  opacity:0.7;
}

.close-modal:before {
  content:'\e60a';
  font-size:26px;
  color:#212121;
}

/* loading icon */

.modal-loader {
  position:absolute;
  top:50%;
  left:50%;
  margin:-110px 0 0 -40px;
  z-index:120;
}

.loader {
  margin: 6em auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 0.5em solid rgba(255, 255, 255, 0.2);
  border-right: 0.5em solid rgba(255, 255, 255, 0.2);
  border-bottom: 0.5em solid rgba(255, 255, 255, 0.2);
  border-left: 0.5em solid #ffffff;
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
.loader,
.loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* request form loader - tabs */
.requesttab-loader {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0%;
    left: 0%;
    z-index: 100;
    background: rgba(0, 0, 0, 0.8);
}


.requestform-loader {
  position:absolute;
  top:50px;
  left:50%;
  margin-left:-40px;

}

.requestform-loader .loader {
  border-top: 0.5em solid rgba(0, 153,65, 0.2);
  border-right: 0.5em solid rgba(0, 153,65, 0.2);
  border-bottom: 0.5em solid rgba(0, 153,65, 0.2);
  border-left: 0.5em solid #009941;
  width:4em;
  height:4em;
}

.requesttab-loader-inner {
  position:absolute;
  top:50%;
  left:50%;
  margin:-110px 0 0 -40px;
}

.loader-logo {
  width: 50px;
  height: auto;
  position: absolute;
  top: 83px;
  left: 25px;
  opacity: 0.8;
}

/* ========= */

.nav-container {
    z-index: 1000;
    width: 90%;
    max-width: 1160px;
    justify-content: space-between;
    align-items: center;
    margin-left: 0;
    margin-right: auto;
    display: flex;
    position: relative;
}

.brand-wrapper {
    width: 100%;
    max-width: 165px;
}

.w-nav-brand {
    float: left;
    color: #333;
    text-decoration: none;
    position: relative;
    border-bottom-style: none;
}

.brand-image {
    width: 100%;
    opacity: .84;
}

.nav-menu {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    justify-content: space-between;
    display: flex;
  	color: #dadada;
}

.w-nav-menu {
    float: right;
    position: relative;
}

.nav-links-contain {
    width: 100%;
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    justify-content: space-between;
    padding-top: 0;
    display: flex;
}

.nav-link.w--current {
    color: #dadada;
    padding-top: 10px;
    padding-bottom: 10px;
}

.nav-link {
    color: #dadada;
    padding: 10px 0;
    font-weight: 500;
    transition: color .3s ease-in-out;
  	border-bottom-style: none;
  	font-size: 16px;
}

.w-nav-link {
    vertical-align: top;
    color: #dadada;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    padding: 18px 20px;
    text-decoration: none;
    display: inline-block;
    position: relative;
}

.nav-button-container {
    align-items: center;
    display: flex;
}

.link-block-14 {
    color: #dadada;
    border: 1px solid #4b4b4b;
    border-radius: 4px;
    padding: 7px 20px 7px 25px;
    font-weight: 600;
    transition: border-color .3s, color .5s;
    display: block;
}

.text-block-26 {
    font-weight: 500;
    line-height: 156%;
  	font-size: 16px;
}

.w-inline-block {
    max-width: 100%;
    display: inline-block;
}

.helpCenterFooter iframe{
  display: block;
}

.dropdown-toggle::after {
	color: #fff !important;
}