@charset "UTF-8";
/***** Base *****/
* {
  box-sizing: border-box;
}

body {
  background-color: #FFFFFF;
  color: #333333;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

@media (min-width: 1024px) {
  body > main {
    min-height: 65vh;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-weight: 400;
  margin-top: 0;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 22px;
}

h3 {
  font-size: 18px;
  font-weight: 600;
}

h4 {
  font-size: 16px;
}

a {
  color: rgba(13, 20, 27, 1);
  text-decoration: none;
}

a:hover, a:active, a:focus {
  text-decoration: underline;
}

input,
textarea {
  color: #000;
  font-size: 14px;
}

input {
  font-weight: 300;
  max-width: 100%;
  box-sizing: border-box;
  outline: none;
  transition: border .12s ease-in-out;
}

input:focus {
  border: 1px solid #0072EF;
}

input[disabled] {
  background-color: #ddd;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url(/hc/theming_assets/01HZPNKD6R9WFWZ19NRKKP6R4F) no-repeat #fff;
  background-position: right 10px center;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px 30px 8px 10px;
  outline: none;
  color: #555;
  width: 100%;
}

select:focus {
  border: 1px solid #0072EF;
}

select::-ms-expand {
  display: none;
}

textarea {
  border: 1px solid #ddd;
  border-radius: 2px;
  resize: vertical;
  width: 100%;
  outline: none;
  padding: 10px;
}

textarea:focus {
  border: 1px solid #0072EF;
}

.container {
  /* max-width: 1160px; */
  margin: 0 auto;
  padding: 0 5%;
}

@media (min-width: 1160px) {
  .container {
    padding: 0;
    width: 90%;
  }
}

.container-divider {
  /* border-top: 1px solid #ddd; */
  margin-bottom: 20px;
}

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

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

@media (min-width: 1160px) {
  .error-page {
    padding: 0;
    width: 90%;
  }
}

.dropdown-toggle {
  background: none;
  border: 0;
  padding: 0;
  text-align: initial;
}

.dropdown-toggle:focus {
  outline: 0;
  text-decoration: underline;
}

.dropdown-toggle::after {
  color: inherit;
}

/***** Buttons *****/
.button, [role="button"] {
  border: 1px solid #0072EF;
  border-radius: 4px;
  color: #0072EF;
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  line-height: 2.34;
  margin: 0;
  padding: 0 20px;
  text-align: center;
  transition: background-color .12s ease-in-out, border-color .12s ease-in-out, color .15s ease-in-out;
  user-select: none;
  white-space: nowrap;
  width: 100%;
  -webkit-touch-callout: none;
}

@media (min-width: 768px) {
  .button, [role="button"] {
    width: auto;
  }
}

.button::after, [role="button"]::after {
  color: #0072EF;
}

.button:hover, .button:active, .button:focus, .button[aria-selected="true"], [role="button"]:hover, [role="button"]:active, [role="button"]:focus, [role="button"][aria-selected="true"] {
  background-color: #0072EF;
  color: #FFFFFF;
  text-decoration: none;
}

.button[aria-selected="true"]:hover, .button[aria-selected="true"]:focus, .button[aria-selected="true"]:active, [role="button"][aria-selected="true"]:hover, [role="button"][aria-selected="true"]:focus, [role="button"][aria-selected="true"]:active {
  background-color: #004189;
  border-color: #004189;
}

.button[data-disabled], [role="button"][data-disabled] {
  cursor: default;
}

.button-large, input[type="submit"] {
  background-color: #0072EF;
  border: 0;
  border-radius: 4px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 2.72;
  min-width: 190px;
  padding: 0 1.9286em;
  width: 100%;
}

@media (min-width: 768px) {
  .button-large, input[type="submit"] {
    width: auto;
  }
}

.button-large:hover, .button-large:active, .button-large:focus, input[type="submit"]:hover, input[type="submit"]:active, input[type="submit"]:focus {
  background-color: #004189;
}

.button-large[disabled], input[type="submit"][disabled] {
  background-color: #ddd;
}

.button-secondary {
  color: #666;
  border: 1px solid #ddd;
  background-color: transparent;
}

.button-secondary:hover, .button-secondary:focus, .button-secondary:active {
  color: #333333;
  border: 1px solid #ddd;
  background-color: #f7f7f7;
}

/***** Tables *****/
.table {
  width: 100%;
  table-layout: fixed;
}

@media (min-width: 768px) {
  .table {
    table-layout: auto;
  }
}

.table th,
.table th a {
  color: #666;
  font-size: 13px;
  font-weight: 300;
  text-align: left;
}

[dir="rtl"] .table th, [dir="rtl"]
.table th a {
  text-align: right;
}

.table tr {
  border-bottom: 1px solid #ddd;
  display: block;
  padding: 20px 0;
}

@media (min-width: 768px) {
  .table tr {
    display: table-row;
  }
}

.table td {
  display: block;
}

@media (min-width: 768px) {
  .table td {
    display: table-cell;
  }
}

@media (min-width: 1024px) {
  .table td, .table th {
    padding: 20px 30px;
  }
}

@media (min-width: 768px) {
  .table td, .table th {
    padding: 10px 20px;
    height: 60px;
  }
}

/***** Forms *****/
.form {
  max-width: 650px;
  padding-bottom: 75px;
}

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

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

.form-field input {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px;
  width: 100%;
}

.form-field input:focus {
  border: 1px solid #0072EF;
}

.form-field input[type="text"] {
  border: 1px solid #ddd;
  border-radius: 4px;
}

.form-field input[type="text"]:focus {
  border: 1px solid #0072EF;
}

.form-field input[type="checkbox"] {
  width: auto;
}

.form-field .nesty-input {
  border-radius: 4px;
  /* height: 40px;
  line-height: 40px; */
  outline: none;
  vertical-align: middle;
}

.form-field .nesty-input:focus {
  border: 1px solid #0072EF;
  text-decoration: none;
}

.form-field .hc-multiselect-toggle:focus {
  outline: none;
  border: 1px solid #0072EF;
  text-decoration: none;
}

.form-field textarea {
  vertical-align: middle;
}

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

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

.form-field .optional {
  color: #666;
  margin-left: 4px;
}

.form-field p {
  color: #666;
  font-size: 12px;
  margin: 5px 0;
}

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

.form footer {
  padding-top: 30px;
}

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

.form .suggestion-list {
  font-size: 13px;
  margin-top: 30px;
}

.form .suggestion-list label {
  border-bottom: 1px solid #ddd;
  display: block;
  padding-bottom: 5px;
}

.form .suggestion-list li {
  padding: 10px 0;
}

.form .suggestion-list li a:visited {
  color: #000;
}

/***** Header *****/
.header {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  align-items: center;
  display: flex;
  height: 71px;
  justify-content: space-between;
}

@media (min-width: 1160px) {
  .header {
    padding: 0;
    width: 90%;
  }
}

.logo img {
  max-height: 37px;
}

.user-nav {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .user-nav {
    position: relative;
  }
}

.user-nav[aria-expanded="true"] {
  background-color: #fff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15), 0 4px 10px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #ddd;
  right: 0;
  left: 0;
  top: 71px;
  z-index: 1;
}

.user-nav[aria-expanded="true"] > a {
  display: block;
  margin: 20px;
}

.nav-wrapper a {
  border: 0;
  color: rgba(13, 20, 27, 1);
  display: none;
  font-size: 14px;
  padding: 0 20px 0 0;
  width: auto;
}

@media (min-width: 768px) {
  .nav-wrapper a {
    display: inline-block;
  }
}

[dir="rtl"] .nav-wrapper a {
  padding: 0 0 0 20px;
}

.nav-wrapper a:hover, .nav-wrapper a:focus, .nav-wrapper a:active {
  background-color: transparent;
  color: rgba(13, 20, 27, 1);
  text-decoration: underline;
}

.nav-wrapper a.login {
  display: inline-block;
}

.nav-wrapper .icon-menu {
  border: 0;
  color: rgba(13, 20, 27, 1);
  cursor: pointer;
  display: inline-block;
  margin-right: 10px;
  padding: 0;
  width: auto;
}

@media (min-width: 768px) {
  .nav-wrapper .icon-menu {
    display: none;
  }
}

[dir="rtl"] .nav-wrapper .icon-menu {
  margin-left: 10px;
  margin-right: 0;
}

.nav-wrapper .icon-menu:hover, .nav-wrapper .icon-menu:focus, .nav-wrapper .icon-menu:active {
  background-color: transparent;
  color: rgba(13, 20, 27, 1);
}

/***** User info in header *****/
.user-info {
  display: inline-block;
}

.user-info .dropdown-toggle::after {
  display: none;
}

@media (min-width: 768px) {
  .user-info .dropdown-toggle::after {
    display: inline-block;
  }
}

.user-info > [role="button"] {
  border: 0;
  color: rgba(13, 20, 27, 1);
  min-width: 0;
  padding: 0;
  white-space: nowrap;
}

.user-info > [role="button"]:hover, .user-info > [role="button"]:focus {
  color: rgba(13, 20, 27, 1);
  background-color: transparent;
}

.user-info > [role="button"]::after {
  color: rgba(13, 20, 27, 1);
  padding-right: 15px;
}

[dir="rtl"] .user-info > [role="button"]::after {
  padding-left: 15px;
  padding-right: 0;
}

#user #user-name {
  display: none;
  font-size: 14px;
}

@media (min-width: 768px) {
  #user #user-name {
    display: inline-block;
  }
}

#user #user-name:hover {
  text-decoration: underline;
}

/***** User avatar *****/
.user-avatar {
  height: 25px;
  width: 25px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
}

.avatar {
  display: inline-block;
  position: relative;
}

.avatar img {
  height: 40px;
  width: 40px;
}

.avatar .icon-agent::before {
  background-color: #0072EF;
  border: 2px solid #fff;
  border-radius: 50%;
  bottom: -4px;
  color: #FFFFFF;
  content: "\1F464";
  font-size: 14px;
  height: 14px;
  line-height: 14px;
  position: absolute;
  right: -2px;
  text-align: center;
  width: 14px;
}

/***** Footer *****/
.footer {
  border-top: 1px solid #ddd;
  margin-top: 60px;
  padding: 30px 0;
}

.footer a {
  color: #666;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
}

@media (min-width: 1160px) {
  .footer-inner {
    padding: 0;
    width: 90%;
  }
}

.footer-language-selector {
  color: #666;
  display: inline-block;
  font-weight: 300;
}

/***** Breadcrumbs *****/
.breadcrumbs {
  margin: 0 0 15px 0;
  padding: 0;
}

@media (min-width: 768px) {
  .breadcrumbs {
    margin: 0;
  }
}

.breadcrumbs li {
  color: #666;
  display: inline;
  font-weight: 300;
  font-size: 13px;
  max-width: 450px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.breadcrumbs li + li::before {
  content: ">";
  margin: 0 4px;
}

.breadcrumbs li a:visited {
  color: rgba(13, 20, 27, 1);
}

/***** Search field *****/
.search {
  position: relative;
}

.search input[type="search"] {
  border: 1px solid #ddd;
  border-radius: 30px;
  box-sizing: border-box;
  color: #999;
  height: 40px;
  padding-left: 40px;
  padding-right: 20px;
  -webkit-appearance: none;
  width: 100%;
}

[dir="rtl"] .search input[type="search"] {
  padding-right: 40px;
  padding-left: 20px;
}

.search input[type="search"]:focus {
  border: 1px solid #0072EF;
  color: #555;
}

.search::before {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  color: #777;
  content: "\1F50D";
  font-size: 18px;
  position: absolute;
  left: 15px;
}

[dir="rtl"] .search::before {
  right: 15px;
  left: auto;
}

.search-full input[type="search"] {
  border: 1px solid #fff;
}

/***** Hero component *****/
.hero {
  background-image: url(/hc/theming_assets/01HZPNKH0CXBXHH0F96YTRE0N7);
  background-position: center;
  background-size: cover;
  height: 300px;
  padding: 0 20px;
  text-align: center;
  width: 100%;
}

.hero-inner {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  max-width: 610px;
  margin: 0 auto;
}

.page-header {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 10px 0;
}

@media (min-width: 768px) {
  .page-header {
    align-items: baseline;
    flex-direction: row;
    margin: 0;
  }
}

.page-header .section-subscribe {
  flex-shrink: 0;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .page-header .section-subscribe {
    margin-bottom: 0;
  }
}

.page-header h1 {
  flex-grow: 1;
  margin-bottom: 10px;
}

.page-header-description {
  font-style: italic;
  font-weight: 300;
  margin: 0 0 30px 0;
  word-break: break-word;
}

@media (min-width: 1024px) {
  .page-header-description {
    flex-basis: 100%;
  }
}

.page-header .icon-lock::before {
  content: "\1F512";
  font-size: 20px;
  position: relative;
  left: -5px;
  vertical-align: baseline;
}

.sub-nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 30px;
  min-height: 50px;
  padding-bottom: 15px;
}

@media (min-width: 768px) {
  .sub-nav {
    align-items: baseline;
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .sub-nav input[type="search"] {
    min-width: 300px;
  }
}

.sub-nav input[type="search"]::after {
  font-size: 15px;
}

/***** Blocks *****/
/* Used in Homepage#categories and Community#topics */
.blocks-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
}

@media (min-width: 768px) {
  .blocks-list {
    margin: 0 -15px;
  }
}

.blocks-item {
  border: 1px solid #0072EF;
  border-radius: 4px;
  box-sizing: border-box;
  color: #0072EF;
  display: flex;
  flex: 1 0 340px;
  flex-direction: column;
  justify-content: center;
  margin: 0 0 30px;
  max-width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .blocks-item {
    margin: 0 15px 30px;
  }
}

.blocks-item:hover, .blocks-item:focus, .blocks-item:active {
  background-color: #0072EF;
}

.blocks-item:hover *, .blocks-item:focus *, .blocks-item:active * {
  color: #FFFFFF;
  text-decoration: none;
}

.blocks-item-internal {
  background-color: transparent;
  border: 1px solid #ddd;
}

.blocks-item-internal .icon-lock::before {
  content: "\1F512";
  font-size: 15px;
  bottom: 5px;
  position: relative;
}

.blocks-item-internal a {
  color: #333333;
}

.blocks-item-link {
  color: #0072EF;
  padding: 20px 30px;
}

.blocks-item-link:hover, .blocks-item-link:focus, .blocks-item-link:active {
  text-decoration: none;
}

.blocks-item-title {
  margin-bottom: 0;
}

.blocks-item-description {
  font-weight: 300;
  margin: 0;
}

.blocks-item-description:not(:empty) {
  margin-top: 10px;
}

/***** Homepage *****/
.section {
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .section {
    margin-bottom: 60px;
  }
}

.section h2 {
  margin-bottom: 10px;
  text-align: center;
}

/***** Promoted articles *****/
.promoted-articles {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

@media (min-width: 1024px) {
  .promoted-articles {
    flex-direction: row;
  }
}

.promoted-articles-item {
  flex: 1 0 auto;
}

@media (min-width: 1024px) {
  .promoted-articles-item {
    align-self: flex-end;
    flex: 0 0 auto;
    padding-right: 30px;
    width: 33%;
    /* Three columns on desktop */
  }
  [dir="rtl"] .promoted-articles-item {
    padding: 0 0 0 30px;
  }
}

.promoted-articles-item:nth-child(3n) {
  padding-right: 0;
}

.promoted-articles-item a {
  display: block;
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
  color: #333333;
}

.promoted-articles-item .icon-lock::before {
  vertical-align: baseline;
}

.promoted-articles-item:last-child a {
  border: 0;
}

@media (min-width: 1024px) {
  .promoted-articles-item:last-child a {
    border-bottom: 1px solid #ddd;
  }
}

/***** Community section in homepage *****/
.community {
  text-align: center;
}

.community-image {
  min-height: 300px;
  background-image: url(/hc/theming_assets/01HZPNKHFXBCV9XGH988H6GS4T);
  background-position: center;
  background-repeat: no-repeat;
  max-width: 100%;
}

.community,
.activity {
  border-top: 1px solid #ddd;
  padding: 30px 0;
}

/***** Recent activity *****/
.recent-activity-header {
  margin-bottom: 10px;
  text-align: center;
}

.recent-activity-list {
  padding: 0;
}

.recent-activity-item {
  border-bottom: 1px solid #ddd;
  overflow: auto;
  padding: 20px 0;
}

.recent-activity-item-parent {
  font-size: 16px;
}

.recent-activity-item-parent, .recent-activity-item-link {
  margin: 6px 0;
  color: #333333;
  display: inline-block;
  width: 100%;
}

@media (min-width: 768px) {
  .recent-activity-item-parent, .recent-activity-item-link {
    width: 70%;
    margin: 0;
  }
}

.recent-activity-item-link {
  font-size: 14px;
  font-weight: 300;
}

.recent-activity-item-meta {
  margin: 15px 0 0 0;
  float: none;
}

@media (min-width: 768px) {
  .recent-activity-item-meta {
    margin: 0;
    float: right;
  }
  [dir="rtl"] .recent-activity-item-meta {
    float: left;
  }
}

.recent-activity-item-time, .recent-activity-item-comment {
  color: #666;
  display: inline-block;
  font-size: 13px;
  font-weight: 300;
}

.recent-activity-item-comment {
  padding-left: 5px;
}

[dir="rtl"] .recent-activity-item-comment {
  padding: 0 5px 0 0;
}

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

.recent-activity-item-comment span::before {
  color: #0072EF;
  content: "\1F4AC";
  display: inline-block;
  font-size: 15px;
  padding-right: 3px;
  vertical-align: middle;
}

[dir="rtl"] .recent-activity-item-comment span::before {
  padding-left: 3px;
}

.recent-activity-controls {
  padding-top: 15px;
}

/***** Category pages *****/
.category-container {
  display: flex;
  justify-content: flex-end;
}

.category-content {
  flex: 1;
}

@media (min-width: 1024px) {
  .category-content {
    flex: 0 0 80%;
  }
}

.section-tree {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .section-tree {
    flex-direction: row;
  }
}

.section-tree .section {
  flex: initial;
}

@media (min-width: 768px) {
  .section-tree .section {
    flex: 0 0 45%;
    /* Two columns for tablet and desktop. Leaving 5% separation between columns */
  }
}

.section-tree-title {
  margin-bottom: 0;
}

.section-tree-title a {
  color: #333333;
}

.section-tree .see-all-articles {
  display: block;
  padding: 15px 0;
}

.article-list-item {
  font-size: 16px;
  padding: 15px 0;
}

.article-list-item a {
  color: #333333;
}

.article-list-item .icon-lock::before {
  vertical-align: baseline;
}

.icon-star::before {
  color: #0072EF;
  font-size: 18px;
}

/***** Section pages *****/
.section-container {
  display: flex;
  justify-content: flex-end;
}

.section-content {
  flex: 1;
}

@media (min-width: 1024px) {
  .section-content {
    flex: 0 0 80%;
  }
}

.section-subscribe .dropdown-toggle::after {
  display: none;
}

.section-list {
  margin: 40px 0;
}

.section-list--collapsed .section-list-item:nth-child(1n + 6) {
  display: none;
}

.section-list-item {
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  padding: 15px 0;
}

.section-list-item:first-child {
  border-top: 1px solid #ddd;
}

.section-list-item a {
  align-items: center;
  color: #333333;
  display: flex;
  justify-content: space-between;
}

.see-all-sections-trigger {
  cursor: pointer;
  display: block;
  padding: 15px;
  text-align: center;
}

.see-all-sections-trigger[aria-hidden="true"] {
  display: none;
}

/***** Article *****/
.article {
  /*
  * The article grid is defined this way to optimize readability:
  * Sidebar | Content | Free space
  * 17%     | 66%     | 17%
  */
  flex: 1 0 auto;
}

/* @media (min-width: 1024px) {
  .article {
    flex: 1 0 66%;
    max-width: 66%;
    min-width: 640px;
    padding: 0 30px;
  }
} */

.article-container {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .article-container {
    flex-direction: row;
  }
}

.article-header {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .article-header {
    flex-direction: row;
    margin-top: 0;
  }
}

.article-avatar {
  margin-right: 10px;
}

.article-author {
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .article-title {
    flex-basis: 100%;
    /* Take entire row */
  }
}

.article-title .icon-lock::before {
  content: "\1F512";
  font-size: 20px;
  position: relative;
  left: -5px;
  vertical-align: baseline;
}

.article [role="button"] {
  flex-shrink: 0;
  /*Avoid collapsing elements in Safari (https://github.com/philipwalton/flexbugs#1-minimum-content-sizing-of-flex-items-not-honored)*/
  width: 100%;
}

@media (min-width: 768px) {
  .article [role="button"] {
    width: auto;
  }
}

.article-info {
  max-width: 100%;
}

.article-meta {
  display: inline-block;
  vertical-align: middle;
}

.article-body img {
  height: auto;
  max-width: 100%;
}

.article-body ul, .article-body ol {
  padding-left: 20px;
  list-style-position: outside;
  margin: 20px 0 20px 20px;
}

[dir="rtl"] .article-body ul, [dir="rtl"] .article-body ol {
  padding-right: 20px;
  padding-left: 0;
  margin-left: 0;
  margin-right: 20px;
}

.article-body ul > ul, .article-body ol > ol, .article-body ol > ul, .article-body ul > ol, .article-body li > ul, .article-body li > ol {
  margin: 0;
}

.article-body ul {
  list-style-type: disc;
}

.article-body a:visited {
  color: #000;
}

.article-body code {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}

.article-body pre {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}

.article-body blockquote {
  border-left: 1px solid #ddd;
  color: #666;
  font-style: italic;
  padding: 0 15px;
}

.article-body > p:last-child {
  margin-bottom: 0;
}

.article-content {
  line-height: 1.6;
  margin: 40px 0;
  word-wrap: break-word;
}

/*.article-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
} */

.article-comment-count {
  color: #666;
  font-weight: 300;
}

.article-comment-count:hover {
  text-decoration: none;
}

.article-comment-count .icon-comments {
  color: #0072EF;
  content: "\1F4AC";
  display: inline-block;
  font-size: 18px;
  padding: 5px;
}

.article-sidebar {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  flex: 1 0 auto;
  margin-bottom: 20px;
  padding: 0;
}

@media (min-width: 1024px) {
  .article-sidebar {
    border: 0;
    flex: 0 0 17%;
    height: auto;
  }
}

.article-relatives {
  border-top: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

@media (min-width: 768px) {
  .article-relatives {
    flex-direction: row;
  }
}

.article-relatives > * {
  flex: 1 0 50%;
  min-width: 50%;
  overflow-wrap: break-word;
  margin-right: 0;
}

.article-relatives > *:last-child {
  padding: 0;
}

@media (min-width: 768px) {
  .article-relatives > * {
    padding-right: 20px;
  }
}

.article-votes {
  border-top: 1px solid #ddd;
  padding: 30px 0;
  text-align: center;
}

/* .article-vote {
  background: transparent;
  border: 1px solid #0072EF;
  color: #0072EF;
  margin: 10px 5px;
  min-width: 90px;
  width: auto;
}

.article-vote::before {
  font-size: 8px;
  margin-right: 10px;
}

[dir="rtl"] .article-vote::before {
  margin-right: 0;
  margin-left: 10px;
} */

.article-vote::after {
  content: attr(title);
  /* Yes/No label*/
}

/*.article-vote:focus, .article-vote:active {
  background-color: transparent;
  color: #0072EF;
}

.article-vote:hover {
  background-color: #0072EF;
}

.article-vote:hover::before, .article-vote:hover::after, .article-vote[aria-selected="true"]::before, .article-vote[aria-selected="true"]::after {
  color: #FFFFFF;
}

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

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

.article-more-questions {
  margin: 10px 0 20px;
  text-align: center;
}
*/
.article-return-to-top {
  border-top: 1px solid #ddd;
}

@media (min-width: 1024px) {
  .article-return-to-top {
    display: none;
  }
}

.article-return-to-top a {
  color: #333333;
  display: block;
  padding: 20px 0;
}

.article-return-to-top a:hover, .article-return-to-top a:focus {
  text-decoration: none;
}

.article-return-to-top .icon-arrow-up::before {
  font-size: 16px;
  margin-left: 5px;
}

[dir="rtl"] .article-return-to-top .icon-arrow-up::before {
  margin-right: 10px;
}

.article-unsubscribe {
  background-color: #0072EF;
  color: #FFFFFF;
  text-decoration: none;
}

.article-unsubscribe:hover {
  background-color: #004189;
  border-color: #004189;
}

.sidenav-title {
  font-size: 15px;
  position: relative;
}

.sidenav-item {
  border-radius: 4px;
  color: #333333;
  display: block;
  font-weight: 300;
  margin-bottom: 10px;
  padding: 10px;
}

.sidenav-item.current-article, .sidenav-item:hover {
  background-color: #0072EF;
  color: #FFFFFF;
  text-decoration: none;
}

.recent-articles h3,
.related-articles h3 {
  font-size: 15px;
  margin: 20px 0;
}

.recent-articles li,
.related-articles li {
  margin-bottom: 15px;
}

/***** Attachments *****/
/* Styles attachments inside posts, articles and comments */
.attachments .attachment-item {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}

.attachments .attachment-item:last-child {
  margin-bottom: 0;
}

.attachments .attachment-item::before {
  color: #333333;
  content: "\1F4CE";
  font-size: 15px;
  left: 0;
  position: absolute;
  top: 5px;
}

[dir="rtl"] .attachments .attachment-item {
  padding-left: 0;
  padding-right: 20px;
}

[dir="rtl"] .attachments .attachment-item::before {
  left: auto;
  right: 0;
}

.upload-dropzone span {
  color: #666;
}

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

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

.share a {
  border-radius: 50%;
  height: 25px;
  line-height: 25px;
  overflow: hidden;
  width: 25px;
}

.share a::before {
  color: #666;
  display: block;
  font-size: 23px;
  text-align: center;
  width: 100%;
}

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

.share a:hover::before {
  color: #0072EF;
}

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

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

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

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

/***** Comments *****/
/* Styles comments inside articles, posts and requests */
.comment {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.comment-heading {
  margin-bottom: 5px;
  margin-top: 0;
}

.comment-overview {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  padding: 20px 0;
}

.comment-overview p {
  margin-top: 0;
}

.comment-callout {
  color: #666;
  display: inline-block;
  font-weight: 300;
  font-size: 13px;
  margin-bottom: 0;
}

.comment-callout a {
  color: #0072EF;
}

.comment-sorter {
  display: inline-block;
  float: right;
}

.comment-sorter .dropdown-toggle {
  color: #666;
  font-weight: 300;
  font-size: 13px;
}

[dir="rtl"] .comment-sorter {
  float: left;
}

.comment-wrapper {
  display: flex;
  position: relative;
}

.comment-wrapper.comment-official {
  border: 1px solid #0072EF;
  padding: 40px 20px 20px;
}

@media (min-width: 768px) {
  .comment-wrapper.comment-official {
    padding-top: 20px;
  }
}

.comment-info {
  min-width: 0;
  padding-right: 20px;
  width: 100%;
}

[dir="rtl"] .comment-info {
  padding-right: 0;
  padding-left: 20px;
}

.comment-author {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .comment-author {
    justify-content: space-between;
  }
}

.comment-avatar {
  margin-right: 10px;
}

[dir="rtl"] .comment-avatar {
  margin-left: 10px;
  margin-right: 0;
}

.comment-meta {
  flex: 1 0 auto;
}

.comment-labels {
  flex-basis: 100%;
}

@media (min-width: 768px) {
  .comment-labels {
    flex-basis: auto;
  }
}

.comment .status-label:not(.status-label-official) {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .comment .status-label:not(.status-label-official) {
    margin-top: 0;
  }
}

.comment-form {
  display: flex;
  padding-top: 30px;
  word-wrap: break-word;
}

.comment-container {
  width: 100%;
}

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

@media (min-width: 768px) {
  [dir="ltr"] .comment-form-controls {
    text-align: right;
  }
}

.comment-form-controls input[type="submit"] {
  margin-top: 15px;
}

@media (min-width: 1024px) {
  .comment-form-controls input[type="submit"] {
    margin-left: 15px;
  }
  [dir="rtl"] .comment-form-controls input[type="submit"] {
    margin-left: 0;
    margin-right: 15px;
  }
}

.comment-form-controls input[type="checkbox"] {
  margin-right: 5px;
}

.comment-form-controls input[type="checkbox"] [dir="rtl"] {
  margin-left: 5px;
}

.comment-ccs {
  display: none;
}

.comment-ccs + textarea {
  margin-top: 10px;
}

.comment-attachments {
  margin-top: 10px;
}

.comment-attachments a {
  color: #0072EF;
}

.comment-body {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: auto;
}

.comment-body img {
  height: auto;
  max-width: 100%;
}

.comment-body ul, .comment-body ol {
  padding-left: 20px;
  list-style-position: outside;
  margin: 20px 0 20px 20px;
}

[dir="rtl"] .comment-body ul, [dir="rtl"] .comment-body ol {
  padding-right: 20px;
  padding-left: 0;
  margin-left: 0;
  margin-right: 20px;
}

.comment-body ul > ul, .comment-body ol > ol, .comment-body ol > ul, .comment-body ul > ol, .comment-body li > ul, .comment-body li > ol {
  margin: 0;
}

.comment-body ul {
  list-style-type: disc;
}

.comment-body a:visited {
  color: #000;
}

.comment-body code {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}

.comment-body pre {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}

.comment-body blockquote {
  border-left: 1px solid #ddd;
  color: #666;
  font-style: italic;
  padding: 0 15px;
}

.comment-mark-as-solved {
  display: inline-block;
}

/***** Vote *****/
/* Used in article comments, post comments and post */
.vote {
  display: inline-block;
  text-align: center;
  width: 35px;
}

.vote a {
  outline: none;
}

.vote a:active, .vote a:hover, .vote a:focus {
  text-decoration: none;
}

.vote-sum {
  color: #666;
  display: block;
  margin: 3px 0;
}

[dir="rtl"] .vote-sum {
  direction: ltr;
  unicode-bidi: bidi-override;
}

.vote-up:hover::before,
.vote-down:hover::before {
  color: #0072EF;
}

.vote-up::before, .vote-down::before {
  color: #666;
  font-size: 24px;
}

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

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

.vote-voted::before {
  color: #0072EF;
}

.vote-voted:hover::before {
  color: #004189;
}

/***** Actions *****/
/* Styles admin and en user actions(edit, delete, change status) in comments and posts */
.actions {
  text-align: center;
  flex-shrink: 0;
  /*Avoid collapsing elements in Safari*/
}

.actions .dropdown-toggle {
  font-size: 0;
  margin: 15px 0;
}

.actions .dropdown-toggle:hover::before, .actions .dropdown-toggle:focus::before, .actions .dropdown-toggle:active::before {
  background-color: #f7f7f7;
}

.actions .dropdown-toggle::before {
  background-color: transparent;
  border-radius: 50%;
  color: #666;
  content: "\2699";
  display: block;
  font-size: 13px;
  margin: auto;
  padding: 5px;
}

/***** Community *****/
.community-hero {
  background-image: url(/hc/theming_assets/01HZPNKHACYQEMMZYE1M9GVM7C);
  margin-bottom: 10px;
}

.community-footer {
  padding-top: 50px;
  text-align: center;
}

.community-featured-posts, .community-activity {
  padding-top: 40px;
  width: 100%;
}

.community-header {
  margin-bottom: 30px;
}

.community-header h4 {
  margin-bottom: 0;
}

.post-to-community {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .post-to-community {
    margin: 0;
  }
}

/* Community topics grid */
.topics {
  max-width: none;
  width: 100%;
}

.topics-item .meta-group {
  justify-content: center;
  margin-top: 20px;
}

/* Community topic page */
.topic-header {
  border-bottom: 1px solid #ddd;
  font-size: 13px;
}

@media (min-width: 768px) {
  .topic-header {
    padding-bottom: 10px;
  }
}

.topic-header .dropdown {
  display: block;
  border-top: 1px solid #ddd;
  padding: 10px 0;
}

@media (min-width: 768px) {
  .topic-header .dropdown {
    border-top: 0;
    display: inline-block;
    margin-right: 20px;
    padding: 0;
  }
}

.no-posts-with-filter {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* Topic, post and user follow button */
.community-follow {
  margin-bottom: 10px;
  width: 100%;
}

@media (min-width: 768px) {
  .community-follow {
    margin-bottom: 0;
    width: auto;
  }
}

.community-follow .dropdown {
  width: 100%;
}

.community-follow [role="button"] {
  line-height: 30px;
  padding: 0 10px 0 15px;
  position: relative;
  width: 100%;
}

@media (min-width: 768px) {
  .community-follow [role="button"] {
    width: auto;
  }
}

.community-follow [role="button"]:hover {
  background-color: #0072EF;
}

.community-follow [role="button"]:hover::after, .community-follow [role="button"]:focus::after {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.community-follow [role="button"][aria-selected="true"] {
  background-color: #0072EF;
  color: #FFFFFF;
}

.community-follow [role="button"][aria-selected="true"]::after {
  border-left: 1px solid #FFFFFF;
  color: #FFFFFF;
}

.community-follow [role="button"][aria-selected="true"]:hover {
  background-color: #004189;
  border-color: #004189;
}

.community-follow [role="button"]::after {
  border-left: 1px solid #0072EF;
  content: attr(data-follower-count);
  color: #0072EF;
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  margin-left: 15px;
  padding-left: 10px;
  position: absolute;
  right: 10px;
}

@media (min-width: 768px) {
  .community-follow [role="button"]::after {
    position: static;
  }
}

[dir="rtl"] .community-follow [role="button"]::after {
  border-left: 0;
  border-right: 1px solid #0072EF;
  margin: 0 10px 0 0;
  padding: 0 10px 0 0;
}

/***** Striped list *****/
/* Used in community posts list and requests list */
.striped-list {
  padding: 0;
}

.striped-list-item {
  align-items: flex-start;
  border-bottom: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 0;
}

@media (min-width: 768px) {
  .striped-list-item {
    align-items: center;
    flex-direction: row;
  }
}

.striped-list-info {
  flex: 2;
}

.striped-list-title {
  color: rgba(13, 20, 27, 1);
  margin-bottom: 10px;
  margin-right: 5px;
}

.striped-list-title:hover, .striped-list-title:focus, .striped-list-title:active {
  text-decoration: underline;
}

.striped-list-title:visited {
  color: #000;
}

.striped-list .meta-group {
  margin: 5px 0;
}

.striped-list-count {
  color: #666;
  font-weight: 300;
  font-size: 13px;
  justify-content: flex-start;
  text-transform: capitalize;
}

@media (min-width: 768px) {
  .striped-list-count {
    display: flex;
    flex: 1;
    justify-content: space-around;
  }
}

.striped-list-count-item::after {
  content: "·";
  display: inline-block;
  padding: 0 5px;
}

@media (min-width: 768px) {
  .striped-list-count-item::after {
    display: none;
  }
}

.striped-list-count-item:last-child::after {
  display: none;
}

.striped-list-number {
  font-weight: 300;
  text-align: center;
}

@media (min-width: 768px) {
  .striped-list-number {
    color: #333333;
    display: block;
    font-weight: 400;
  }
}

/***** Status labels *****/
/* Styles labels used in posts, articles and requests */
.status-label {
  background-color: #1eb848;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  margin-right: 2px;
  padding: 3px 10px;
  vertical-align: middle;
  white-space: nowrap;
  display: inline-block;
}

.status-label:hover, .status-label:active, .status-label:focus {
  text-decoration: none;
}

.status-label-pinned, .status-label-featured, .status-label-official {
  background-color: #0072EF;
}

.status-label-official {
  border-radius: 0;
  margin-right: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .status-label-official {
    border-radius: 0 0 4px 4px;
    right: 30px;
    width: auto;
  }
}

[dir="rtl"] .status-label-official {
  left: 30px;
  right: auto;
}

.status-label-pending, .status-label-not-planned {
  background-color: #eee;
  color: #666;
}

.status-label-pending {
  text-align: center;
}

.status-label-open {
  background-color: #cc3340;
}

.status-label-closed {
  background-color: #ddd;
}

.status-label-solved {
  background-color: #999;
}

.status-label-new {
  background-color: #ffd12a;
}

.status-label-hold {
  background-color: #000;
}

.status-label-open, .status-label-closed, .status-label-solved, .status-label-new, .status-label-hold, .status-label-answered {
  text-transform: lowercase;
}

/***** Post *****/
/*
* The post grid is defined this way:
* Content | Sidebar
* 70%     | 30%
*/
.post {
  flex: 1;
  margin-bottom: 10px;
}

@media (min-width: 1024px) {
  .post {
    flex: 1 0 70%;
    max-width: 70%;
  }
}

.post-container {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .post-container {
    flex-direction: row;
  }
}

.post-header {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .post-header {
    align-items: baseline;
    flex-direction: row;
  }
}

.post-header .status-label {
  vertical-align: super;
}

.post-title {
  margin-bottom: 20px;
  width: 100%;
}

@media (min-width: 768px) {
  .post-title {
    margin-bottom: 0;
    padding-right: 10px;
  }
}

.post-title h1 {
  display: inline;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .post-title h1 {
    margin-right: 5px;
  }
}

.post-author {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}

.post-avatar {
  margin-bottom: 30px;
}

.post-content {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  word-break: break-word;
}

.post-info-container {
  display: flex;
  margin-bottom: 40px;
}

.post-info {
  min-width: 0;
  padding-right: 20px;
  width: 100%;
}

[dir="rtl"] .post-info {
  padding-right: 0;
  padding-left: 20px;
}

.post-meta {
  display: inline-block;
  flex: 1;
  margin-left: 10px;
  vertical-align: middle;
}

[dir="rtl"] .post-meta {
  margin-left: 0;
  margin-right: 10px;
}

.post-body img {
  height: auto;
  max-width: 100%;
}

.post-body ul, .post-body ol {
  padding-left: 20px;
  list-style-position: outside;
  margin: 20px 0 20px 20px;
}

[dir="rtl"] .post-body ul, [dir="rtl"] .post-body ol {
  padding-right: 20px;
  padding-left: 0;
  margin-left: 0;
  margin-right: 20px;
}

.post-body ul > ul, .post-body ol > ol, .post-body ol > ul, .post-body ul > ol, .post-body li > ul, .post-body li > ol {
  margin: 0;
}

.post-body ul {
  list-style-type: disc;
}

.post-body a:visited {
  color: #000;
}

.post-body code {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}

.post-body pre {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}

.post-body blockquote {
  border-left: 1px solid #ddd;
  color: #666;
  font-style: italic;
  padding: 0 15px;
}

.post-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}

.post-comment-count {
  color: #666;
  font-weight: 300;
}

.post-comment-count:hover {
  text-decoration: none;
}

.post-comment-count .icon-comments {
  color: #0072EF;
  content: "\1F4AC";
  display: inline-block;
  font-size: 18px;
  padding: 5px;
}

.post-sidebar {
  border-top: 1px solid #ddd;
  flex: 1;
  padding: 30px 0;
  text-align: center;
}

@media (min-width: 1024px) {
  .post-sidebar {
    border: 0;
    flex: 1 0 30%;
    padding: 0 0 0 50px;
    text-align: initial;
  }
  [dir="rtl"] .post-sidebar {
    padding: 0 50px 0 0;
  }
}

.post-sidebar h5 {
  font-weight: 600;
}

@media (min-width: 1024px) {
  .post-sidebar h5 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
  }
}

.post-comments {
  margin-bottom: 20px;
}

@media (min-width: 1024px) {
  .post-comments {
    margin-bottom: 0;
  }
}

/* Navigation element that collapses on mobile */
.collapsible-nav {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  flex-direction: column;
  max-height: 45px;
  overflow: hidden;
  font-size: 14px;
}

@media (min-width: 768px) {
  .collapsible-nav {
    border: 0;
    height: auto;
    flex-direction: row;
    max-height: none;
  }
}

.collapsible-nav-list {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .collapsible-nav-list {
    flex-direction: row;
  }
}

.collapsible-nav-list li {
  color: #333333;
  line-height: 45px;
  order: 1;
}

@media (min-width: 768px) {
  .collapsible-nav-list li {
    line-height: normal;
    margin-right: 30px;
  }
  [dir="rtl"] .collapsible-nav-list li {
    margin-left: 30px;
    margin-right: 0;
  }
  .collapsible-nav-list li a {
    text-decoration: none;
    padding: 15px 0;
  }
}

.collapsible-nav-list li a {
  color: #333333;
  display: block;
}

@media (min-width: 768px) {
  .collapsible-nav-list li:hover {
    border-bottom: 4px solid #ddd;
  }
  .collapsible-nav-list li:hover a {
    padding: 15px 0 11px 0;
    text-decoration: none;
  }
}

.collapsible-nav-list li[aria-selected="true"] {
  order: 0;
  position: relative;
}

@media (min-width: 768px) {
  .collapsible-nav-list li[aria-selected="true"] {
    border-bottom: 4px solid #0072EF;
    order: 1;
    padding: 15px 0 11px 0;
  }
}

.collapsible-nav-list li[aria-selected="true"] a {
  color: #333333;
}

.collapsible-nav-list li[aria-selected="true"]::after {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  content: "\25BE";
  position: absolute;
  right: 0;
}

@media (min-width: 768px) {
  .collapsible-nav-list li[aria-selected="true"]::after {
    display: none;
  }
}

[dir="rtl"] .collapsible-nav-list li[aria-selected="true"]::after {
  left: 0;
  right: auto;
}

.collapsible-nav[aria-expanded="true"] {
  max-height: none;
}

.collapsible-nav[aria-expanded="true"] li[aria-selected="true"]::after {
  content: "\2715";
}

/* Sidebar navigation that collapses on mobile */
.collapsible-sidebar {
  flex: 1;
  max-height: 45px;
  overflow: hidden;
  padding: 10px 0;
  position: relative;
}

@media (min-width: 1024px) {
  .collapsible-sidebar {
    max-height: none;
    padding: 0;
  }
}

.collapsible-sidebar[aria-expanded="true"] {
  max-height: none;
}

.collapsible-sidebar[aria-expanded="true"] .collapsible-sidebar-title::after {
  content: "\2715";
}

@media (min-width: 1024px) {
  .collapsible-sidebar[aria-expanded="true"] .collapsible-sidebar-title::after {
    display: none;
  }
}

.collapsible-sidebar-title {
  margin-top: 0;
}

.collapsible-sidebar-title::after {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  content: "\25BE";
  position: absolute;
  right: 10px;
}

@media (min-width: 1024px) {
  .collapsible-sidebar-title::after {
    display: none;
  }
}

[dir="rtl"] .collapsible-sidebar-title::after {
  left: 10px;
  right: auto;
}

/***** My activities *****/
.my-activities-nav {
  background-color: #f2f2f2;
  border: 0;
  margin-bottom: 20px;
}

.my-activities-sub-nav {
  background-color: transparent;
  border-bottom: 1px solid #ddd;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .my-activities-sub-nav li:hover {
    border-bottom: 4px solid #ddd;
  }
}

.my-activities-sub-nav li[aria-selected="true"] {
  border-color: #0072EF;
}

.my-activities-table .striped-list-title {
  /* My activities tables */
  display: block;
  margin-bottom: 10px;
  max-width: 350px;
  white-space: normal;
}

@media (min-width: 1024px) {
  .my-activities-table .striped-list-title {
    margin-bottom: 0;
    max-width: 500px;
    min-width: 350px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.my-activities-table thead {
  display: none;
}

@media (min-width: 768px) {
  .my-activities-table thead {
    display: table-header-group;
  }
}

.my-activities-table th:first-child,
.my-activities-table td:first-child {
  padding-left: 0;
}

@media (min-width: 1024px) {
  .my-activities-table th:first-child,
  .my-activities-table td:first-child {
    width: 500px;
  }
}

.my-activities-table th:last-child,
.my-activities-table td:last-child {
  padding-right: 0;
}

.my-activities-table td:not(:first-child) {
  display: none;
}

@media (min-width: 768px) {
  .my-activities-table td:not(:first-child) {
    display: table-cell;
  }
}

/* Requests table */
.requests-search {
  width: 100%;
}

.requests-table-toolbar {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .requests-table-toolbar {
    flex-direction: row;
  }
}

.requests-table-toolbar .search {
  flex: 1;
  width: 100%;
}

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

@media (min-width: 768px) {
  .requests-table-toolbar .request-table-filter {
    width: auto;
  }
}

.requests-table-toolbar .request-filter {
  display: block;
}

@media (min-width: 768px) {
  .requests-table-toolbar .request-filter {
    margin: 0 0 0 30px;
  }
  [dir="rtl"] .requests-table-toolbar .request-filter {
    margin: 0 30px 0 0;
  }
}

.requests-table-toolbar .request-filter-label {
  font-size: 13px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .requests-table-toolbar .request-filter-label {
    margin-top: 0;
  }
}

.requests-table-toolbar select {
  max-height: 40px;
  margin-bottom: 30px;
  width: 100%;
}

@media (min-width: 768px) {
  .requests-table-toolbar select {
    margin-bottom: 0;
    max-width: 300px;
    width: auto;
  }
}

.requests-table-toolbar .organization-subscribe,
.requests-table-toolbar .organization-unsubscribe {
  line-height: 40px;
  max-height: 40px;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .requests-table-toolbar .organization-subscribe,
  .requests-table-toolbar .organization-unsubscribe {
    margin-left: 10px;
  }
  [dir="rtl"] .requests-table-toolbar .organization-subscribe, [dir="rtl"]
  .requests-table-toolbar .organization-unsubscribe {
    margin: 0 10px 0 0;
  }
}

.requests-table-toolbar .organization-unsubscribe {
  background-color: #0072EF;
  color: #FFFFFF;
}

.requests-table-toolbar + .requests-search-info {
  margin-top: 15px;
}

.requests-table-toolbar + .requests-search-info.meta-data::after {
  content: "";
  margin: 0;
}

.requests-table-toolbar + .requests-search-info + .requests {
  margin-top: 20px;
}

.requests-table-toolbar + .requests {
  margin-top: 40px;
}

.requests .requests-table-meta {
  display: block;
}

@media (min-width: 768px) {
  .requests .requests-table-meta {
    display: none;
  }
}

.requests .requests-table thead {
  display: none;
}

@media (min-width: 768px) {
  .requests .requests-table thead {
    display: table-header-group;
  }
}

.requests .requests-table-info {
  display: block;
}

@media (min-width: 768px) {
  .requests .requests-table-info {
    display: table-cell;
    vertical-align: middle;
    width: auto;
  }
}

.requests .requests-table .requests-link {
  position: relative;
}

.requests .requests-table .requests-sort-symbol {
  position: absolute;
  left: calc(100% + 3px);
  bottom: 0;
  font-size: 10px;
}

/* Following table */
.subscriptions-unsubscribe a {
  background: #0072EF;
  border-radius: 4px;
  color: #FFFFFF;
  display: inline-block;
  font-size: 12px;
  line-height: 2.34;
  padding: 0 20px;
  text-align: center;
  width: 100%;
}

@media (min-width: 768px) {
  .subscriptions-unsubscribe a {
    width: auto;
  }
}

.subscriptions-unsubscribe a:hover {
  background-color: #004189;
  text-decoration: none;
}

.subscriptions-table td:last-child {
  display: block;
}

@media (min-width: 768px) {
  .subscriptions-table td:last-child {
    display: table-cell;
  }
}

.subscriptions-table td:first-child {
  display: flex;
  align-items: center;
}

.subscriptions-table .user-avatar {
  margin-right: 10px;
}

.subscriptions .striped-list-title {
  display: inline-block;
  vertical-align: middle;
}

/* Contributions table */
.contributions-table td:last-child {
  color: #666;
  font-size: 13px;
  font-weight: 300;
}

@media (min-width: 768px) {
  .contributions-table td:last-child {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
  }
}

.no-activities {
  color: #666;
}

/***** Request *****/
.request-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .request-container {
    align-items: flex-start;
    flex-direction: row;
  }
}

.request-container .comment-container {
  min-width: 0;
}

.request-breadcrumbs {
  margin-bottom: 40px;
}

@media (min-width: 1024px) {
  .request-breadcrumbs {
    margin-bottom: 60px;
  }
}

.request-main {
  flex: 1 0 auto;
  order: 1;
}

.request-main .comment-fields, .request-main .request-submit-comment {
  display: none;
}

.request-main .comment-fields.shown {
  display: block;
}

.request-main .request-submit-comment.shown {
  display: inline;
}

@media (min-width: 1024px) {
  .request-main {
    flex: 0 0 66%;
    order: 0;
    min-width: 0;
  }
}

.request-main .comment-form-controls {
  display: block;
}

.request-main .comment-ccs {
  display: block;
}

.request-main .comment-show-container {
  border-radius: 2px;
  border: 1px solid #ddd;
  color: #666;
  text-align: inherit;
  padding: 8px 25px;
  width: 100%;
}

.request-main .comment-show-container.hidden {
  display: none;
}

.request-main .form-field.comment-ccs > ul {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0;
}

.request-main .form-field.comment-ccs > ul[data-hc-focus="true"] {
  border: 1px solid #0072EF;
}

.request-main .form-field.comment-ccs > input[type="text"] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0;
}

.request-main .comment-ccs + textarea {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  margin-top: 0;
}

.request-main .comment-ccs + textarea:focus {
  border-top: 1px solid #0072EF;
}

.request-main input#mark_as_solved {
  display: none;
}

.request-title {
  width: 100%;
}

@media (min-width: 1024px) {
  .request-title {
    border-bottom: 1px solid #ddd;
    margin-bottom: 0;
    max-width: 66%;
    padding-bottom: 20px;
  }
}

.request-sidebar {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  flex: 1 0 auto;
  order: 0;
}

@media (min-width: 1024px) {
  .request-sidebar {
    background-color: #f7f7f7;
    border: 0;
    font-size: 13px;
    flex: 0 0 auto;
    padding: 0 20px;
    width: 30%;
  }
}

.request-sidebar h5 {
  font-size: 15px;
  font-weight: 600;
  position: relative;
}

@media (min-width: 1024px) {
  .request-sidebar h5 {
    display: none;
  }
}

.request-details {
  border-bottom: 1px solid #ddd;
  font-size: 0;
  margin: 0;
  padding-bottom: 20px;
}

.request-details:last-child {
  border: 0;
}

.request-details dt, .request-details dd {
  display: inline-block;
  vertical-align: top;
  font-size: 13px;
  margin: 20px 0 0 0;
}

.request-details dd {
  padding: 0 10px;
  width: 60%;
}

.request-details dd::after {
  content: "\A";
  white-space: pre;
}

.request-details dt {
  color: #666;
  font-weight: 300;
  width: 40%;
}

.request-details .request-collaborators {
  display: inline-block;
}

.request-attachments dt, .request-attachments dd {
  width: 100%;
}

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

.request-form textarea {
  min-height: 120px;
}

.request-follow-up {
  padding-top: 20px;
}

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

.pagination * {
  display: inline-block;
}

.pagination li {
  border-radius: 50%;
  height: 40px;
  float: left;
  margin-left: 5px;
  width: 40px;
}

@media (min-width: 768px) {
  .pagination li {
    height: 30px;
    width: 30px;
  }
}

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

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

.pagination li:hover:not(.pagination-current) span, .pagination li:hover:not(.pagination-current) a {
  color: #333333;
  text-decoration: none;
}

.pagination a, .pagination span {
  font-size: 15px;
  color: #666;
  padding: 10px 12px;
}

@media (min-width: 768px) {
  .pagination a, .pagination span {
    font-size: 13px;
    padding: 5px 12px;
  }
}

.pagination-current {
  background-color: #0072EF;
}

.pagination-current a, .pagination-current span {
  color: #FFFFFF;
}

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

/***** Metadata *****/
.meta-group {
  display: block;
}

.meta-group * {
  display: inline;
}

.meta-data {
  color: #666;
  font-size: 13px;
  font-weight: 300;
}

.meta-data:not(:last-child)::after {
  content: "\00B7";
  margin: 0 5px;
}

/***** Icons *****/
[class^="icon-"]::before,
[class*=" icon-"]::before,
.icon,
.search::before,
.recent-activity-item-comment span::before,
.article-vote::before,
.attachments .attachment-item::before,
.share a::before,
.vote-up::before,
.vote-down::before,
.actions .dropdown-toggle::before,
.collapsible-nav-list li[aria-selected="true"]::after,
.collapsible-sidebar-title::after,
.search-result-votes::before,
.search-result-meta-count::before {
  font-family: "copenhagen-icons";
  font-style: normal;
  font-weight: normal;
  speak: none;
  line-height: 1em;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
}

.icon-lock::before {
  content: "\1F512";
}

.icon-star::before {
  content: "\2605";
}

.icon-linkedin::before {
  content: "\e900";
}

.icon-twitter::before {
  content: "\e901";
}

.icon-googleplus-::before {
  content: "\e902";
}

.icon-facebook::before {
  content: "\e903";
}

.icon-agent::before {
  content: "\1F464";
}

.icon-close::before {
  content: "\2715";
}

.icon-arrow-up::before {
  content: "\2B06";
}

.icon-arrow-down::before {
  content: "\2B07";
}

.icon-attachments::before {
  content: "\1F4CE";
}

.icon-comments::before {
  content: "\1F4AC";
}

.icon-search::before {
  content: "\1F50D";
}

.icon-vote::before {
  content: "\1F44D";
}

.icon-handle::before {
  content: "\25BE";
}

.icon-check::before {
  content: "\2713";
}

.icon-gear::before {
  content: "\2699";
}

.icon-menu::before {
  content: "\2630";
}

.icon-article::before {
  content: "\1F4C4";
}

.icon-post::before {
  content: "\1F4D4";
}

.icon-notification-alert::before {
  content: "\26A0";
}

.icon-notification-error::before {
  content: "\00D7";
}

.icon-notification-info::before {
  content: "\2139";
}

.icon-notification-success::before {
  content: "\2714";
}

/* User Profiles */
.profile-header {
  padding: 30px 0;
  background-color: #f7f7f7;
}

.profile-header .container {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .profile-header .container {
    flex-wrap: nowrap;
  }
}

.profile-header .profile-info {
  flex-basis: 100%;
  display: flex;
  flex-wrap: wrap;
  min-width: 0;
}

.profile-avatar {
  position: relative;
  line-height: 0;
  align-self: center;
  margin-right: 10px;
}

[dir="rtl"] .profile-avatar {
  margin-left: 10px;
  margin-right: 0;
}

.profile-avatar .user-avatar {
  width: 65px;
  height: 65px;
}

.profile-avatar .icon-agent::before {
  bottom: 0;
  right: 0;
}

.profile-header .basic-info {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
}

.profile-header .basic-info .name {
  margin: 0;
}

.profile-header .options {
  display: flex;
  flex-basis: 100%;
  margin-top: 12px;
  align-items: flex-start;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .profile-header .options {
    flex-wrap: nowrap;
    flex-basis: auto;
    margin-top: 0;
    margin-left: 10px;
  }
  [dir="rtl"] .profile-header .options {
    margin-left: 0;
    margin-right: 10px;
  }
  .profile-header .options > :not(:last-child) {
    margin-bottom: 0;
    margin-right: 10px;
  }
  [dir="rtl"] .profile-header .options > :not(:last-child) {
    margin-left: 10px;
    margin-right: 0;
  }
}

.profile-header .options [data-action="edit-profile"] {
  background-color: #0072EF;
  border: 0;
  color: #FFFFFF;
  line-height: normal;
  padding: 8px 20px;
  outline-color: #0072EF;
}

.profile-header .description {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  margin: 15px 0;
  flex-basis: 100%;
}

.profile-stats {
  font-size: 13px;
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
}

.profile-stats .stat {
  display: flex;
  margin-bottom: 10px;
}

.profile-stats .stat-label {
  color: #666;
  font-weight: 300;
  flex: 0 0 100px;
  margin-right: 10px;
}

[dir="rtl"] .profile-stats .stat-label {
  margin-left: 10px;
  margin-right: 0;
}

.profile-stats-activity {
  border-top: solid 1px #ddd;
  margin-top: 15px;
}

@media (min-width: 768px) {
  .profile-stats-activity {
    border-top: 0;
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .profile-stats-activity .stat {
    flex-direction: column;
  }
}

.profile-stats-activity .stat:first-child {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .profile-stats-activity .stat:first-child {
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  .profile-stats-activity .stat:not(:last-child) {
    margin-right: 40px;
  }
  [dir="rtl"] .profile-stats-activity .stat:not(:last-child) {
    margin-left: 40px;
    margin-right: 0;
  }
}

@media (min-width: 768px) {
  .profile-stats-activity .stat-label {
    flex: 0 1 auto;
  }
}

.profile-stats-counters {
  border-bottom: solid 1px #ddd;
}

@media (min-width: 768px) {
  .profile-stats-counters {
    flex: 0 0 200px;
    border-bottom: 0;
    margin-left: 40px;
  }
  [dir="rtl"] .profile-stats-counters {
    margin-left: 0;
    margin-right: 40px;
  }
}

@media (min-width: 1024px) {
  .profile-stats-counters {
    flex: 0 0 270px;
    margin-left: 60px;
  }
  [dir="rtl"] .profile-stats-counters {
    margin-right: 60px;
    margin-left: 0;
  }
}

@media (min-width: 768px) {
  .profile-stats-counters .stat {
    flex-direction: column;
  }
}

@media (min-width: 1024px) {
  .profile-stats-counters .stat {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .profile-stats-counters .stat:not(:last-child) {
    margin-bottom: 15px;
  }
}

@media (min-width: 768px) {
  .profile-stats-counters .stat-label {
    flex: 0 1 auto;
  }
}

@media (min-width: 1024px) {
  .profile-stats-counters .stat-label {
    flex: 0 0 100px;
  }
}

.profile-private-badge {
  flex-basis: 100%;
  border: solid 1px #0072EF;
  border-radius: 4px;
  color: #0072EF;
  padding: 5px 20px;
  font-size: 12px;
  text-align: center;
}

.profile-private-badge::after {
  content: "\1f512";
  margin-left: 5px;
  font-family: "copenhagen-icons";
  vertical-align: middle;
  line-height: 15px;
}

@media (min-width: 768px) {
  .profile-private-badge {
    flex-basis: auto;
  }
}

.profile-nav {
  background-color: #f2f2f2;
  border: 0;
  margin-bottom: 37px;
}

.profile-section {
  width: 100%;
}

@media (min-width: 1024px) {
  .profile-section {
    width: calc(100% - 330px);
  }
}

.profile-section-header {
  display: flex;
  flex-wrap: wrap;
}

.profile-section-title {
  flex-basis: 100%;
  margin-bottom: 0;
}

.profile-section-description {
  flex-basis: 100%;
  padding: 10px 0;
  color: #666;
  font-weight: 300;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .profile-section-description {
    flex: 1 0 50%;
    padding-bottom: 0;
  }
}

.profile-section-sorter {
  flex-basis: 100%;
  border-top: solid 1px #eee;
  font-size: 13px;
}

.profile-section-sorter .dropdown-toggle {
  padding: 10px 0;
  width: 100%;
}

.profile-section-sorter .dropdown-toggle::after {
  position: absolute;
  right: 0;
}

[dir="rtl"] .profile-section-sorter .dropdown-toggle::after {
  left: 0;
  right: initial;
}

@media (min-width: 768px) {
  .profile-section-sorter .dropdown-toggle::after {
    position: relative;
  }
}

@media (min-width: 768px) {
  .profile-section-sorter {
    flex: 0 1 auto;
    padding-top: 0;
    border-top: 0;
    margin-left: 20px;
  }
  [dir="rtl"] .profile-section-sorter {
    margin-left: 0;
    margin-right: 20px;
  }
}

.profile-contribution {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  padding: 20px 0;
  position: relative;
}

.profile-contribution-header {
  margin-bottom: 5px;
}

.profile-contribution-title {
  margin: 0 0 5px 0;
  display: inline;
  line-height: 21px;
  font-size: 15px;
  vertical-align: middle;
}

.profile-contribution-body {
  margin: 10px 0;
}

.profile-contribution-list > .profile-contribution {
  border-top: 1px solid #eee;
}

@media (min-width: 768px) {
  .profile-contribution-list > .profile-contribution {
    padding-left: 30px;
  }
  [dir="rtl"] .profile-contribution-list > .profile-contribution {
    padding-right: 30px;
    padding-left: 0;
  }
}

.profile-contribution-list > .profile-contribution:last-child {
  border-bottom: 1px solid #eee;
}

.profile-contribution-list > .profile-contribution::before {
  left: 0;
  position: absolute;
  font-size: 16px;
  color: #ccc;
  font-family: "copenhagen-icons";
  line-height: 25px;
}

[dir="rtl"] .profile-contribution-list > .profile-contribution::before {
  right: 0;
}

.profile-contribution-list .profile-contribution-header {
  margin-left: 30px;
}

[dir="rtl"] .profile-contribution-list .profile-contribution-header {
  padding-right: 30px;
  padding-left: 0;
}

@media (min-width: 768px) {
  .profile-contribution-list .profile-contribution-header {
    margin-left: 0;
  }
  [dir="rtl"] .profile-contribution-list .profile-contribution-header {
    padding-right: 0;
  }
}

.profile-comments .profile-contribution-breadcrumbs {
  margin-left: 30px;
}

[dir="rtl"] .profile-comments .profile-contribution-breadcrumbs {
  padding-right: 30px;
  padding-left: 0;
}

@media (min-width: 768px) {
  .profile-comments .profile-contribution-breadcrumbs {
    margin-left: 0;
  }
  [dir="rtl"] .profile-comments .profile-contribution-breadcrumbs {
    padding-right: 0;
  }
}

.profile-section .no-activity,
.profile-section .private-activity {
  display: block;
  margin-top: 40px;
  color: #999;
}

.profile-section .private-activity::before {
  content: "\1f512";
  font-family: "copenhagen-icons";
  font-style: normal;
  font-size: 12px;
  font-weight: normal;
  vertical-align: middle;
  margin-right: 10px;
}

[dir="rtl"] .profile-section .private-activity::before {
  margin-right: 0;
  margin-left: 10px;
}

.profile-activity-list {
  margin-top: 25px;
}

.profile-activity {
  position: relative;
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .profile-activity {
    padding-left: 20px;
  }
  [dir="rtl"] .profile-activity {
    padding-right: 20px;
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .profile-activity:not(:last-child) {
    border-left: 1px solid #ddd;
  }
  [dir="rtl"] .profile-activity:not(:last-child) {
    border-left: 0;
    border-right: 1px solid #ddd;
  }
}

.profile-activity-header {
  display: flex;
  align-items: center;
  margin-left: 35px;
}

[dir="rtl"] .profile-activity-header {
  margin-left: 0;
  margin-right: 35px;
}

@media (min-width: 768px) {
  .profile-activity-header {
    margin-left: 0;
  }
  [dir="rtl"] .profile-activity-header {
    margin-right: 0;
  }
}

.profile-activity-header .user-avatar {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  min-width: 40px;
  align-self: flex-start;
}

[dir="rtl"] .profile-activity-header .user-avatar {
  margin-left: 10px;
  margin-right: 0;
}

.profile-activity-description {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  margin: 0;
  min-width: 0;
  width: 100%;
}

.profile-activity-description span:first-child {
  font-weight: 600;
  display: inline;
}

.profile-activity-contribution {
  padding: 20px;
  margin-top: 10px;
  border-radius: 8px;
  background-color: #f7f7f7;
}

@media (min-width: 768px) {
  .profile-activity-contribution {
    margin-top: 0;
    margin-left: 50px;
  }
  [dir="rtl"] .profile-activity-contribution {
    margin-left: 0;
    margin-right: 50px;
  }
}

.profile-activity::before {
  position: absolute;
  left: 0;
  width: 28px;
  border-radius: 50%;
  content: "";
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-color: #FFFFFF;
  background-position: 50% 50%;
  text-align: center;
  line-height: 40px;
  font-size: 16px;
  color: #ccc;
  font-family: "copenhagen-icons";
}

[dir="rtl"] .profile-activity::before {
  right: 0;
}

@media (min-width: 768px) {
  .profile-activity::before {
    left: -14px;
  }
  [dir="rtl"] .profile-activity::before {
    right: -14px;
  }
}

.profile-articles > .profile-contribution::before,
.profile-activity-list > li[class$="-article"]::before {
  content: "\1f4c4";
}

.profile-posts > .profile-contribution::before,
.profile-activity-list > li[class$="-post"]::before {
  content: "\1f4d4";
}

.profile-comments > .profile-contribution::before,
.profile-activity-list > li[class$="-comment"]::before {
  content: "\1f4ac";
  line-height: 35px;
}

/***** Search results *****/
.search-results {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .search-results {
    flex-direction: row;
  }
}

.search-results-column {
  flex: 1;
}

@media (min-width: 1024px) {
  .search-results-column {
    flex: 0 0 45%;
  }
}

.search-results-list {
  margin-bottom: 25px;
}

.search-results-list > li {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.search-results-list > li:first-child {
  border-top: 1px solid #ddd;
}

.search-result-description {
  margin-top: 15px;
  word-break: break-word;
}

.search-result-votes, .search-result-meta-count {
  color: #666;
  display: inline-block;
  font-size: 13px;
  font-weight: 300;
  padding: 4px 5px;
  position: relative;
}

.search-result-votes::before, .search-result-meta-count::before {
  color: #0072EF;
}

[dir="ltr"] .search-result-votes, [dir="ltr"] .search-result-meta-count {
  margin-left: 5px;
}

[dir="ltr"] .search-result-votes::before, [dir="ltr"] .search-result-meta-count::before {
  margin-right: 3px;
}

[dir="rtl"] .search-result-votes, [dir="rtl"] .search-result-meta-count {
  margin-right: 5px;
}

[dir="rtl"] .search-result-votes::before, [dir="rtl"] .search-result-meta-count::before {
  margin-left: 3px;
}

.search-result-votes::before {
  content: "\1F44D";
}

.search-result-meta-count::before {
  content: "\1F4AC";
}

.search-result .meta-group {
  align-items: center;
}

.search-result-breadcrumbs {
  margin: 0;
}

.search-result-breadcrumbs li:last-child::after {
  content: "·";
  display: inline-block;
  margin: 0 5px;
}

/* Don't display CJK results in italic */
/* Add a yellow background instead */
html[lang|="zh"] .search-result-description em,
html[lang|="ko"] .search-result-description em,
html[lang|="ja"] .search-result-description em {
  font-style: normal;
  background: yellow;
}


/* HB */
@charset "UTF-8";

@font-face{font-family:Gotham;src:url({{asset 'gotham-thin.woff'}}) format("woff");font-style:normal;font-weight:200}@font-face{font-family:Gotham;src:url({{asset 'gotham-light.woff'}}) format("woff");font-style:normal;font-weight:300}@font-face{font-family:Gotham;src:url({{asset 'gotham-lightitalic.woff'}}) format("woff");font-style:italic;font-weight:300}@font-face{font-family:Gotham;src:url({{asset 'gotham-book.woff'}}) format("woff");font-style:normal;font-weight:400}@font-face{font-family:Gotham;src:url({{asset 'gotham-bookitalic.woff'}}) format("woff");font-style:italic;font-weight:400}@font-face{font-family:Gotham;src:url({{asset 'Gotham-Medium.woff'}}) format("woff");font-style:normal;font-weight:500}@font-face{font-family:Gotham;src:url({{asset 'gotham-bold.woff'}}) format("woff");font-style:normal;font-weight:700}@font-face{font-family:Gotham;src:url({{asset 'gotham-bolditalic.woff'}}) format("woff");font-style:italic;font-weight:700}

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  height: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

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

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "Gotham", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #4d596b;
  background-color: #fff;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a {
  color: #298FC2;
  text-decoration: none;
}

a:hover, a:focus {
  color: #1c6083;
  text-decoration: none;
}

a.disabled {
  color: #818a91;
  cursor: default;
}

figure {
  margin: 0;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #eceeef;
  margin: 1em 0;
  padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: 400;
  line-height: 1.2;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
p,
ul,
ol {
  margin: 0 0 24px;
}

h1,
.h1 {
  font-size: 40px;
}

h2,
.h2 {
  font-size: 28px;
}

h3,
.h3 {
  font-size: 24px;
}

h4,
.h4 {
  font-size: 20px;
}

h5,
.h5 {
  font-size: 18px;
}

h6,
.h6 {
  font-size: 16px;
}

b,
strong {
  font-weight: 600;
}

small,
.small {
  font-size: 80%;
  font-weight: normal;
  line-height: 1;
}

dl {
  margin-top: 0;
  margin-bottom: 24px;
}

dt,
dd {
  line-height: 1.5;
  margin-bottom: 12px;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

.dl-horizontal:before, .dl-horizontal:after {
  display: table;
  content: "";
}

.dl-horizontal:after {
  clear: both;
}

.dl-horizontal dt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .dl-horizontal dt {
    width: 30%;
    float: left;
    clear: both;
    padding-right: 15px;
  }
}

@media (min-width: 768px) {
  .dl-horizontal dd {
    width: 70%;
    float: right;
  }
}

abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #818a91;
}

blockquote {
  font-style: italic;
  font-family: Georgia, "Times New Roman", Times, serif;
  background-color: #f7f7f9;
  padding: 12px 24px;
  margin: 0 0 24px;
  border-left: 5px solid #eceeef;
}

blockquote.is-colored {
  border-left: 5px solid #298FC2;
}

blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}

code {
  border-radius: 4px !important;
  padding: 20px !important;
}

address {
  margin-bottom: 24px;
  font-style: normal;
  line-height: 1.5;
}

.clearfix:before, .clearfix:after {
  display: table;
  content: "";
}

.clearfix:after {
  clear: both;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.list-unstyled {
  list-style: none;
  padding-left: 0;
}

.is-hidden,
.hidden {
  display: none !important;
}

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.nesty-input {
  display: block;
  width: 100%;
  height: auto;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 1.5;
  color: #55595c;
  background-color: #fff;
  background-image: none;
  border: 2px solid #eceeef;
  border-radius: 4px;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  background-clip: padding-box;
}

select:focus,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.nesty-input:focus {
  border-color: #9ed5e7;
  outline: 0;
}

select::-moz-placeholder,
textarea::-moz-placeholder,
input[type="text"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="datetime"]::-moz-placeholder,
input[type="datetime-local"]::-moz-placeholder,
input[type="date"]::-moz-placeholder,
input[type="month"]::-moz-placeholder,
input[type="time"]::-moz-placeholder,
input[type="week"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="url"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="color"]::-moz-placeholder,
.nesty-input::-moz-placeholder {
  color: #999;
  opacity: 1;
}

select:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input[type="text"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="datetime"]:-ms-input-placeholder,
input[type="datetime-local"]:-ms-input-placeholder,
input[type="date"]:-ms-input-placeholder,
input[type="month"]:-ms-input-placeholder,
input[type="time"]:-ms-input-placeholder,
input[type="week"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="url"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="color"]:-ms-input-placeholder,
.nesty-input:-ms-input-placeholder {
  color: #999;
}

select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input[type="text"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="datetime"]::-webkit-input-placeholder,
input[type="datetime-local"]::-webkit-input-placeholder,
input[type="date"]::-webkit-input-placeholder,
input[type="month"]::-webkit-input-placeholder,
input[type="time"]::-webkit-input-placeholder,
input[type="week"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="url"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="color"]::-webkit-input-placeholder,
.nesty-input::-webkit-input-placeholder {
  color: #999;
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 24px;
  font-size: 24px;
  line-height: inherit;
  color: #373a3c;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 12px;
  font-weight: 600;
}

input[type="search"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}

input[type="file"] {
  display: block;
}

input[type="range"] {
  display: block;
  width: 100%;
}

select[multiple],
select[size] {
  height: auto;
}

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

output {
  display: block;
  padding-top: 7px;
  font-size: 16px;
  line-height: 1.5;
  color: #55595c;
}

select {
  height: 38px;
}

textarea {
  resize: vertical;
  height: 114px;
}

input[type="search"] {
  -webkit-appearance: none;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"],
  input[type="time"],
  input[type="datetime-local"],
  input[type="month"] {
    line-height: 38px;
  }
}

.form-field {
  margin-bottom: 24px;
}

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

.form-field.boolean {
  position: relative;
  padding-left: 20px;
}

.form-field.boolean input[type="checkbox"] {
  position: absolute;
  left: 0;
}

.form-field.boolean label {
  min-height: 24px;
  margin-bottom: 0;
  cursor: pointer;
}

input[type="radio"][disabled], input[type="radio"].disabled,
fieldset[disabled] input[type="radio"],
input[type="checkbox"][disabled],
input[type="checkbox"].disabled,
fieldset[disabled]
input[type="checkbox"] {
  cursor: not-allowed;
}

.help-block, .form-field p {
  font-size: 90%;
  display: block;
  margin-top: 10px;
  margin-bottom: 15px;
  color: #8c99ac;
}

.btn, input[type="submit"], [role="button"], .lines-button, .satisfaction-box input[type=radio] ~ label, .topbar .login, .community-recent-activity .recent-activity-controls a {
  padding: 6px 12px 6px 12px;
  font-size: 11px;
  line-height: 1.5;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 0;
  font-weight: 700;
  font-family: "Gotham", sans-serif;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1px;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-image: none;
  border: 2px solid transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

.btn:focus, input[type="submit"]:focus, [role="button"]:focus, .lines-button:focus, .satisfaction-box input[type=radio] ~ label:focus, .topbar .login:focus, .community-recent-activity .recent-activity-controls a:focus, .btn:active:focus, input[type="submit"]:active:focus, [role="button"]:active:focus, .lines-button:active:focus, .satisfaction-box input[type=radio] ~ label:active:focus, .topbar .login:active:focus, .community-recent-activity .recent-activity-controls a:active:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.btn:hover, input[type="submit"]:hover, [role="button"]:hover, .lines-button:hover, .satisfaction-box input[type=radio] ~ label:hover, .topbar .login:hover, .community-recent-activity .recent-activity-controls a:hover, .btn:focus, input[type="submit"]:focus, [role="button"]:focus, .lines-button:focus, .satisfaction-box input[type=radio] ~ label:focus, .topbar .login:focus, .community-recent-activity .recent-activity-controls a:focus {
  color: #27d2d9;
  text-decoration: none;
}

.btn:active, input[type="submit"]:active, [role="button"]:active, .lines-button:active, .satisfaction-box input[type=radio] ~ label:active, .topbar .login:active, .community-recent-activity .recent-activity-controls a:active {
  outline: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn--default {
  color: #27d2d9;
  background-color: transparent;
  border-color: #27d2d9;
}

.btn--default:hover, .btn--default:focus, .btn--default:active {
  color: #1da0a6;
  background-color: transparent;
  border-color: #1da0a6;
}

.btn--default:active {
  background-image: none;
}

.btn--primary {
  color: #fff;
  background-color: #298FC2;
  border-color: #298FC2;
}

.btn--primary:hover, .btn--primary:focus, .btn--primary:active {
  color: #e0e0e0;
  background-color: #207098;
  border-color: #1e6a8f;
}

.btn--primary:active {
  background-image: none;
}

.btn--success {
  color: #fff;
  background-color: #27d2d9;
  border-color: #27d2d9;
}

.btn--success:hover, .btn--success:focus, .btn--success:active {
  color: #e0e0e0;
  background-color: #1fa9ae;
  border-color: #1da0a6;
}

.btn--success:active {
  background-image: none;
}

.btn--warning {
  color: #f25f5c;
  background-color: transparent;
  border-color: #ee8703;
}

.btn--warning:hover, .btn--warning:focus, .btn--warning:active {
  color: #ca7303;
  background-color: transparent;
  border-color: #b16502;
}

.btn--warning:active {
  background-image: none;
}

.btn--danger {
  color: #fff;
  background-color: #ff4b46;
  border-color: #ff322d;
}

.btn--danger:hover, .btn--danger:focus, .btn--danger:active {
  color: #e0e0e0;
  background-color: #ff1913;
  border-color: #ee0600;
}

.btn--danger:active {
  background-image: none;
}

.btn--topbar {
  color: #298FC2;
  background-color: transparent;
  border-color: #298FC2;
}

.btn--topbar:hover, .btn--topbar:focus, .btn--topbar:active {
  color: #1e6a8f;
  background-color: transparent;
  border-color: #1e6a8f;
}

.btn--topbar:active {
  background-image: none;
}

input[type="submit"] {
  color: #fff;
  background-color: #f25f5c;
  border-color: #f25f5c;
}

input[type="submit"]:hover, input[type="submit"]:focus, input[type="submit"]:active {
  color: #e0e0e0;
  background-color: #f25f5c;
}

input[type="submit"]:active {
  background-image: none;
}

[role="button"] {
  color: #27d2d9;
  background-color: transparent;
  border-color: #27d2d9;
}

[role="button"]:hover, [role="button"]:focus, [role="button"]:active {
  color: #1da0a6;
  background-color: transparent;
  border-color: #1da0a6;
}

[role="button"]:active {
  background-image: none;
}

[role="button"]:active:focus {
  outline: none;
}

@media (min-width: 768px) {
  main {
    margin-top: 48px;
  } 
  main .homepage {
    margin-top: -48px;
  }
}

.container {
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 1030px) {
  .container {
    padding-right: 30px;
    padding-left: 30px;
  }
}

.container-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.topbar .container-inner {
  max-width: 1400px;
}

table {
  background-color: transparent;
}

caption {
  padding-top: 12px;
  padding-bottom: 12px;
  color: #818a91;
  text-align: left;
}

th {
  text-align: left;
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 24px;
}

.table th,
.table td {
  padding: 12px;
  vertical-align: top;
}

.table td {
  border-top: 1px solid #ddd;
}

.table thead th {
  vertical-align: bottom;
}

.table tbody + tbody {
  border-top: 1px solid #ddd;
}

.table .table {
  background-color: #fff;
}

.table--color-header th {
  background-color: #298FC2;
  color: #fff;
}

.table--striped th,
.table--striped td,
.table--striped thead th {
  border-color: #fff;
}

.table--striped tbody tr:nth-child(odd) {
  background-color: #eceeef;
  color: inherit;
}

.table--hover tbody tr:hover {
  background-color: #eceeef;
  color: inherit;
}

.table--bordered {
  border: 1px solid #d3d6d8;
}

.table--bordered td,
.table--bordered th {
  border-left: 1px solid #d3d6d8;
}

.table-responsive {
  min-height: 0.01%;
  overflow-x: auto;
}

@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 18px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}

.column {
  float: left;
  width: 100%;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.column--xs-1 {
  width: 8.33333%;
}

.column--xs-2 {
  width: 16.66667%;
}

.column--xs-3 {
  width: 25%;
}

.column--xs-4 {
  width: 33.33333%;
}

.column--xs-5 {
  width: 41.66667%;
}

.column--xs-6 {
  width: 50%;
}

.column--xs-7 {
  width: 58.33333%;
}

.column--xs-8 {
  width: 66.66667%;
}

.column--xs-9 {
  width: 75%;
}

.column--xs-10 {
  width: 83.33333%;
}

.column--xs-11 {
  width: 91.66667%;
}

.column--xs-12 {
  width: 100%;
}

.column--xs-pull-0 {
  right: auto;
}

.column--xs-pull-1 {
  right: 8.33333%;
}

.column--xs-pull-2 {
  right: 16.66667%;
}

.column--xs-pull-3 {
  right: 25%;
}

.column--xs-pull-4 {
  right: 33.33333%;
}

.column--xs-pull-5 {
  right: 41.66667%;
}

.column--xs-pull-6 {
  right: 50%;
}

.column--xs-pull-7 {
  right: 58.33333%;
}

.column--xs-pull-8 {
  right: 66.66667%;
}

.column--xs-pull-9 {
  right: 75%;
}

.column--xs-pull-10 {
  right: 83.33333%;
}

.column--xs-pull-11 {
  right: 91.66667%;
}

.column--xs-pull-12 {
  right: 100%;
}

.column--xs-push-0 {
  left: auto;
}

.column--xs-push-1 {
  left: 8.33333%;
}

.column--xs-push-2 {
  left: 16.66667%;
}

.column--xs-push-3 {
  left: 25%;
}

.column--xs-push-4 {
  left: 33.33333%;
}

.column--xs-push-5 {
  left: 41.66667%;
}

.column--xs-push-6 {
  left: 50%;
}

.column--xs-push-7 {
  left: 58.33333%;
}

.column--xs-push-8 {
  left: 66.66667%;
}

.column--xs-push-9 {
  left: 75%;
}

.column--xs-push-10 {
  left: 83.33333%;
}

.column--xs-push-11 {
  left: 91.66667%;
}

.column--xs-push-12 {
  left: 100%;
}

.column--xs-offset-0 {
  margin-left: 0%;
}

.column--xs-offset-1 {
  margin-left: 8.33333%;
}

.column--xs-offset-2 {
  margin-left: 16.66667%;
}

.column--xs-offset-3 {
  margin-left: 25%;
}

.column--xs-offset-4 {
  margin-left: 33.33333%;
}

.column--xs-offset-5 {
  margin-left: 41.66667%;
}

.column--xs-offset-6 {
  margin-left: 50%;
}

.column--xs-offset-7 {
  margin-left: 58.33333%;
}

.column--xs-offset-8 {
  margin-left: 66.66667%;
}

.column--xs-offset-9 {
  margin-left: 75%;
}

.column--xs-offset-10 {
  margin-left: 83.33333%;
}

.column--xs-offset-11 {
  margin-left: 91.66667%;
}

.column--xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 768px) {
  .column--sm-1 {
    width: 8.33333%;
  }
  .column--sm-2 {
    width: 16.66667%;
  }
  .column--sm-3 {
    width: 25%;
  }
  .column--sm-4 {
    width: 33.33333%;
  }
  .column--sm-5 {
    width: 41.66667%;
  }
  .column--sm-6 {
    width: 50%;
  }
  .column--sm-7 {
    width: 58.33333%;
  }
  .column--sm-8 {
    width: 66.66667%;
  }
  .column--sm-9 {
    width: 75%;
  }
  .column--sm-10 {
    width: 83.33333%;
  }
  .column--sm-11 {
    width: 91.66667%;
  }
  .column--sm-12 {
    width: 100%;
  }
  .column--sm-pull-0 {
    right: auto;
  }
  .column--sm-pull-1 {
    right: 8.33333%;
  }
  .column--sm-pull-2 {
    right: 16.66667%;
  }
  .column--sm-pull-3 {
    right: 25%;
  }
  .column--sm-pull-4 {
    right: 33.33333%;
  }
  .column--sm-pull-5 {
    right: 41.66667%;
  }
  .column--sm-pull-6 {
    right: 50%;
  }
  .column--sm-pull-7 {
    right: 58.33333%;
  }
  .column--sm-pull-8 {
    right: 66.66667%;
  }
  .column--sm-pull-9 {
    right: 75%;
  }
  .column--sm-pull-10 {
    right: 83.33333%;
  }
  .column--sm-pull-11 {
    right: 91.66667%;
  }
  .column--sm-pull-12 {
    right: 100%;
  }
  .column--sm-push-0 {
    left: auto;
  }
  .column--sm-push-1 {
    left: 8.33333%;
  }
  .column--sm-push-2 {
    left: 16.66667%;
  }
  .column--sm-push-3 {
    left: 25%;
  }
  .column--sm-push-4 {
    left: 33.33333%;
  }
  .column--sm-push-5 {
    left: 41.66667%;
  }
  .column--sm-push-6 {
    left: 50%;
  }
  .column--sm-push-7 {
    left: 58.33333%;
  }
  .column--sm-push-8 {
    left: 66.66667%;
  }
  .column--sm-push-9 {
    left: 75%;
  }
  .column--sm-push-10 {
    left: 83.33333%;
  }
  .column--sm-push-11 {
    left: 91.66667%;
  }
  .column--sm-push-12 {
    left: 100%;
  }
  .column--sm-offset-0 {
    margin-left: 0%;
  }
  .column--sm-offset-1 {
    margin-left: 8.33333%;
  }
  .column--sm-offset-2 {
    margin-left: 16.66667%;
  }
  .column--sm-offset-3 {
    margin-left: 25%;
  }
  .column--sm-offset-4 {
    margin-left: 33.33333%;
  }
  .column--sm-offset-5 {
    margin-left: 41.66667%;
  }
  .column--sm-offset-6 {
    margin-left: 50%;
  }
  .column--sm-offset-7 {
    margin-left: 58.33333%;
  }
  .column--sm-offset-8 {
    margin-left: 66.66667%;
  }
  .column--sm-offset-9 {
    margin-left: 75%;
  }
  .column--sm-offset-10 {
    margin-left: 83.33333%;
  }
  .column--sm-offset-11 {
    margin-left: 91.66667%;
  }
  .column--sm-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 992px) {
  .column--md-1 {
    width: 8.33333%;
  }
  .column--md-2 {
    width: 16.66667%;
  }
  .column--md-3 {
    width: 25%;
  }
  .column--md-4 {
    width: 33.33333%;
  }
  .column--md-5 {
    width: 41.66667%;
  }
  .column--md-6 {
    width: 50%;
  }
  .column--md-7 {
    width: 58.33333%;
  }
  .column--md-8 {
    width: 66.66667%;
  }
  .column--md-9 {
    width: 75%;
  }
  .column--md-10 {
    width: 83.33333%;
  }
  .column--md-11 {
    width: 91.66667%;
  }
  .column--md-12 {
    width: 100%;
  }
  .column--md-pull-0 {
    right: auto;
  }
  .column--md-pull-1 {
    right: 8.33333%;
  }
  .column--md-pull-2 {
    right: 16.66667%;
  }
  .column--md-pull-3 {
    right: 25%;
  }
  .column--md-pull-4 {
    right: 33.33333%;
  }
  .column--md-pull-5 {
    right: 41.66667%;
  }
  .column--md-pull-6 {
    right: 50%;
  }
  .column--md-pull-7 {
    right: 58.33333%;
  }
  .column--md-pull-8 {
    right: 66.66667%;
  }
  .column--md-pull-9 {
    right: 75%;
  }
  .column--md-pull-10 {
    right: 83.33333%;
  }
  .column--md-pull-11 {
    right: 91.66667%;
  }
  .column--md-pull-12 {
    right: 100%;
  }
  .column--md-push-0 {
    left: auto;
  }
  .column--md-push-1 {
    left: 8.33333%;
  }
  .column--md-push-2 {
    left: 16.66667%;
  }
  .column--md-push-3 {
    left: 25%;
  }
  .column--md-push-4 {
    left: 33.33333%;
  }
  .column--md-push-5 {
    left: 41.66667%;
  }
  .column--md-push-6 {
    left: 50%;
  }
  .column--md-push-7 {
    left: 58.33333%;
  }
  .column--md-push-8 {
    left: 66.66667%;
  }
  .column--md-push-9 {
    left: 75%;
  }
  .column--md-push-10 {
    left: 83.33333%;
  }
  .column--md-push-11 {
    left: 91.66667%;
  }
  .column--md-push-12 {
    left: 100%;
  }
  .column--md-offset-0 {
    margin-left: 0%;
  }
  .column--md-offset-1 {
    margin-left: 8.33333%;
  }
  .column--md-offset-2 {
    margin-left: 16.66667%;
  }
  .column--md-offset-3 {
    margin-left: 25%;
  }
  .column--md-offset-4 {
    margin-left: 33.33333%;
  }
  .column--md-offset-5 {
    margin-left: 41.66667%;
  }
  .column--md-offset-6 {
    margin-left: 50%;
  }
  .column--md-offset-7 {
    margin-left: 58.33333%;
  }
  .column--md-offset-8 {
    margin-left: 66.66667%;
  }
  .column--md-offset-9 {
    margin-left: 75%;
  }
  .column--md-offset-10 {
    margin-left: 83.33333%;
  }
  .column--md-offset-11 {
    margin-left: 91.66667%;
  }
  .column--md-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 1200px) {
  .column--lg-1 {
    width: 8.33333%;
  }
  .column--lg-2 {
    width: 16.66667%;
  }
  .column--lg-3 {
    width: 25%;
  }
  .column--lg-4 {
    width: 33.33333%;
  }
  .column--lg-5 {
    width: 41.66667%;
  }
  .column--lg-6 {
    width: 50%;
  }
  .column--lg-7 {
    width: 58.33333%;
  }
  .column--lg-8 {
    width: 66.66667%;
  }
  .column--lg-9 {
    width: 75%;
  }
  .column--lg-10 {
    width: 83.33333%;
  }
  .column--lg-11 {
    width: 91.66667%;
  }
  .column--lg-12 {
    width: 100%;
  }
  .column--lg-pull-0 {
    right: auto;
  }
  .column--lg-pull-1 {
    right: 8.33333%;
  }
  .column--lg-pull-2 {
    right: 16.66667%;
  }
  .column--lg-pull-3 {
    right: 25%;
  }
  .column--lg-pull-4 {
    right: 33.33333%;
  }
  .column--lg-pull-5 {
    right: 41.66667%;
  }
  .column--lg-pull-6 {
    right: 50%;
  }
  .column--lg-pull-7 {
    right: 58.33333%;
  }
  .column--lg-pull-8 {
    right: 66.66667%;
  }
  .column--lg-pull-9 {
    right: 75%;
  }
  .column--lg-pull-10 {
    right: 83.33333%;
  }
  .column--lg-pull-11 {
    right: 91.66667%;
  }
  .column--lg-pull-12 {
    right: 100%;
  }
  .column--lg-push-0 {
    left: auto;
  }
  .column--lg-push-1 {
    left: 8.33333%;
  }
  .column--lg-push-2 {
    left: 16.66667%;
  }
  .column--lg-push-3 {
    left: 25%;
  }
  .column--lg-push-4 {
    left: 33.33333%;
  }
  .column--lg-push-5 {
    left: 41.66667%;
  }
  .column--lg-push-6 {
    left: 50%;
  }
  .column--lg-push-7 {
    left: 58.33333%;
  }
  .column--lg-push-8 {
    left: 66.66667%;
  }
  .column--lg-push-9 {
    left: 75%;
  }
  .column--lg-push-10 {
    left: 83.33333%;
  }
  .column--lg-push-11 {
    left: 91.66667%;
  }
  .column--lg-push-12 {
    left: 100%;
  }
  .column--lg-offset-0 {
    margin-left: 0%;
  }
  .column--lg-offset-1 {
    margin-left: 8.33333%;
  }
  .column--lg-offset-2 {
    margin-left: 16.66667%;
  }
  .column--lg-offset-3 {
    margin-left: 25%;
  }
  .column--lg-offset-4 {
    margin-left: 33.33333%;
  }
  .column--lg-offset-5 {
    margin-left: 41.66667%;
  }
  .column--lg-offset-6 {
    margin-left: 50%;
  }
  .column--lg-offset-7 {
    margin-left: 58.33333%;
  }
  .column--lg-offset-8 {
    margin-left: 66.66667%;
  }
  .column--lg-offset-9 {
    margin-left: 75%;
  }
  .column--lg-offset-10 {
    margin-left: 83.33333%;
  }
  .column--lg-offset-11 {
    margin-left: 91.66667%;
  }
  .column--lg-offset-12 {
    margin-left: 100%;
  }
}

.meta {
  font-size: 14px;
  color: #979797;
}

.meta__item {
  display: inline-block;
  margin-right: 6px;
}

.meta__item + .meta__item:before {
  margin-right: 6px;
  font-size: 10px;
  content: "\2022";
}

.meta--profile {
  margin-bottom: 0;
}

.lines-button {
  padding: 15px 7.5px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .lines-button {
    float: right;
  }
}

@media (min-width: 768px) {
  .lines-button {
    display: none;
  }
}

.lines-button:hover {
  opacity: 1;
}

.lines-button:active {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: 0;
  transition: 0;
}

.lines-button:focus {
  outline: 0;
}

.lines {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #4d596b;
  border-radius: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.lines:before, .lines:after {
  position: absolute;
  left: 0;
  content: '';
  -webkit-transform-origin: 2.14286px center;
          transform-origin: 2.14286px center;
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #4d596b;
  border-radius: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.lines:before {
  top: 7.5px;
}

.lines:after {
  top: -7.5px;
}

.lines-button.is-active {
  -webkit-transform: scale3d(0.8, 0.8, 0.8);
          transform: scale3d(0.8, 0.8, 0.8);
}

.lines-button.is-active .lines {
  background: transparent;
}

.lines-button.is-active .lines:before, .lines-button.is-active .lines:after {
  top: 0;
  width: 30px;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}

.lines-button.is-active .lines:before {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
          transform: rotate3d(0, 0, 1, 45deg);
}

.lines-button.is-active .lines:after {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
          transform: rotate3d(0, 0, 1, -45deg);
}

.logo-wrapper {
  display: inline-block;
  vertical-align: middle;
}

.logo img {
  display: block;
  width: 191px;
}

#user-menu {
  margin: 0 !important;
  border: 0 !important;
}

#user-menu [role="menuitem"] {
  white-space: nowrap;
}

#user > .btn {
  padding-right: 0;
  padding-left: 0;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

@-webkit-keyframes bounce {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -25px, 0);
            transform: translate3d(0, -25px, 0);
  }
  25% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }
  50% {
    -webkit-transform: translate3d(0, -6px, 0);
            transform: translate3d(0, -6px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 2px, 0);
            transform: translate3d(0, 2px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes bounce {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -25px, 0);
            transform: translate3d(0, -25px, 0);
  }
  25% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }
  50% {
    -webkit-transform: translate3d(0, -6px, 0);
            transform: translate3d(0, -6px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 2px, 0);
            transform: translate3d(0, 2px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 767px) {
  #user-dropdown {
    position: static;
    display: inline;
    float: none;
    background: transparent !important;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    opacity: 1 !important;
  }
  #user-dropdown:before, #user-dropdown:after {
    display: none;
  }
}

#user-dropdown [role="menuitem"] {
  padding: 10px 0;
}

@media (max-width: 767px) {
  #user-dropdown [role="menuitem"] {
    color: inherit;
  }
  #user-dropdown [role="menuitem"]:hover {
    background-color: transparent;
  }
}

@media (min-width: 768px) {
  #user-dropdown [role="menuitem"] {
    padding-right: 16px;
    padding-left: 16px;
  }
}

#user-dropdown [role="separator"] {
  padding: 0;
  margin: 0;
}

@media (max-width: 767px) {
  #user-dropdown [role="separator"] {
    border-color: rgba(255, 255, 255, 0.15);
  }
}

@media (min-width: 768px) {
  #user-dropdown[aria-expanded="true"] {
    -webkit-animation: bounce 0.6s ease-out;
            animation: bounce 0.6s ease-out;
  }
}

#user-dropdown:before, #user-dropdown:after {
  color: inherit;
}

#user {
  display: block;
}

@media (min-width: 768px) {
  #user {
    display: inline-block;
    vertical-align: middle;
  }
}

#user .dropdown-toggle {
  padding-right: 0;
  padding-left: 0;
  font-size: 14px;
  color: inherit;
}

#user .dropdown-toggle, #user .dropdown-toggle:active, #user .dropdown-toggle:hover {
  border-color: transparent;
}

#user .dropdown-toggle:before, #user .dropdown-toggle:after {
  color: inherit;
}

@media (max-width: 767px) {
  #user .dropdown-toggle:before, #user .dropdown-toggle:after {
    display: none;
  }
}

#user-password,
#user-profile {
  color: #4d596b;
}

@media (max-width: 767px) {
  #user-password,
  #user-profile {
    min-width: 1px !important;
    padding: 6px 12px !important;
    margin-top: 6px;
    background-color: #fff;
    border-radius: 4px;
  }
}

#user-password [role="separator"],
#user-profile [role="separator"] {
  padding: 6px 12px !important;
}

#user-password form,
#user-profile form {
  padding: 6px 12px !important;
}

#user-profile {
  font-size: 14px !important;
}

#user-profile dt {
  padding: 8px 4px !important;
}

#user-profile dt label {
  margin-bottom: 0 !important;
}

#user-profile input[type="text"] {
  font-size: 14px !important;
}

#password-form label {
  font-size: 14px !important;
}

#password-submit {
  float: none !important;
  margin: 0 !important;
  background: auto !important;
}

.breadcrumbs {
  padding: 8px 0 0;
  margin-bottom: 24px;
  list-style: none;
  background-color: transparent;
  border-radius: 4px;
}

.breadcrumbs > li {
  display: inline-block;
}

.breadcrumbs > li + li:before {
  padding: 0 5px;
  color: #666;
  content: "› ";
}

.breadcrumbs > li a {
  color: #666;
}

.breadcrumbs--search-results {
  padding: 0;
  margin-bottom: 12px;
  font-size: 14px;
}

.help-center-name {
  display: inline-block;
  margin: 0;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .help-center-name {
    display: none;
  }
}

.hero-bg {
  position: absolute;
  top: -10%;
  left: 0;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: 50% 40%;
  background-size: cover;
  width: 100%;
  height: 150%;
}

.hero-unit {
  position: relative;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  margin-top: -24px;
  margin-bottom: 48px;
  padding: 15% 15px 10%;
  overflow: hidden;
}

.hero-unit:after {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.4;
  z-index: 1;
  background-color: #000;
  width: 100%;
  height: 100%;
  content: '';
}

/* @media (min-width: 768px) {
  .hero-unit {
    margin-top: -48px;
    padding-bottom: 5%;
  }
} */

@media (min-width: 851px) {
  .hero-unit {
    margin-top: 0;
  }
}

.language-selector {
  display: inline-block;
  vertical-align: middle;
}

.avatar {
  position: relative;
  display: inline-block;
}

.avatar--agent:before {
  display: inline-block;
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 0;
  bottom: 0;
  margin-right: -4px;
  margin-bottom: -4px;
  font-size: 14px;
  color: #27d2d9;
  content: "\f19d";
}

.user-avatar {
  border-radius: 100%;
}

.user-avatar--default {
  width: 40px;
  height: 40px;
}

#user .user-avatar {
  width: 30px;
  height: 30px;
}

.search {
  position: relative;
}

.search:before {
  position: absolute;
  top: 50%;
  left: 10px;
  /* margin-top: -9px; */
  font-size: 18px;
  color: #4d596b;
  content: "\f002";
  display: inline-block;
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.searchbox {
  margin-top: 24px;
}

.searchbox-suggestions ul {
  padding-left: 0;
  margin-bottom: 24px;
  list-style: none;
}

.searchbox-suggestions li {
  margin-bottom: 8px;
}

.search-box {
  position: relative;
}

.search-box #query {
  padding-left: 35px;
  -webkit-transition: border 0.3s ease;
  transition: border 0.3s ease;
}

.search-box--hero-unit {
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  -webkit-transition: top 0.3s ease;
  transition: top 0.3s ease;
}

.search-box--hero-unit .search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.search-box--hero-unit .search:before {
  left: 20px;
  font-size: 22px;
}

.search-box--hero-unit #query {
  height: 50px;
  padding: 0 55px;
  font-size: 20px;
  border-color: #fff;
  background-color: rgba(255, 255, 255, 1);
  -webkit-transition: border 0.3s ease, background-color 0.3s ease;
  transition: border 0.3s ease, background-color 0.3s ease;
}

.search-box--hero-unit #query:focus {
  background-color: #fff;
}

@media (min-width: 992px) {
  .search-box--hero-unit #query {
    height: 60px;
  }
}

.search-box--hero-unit input[type="submit"] {
  display: inline-block;
  height: 60px;
  margin-left: 16px;
  padding-right: 16px;
  padding-left: 16px;
  color: #fff;
  background-color: #27d2d9;
  border-color: #27d2d9;
  font-size: 13px;
}

.search-box--hero-unit input[type="submit"]:hover, .search-box--hero-unit input[type="submit"]:focus, .search-box--hero-unit input[type="submit"]:active {
  color: #e0e0e0;
  background-color: #1fa9ae;
  border-color: #1da0a6;
}

.search-box--hero-unit input[type="submit"]:active {
  background-image: none;
}

@media (max-width: 991px) {
  .search-box--hero-unit input[type="submit"] {
    display: none;
  }
}

.search-box--small {
  margin-bottom: 48px;
}

.search-results-page {
  margin-bottom: 48px;
}

.search-results-count {
  font-size: 20px;
}

.search-result {
  margin-bottom: 24px;
  border-bottom: 2px solid #eceeef;
}

.search-result__title {
  margin-bottom: 12px;
  font-weight: 600;
}

.search-result__description {
  margin-bottom: 12px;
  font-size: 14px;
}

.search-result__description:empty {
  display: none;
}

.search-result__description em {
  padding: 0 3px;
  font-style: normal;
  font-weight: 600;
  background-color: #fff3ca;
  border-radius: 3px;
}

.search-result__meta {
  margin-bottom: 12px;
}

.search-result-votes {
  display: inline-block;
  padding: 2px 4px;
  font-size: 14px;
  color: #fff;
  background-color: #298FC2;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .category-page {
    margin-bottom: 48px;
  }
}

.category-description:empty {
  display: none;
}

.category-tree-item__title {
  padding-bottom: 12px;
  border-bottom: 2px solid #eceeef;
}

.category-tree-item__sections {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .category-tree-item__sections .section:nth-child(2n+1) {
    clear: left;
  }
}

@media (min-width: 992px) {
  .category-tree-item__sections .section:nth-child(2n+1) {
    clear: none;
  }
  .category-tree-item__sections .section:nth-child(3n+1) {
    clear: left;
  }
}

.category-tree-item__title-link {
  color: #298FC2;
}

.category-list {
  padding-left: 0;
  margin-bottom: 24px;
  list-style: none;
}

.category-list-item {
  position: relative;
  margin-bottom: 24px;
}

/*@media (min-width: 768px) {
  .category-list-item {
    display: table;
    height: 150px;
  }
}
*/
.category-list-item__link {
  display: flex;
  align-items: center;
  height: 135px;
  padding: 20px 30px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  background-color: #298FC2;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.category-list-item__link:active, .category-list-item__link:focus, .category-list-item__link:hover {
  color: #fff;
  text-decoration: none;
  background-color: #1e6a8f;
}

.category-list-item-icon-container {
  width: 30%;
  display: flex;
  justify-content: flex-end;
}

@media (min-width: 768px) {
  .category-list-item-icon-container {
  	width: 40%;
	}
}


.category-list-item-icon {
  max-height: 100px;
}

.category-list-item__icon--accessories {
  height: 95px;
}

.category-list-item__icon--getting-started-with-snoo {
  height: 75px;
}

.category-list-item__icon--snoo-app {
  height: 90px;
  padding-right: 20px;
}

.category-list-item__icon--sleep-support {
  height: 80px;
}

.category-list-item__icon--purchase-and-return-questions {
  height: 60px;
}

.category-list-item__icon--rental-questions {
  height: 75px;
}

/* @media (min-width: 768px) {
  .category-list-item__link {
    display: table-cell;
  }
} */

.category-list-item__title {
  margin-bottom: 0;
  font-weight: 500;
  text-align: left;
  margin-left: 20px;
  width: 60%;
}

.section-page {
  margin-bottom: 48px;
}

.section {
  margin-bottom: 24px;
}

.section__title {
  font-weight: 300;
}

.section__title-link {
  color: inherit;
}

.section-header {
  position: relative;
}

.section-subscribe {
  position: absolute;
  top: 0;
  right: 0;
}

.section-subscribe .dropdown-toggle {
  color: #27d2d9;
  background-color: transparent;
  border-color: #27d2d9;
}

.section-subscribe .dropdown-toggle:hover, .section-subscribe .dropdown-toggle:focus, .section-subscribe .dropdown-toggle:active {
  color: #1da0a6;
  background-color: transparent;
  border-color: #1da0a6;
}

.section-subscribe .dropdown-toggle:active {
  background-image: none;
}

.section-subscribe .dropdown-menu {
  right: 0;
  left: initial;
}

.section-title {
  padding-right: 120px;
}

@media (min-width: 768px) {
  .section-tree .section:nth-child(2n+1) {
    clear: left;
  }
}

@media (min-width: 992px) {
  .section-tree .section:nth-child(2n+1) {
    clear: none;
  }
  .section-tree .section:nth-child(3n+1) {
    clear: left;
  }
}

.article-page {
  margin-bottom: 48px;
}

.article {
  position: relative;
}

.article__title {
  font-size: 24px;
  font-weight: 300;
}

@media (min-width: 768px) {
  .article__title {
    font-size: 28px;
  }
}

@media (min-width: 992px) {
  .article__title {
    font-size: 40px;
  }
}

.article-meta {
  display: table;
  width: 100%;
  margin-bottom: 24px;
}

.article-meta__col {
  display: table-cell;
  vertical-align: top;
}

.article-meta__col--main {
  width: 100%;
  padding-right: 12px;
}

.article-subscribe,
.article-unsubscribe {
  color: #27d2d9;
  background-color: transparent;
  border-color: #27d2d9;
}

.article-subscribe:hover, .article-subscribe:focus, .article-subscribe:active,
.article-unsubscribe:hover,
.article-unsubscribe:focus,
.article-unsubscribe:active {
  color: #1da0a6;
  background-color: transparent;
  border-color: #1da0a6;
}

.article-subscribe:active,
.article-unsubscribe:active {
  background-image: none;
}

.article__body {
  margin-bottom: 24px;
}

.article__body h2,
.article__body .wysiwyg-font-size-x-large {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
}

.article__body .wysiwyg-font-size-large {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.article__body .wysiwyg-font-size-medium {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.article__body .wysiwyg-font-size-small {
  font-size: 14px;
}

.article__body ul,
.article__body ol {
  padding-left: 20px;
}

.article__body ul ul,
.article__body ul ol,
.article__body ol ul,
.article__body ol ol {
  margin-top: 12px;
}

.article__body ul li,
.article__body ol li {
  margin-bottom: 12px;
}

.article-vote {
  position: relative;
  padding: 24px 12px;
  border: 2px solid #eceeef;
  border-radius: 4px;
}

.article-vote-controls__item {
  color: #4d596b;
  background-color: #eceeef;
  border-color: #eceeef;
}

.article-vote-controls__item--up {
  margin-right: 5px;
}

.article-vote-controls__item:hover, .article-vote-controls__item:focus, .article-vote-controls__item:active {
  color: #333b47;
  background-color: #d0d5d8;
  border-color: #cbd0d3;
}

.article-vote-controls__item:active {
  background-image: none;
}

.article-vote-controls__item--voted {
  color: #38404d;
  border-color: #38404d;
}

@media (max-width: 767px) {
  .article-vote-question {
    display: block;
    margin-bottom: 12px;
  }
}

@media (min-width: 768px) {
  .article-vote-question {
    float: left;
    margin-right: 12px;
  }
}

.article-vote-controls {
  white-space: nowrap;
  display: flex;
}

@media (max-width: 767px) {
  .article-vote-controls {
    margin-bottom: 12px;
  }
}

.article-vote-count {
  display: block;
  font-size: 12px;
  color: #979797;
}

.article__share {
  margin-bottom: 24px;
}

.article__share ul {
  margin-top: 0;
}

.article-footer {
  margin-bottom: 24px;
}

.article__attachments {
  margin-bottom: 24px;
}

.article-more-questions {
  margin-bottom: 24px;
  clear: both;
}

.article-more-questions:empty {
  display: none;
}

.article-more-questions a {
  white-space: nowrap;
}

@media (max-width: 767px) {
  .article-sidebar {
    padding-top: 24px;
    border-top: 2px solid #eceeef;
  }
}

.comment-form__body {
  margin-bottom: 24px;
}

.article-list {
  list-style: none;
  padding-left: 0;
}

.article-list-item {
  margin-bottom: 12px;
}

.article-list-item__link {
  color: #666;
}

.article-list-item--is-promoted span {
  font-size: 10px;
  color: #298FC2;
  vertical-align: middle;
}

.comments__callout {
  font-size: 14px;
  color: #979797;
}

.comments__callout:empty {
  display: none;
}

.comments__list {
  padding-left: 0;
  list-style: none;
}

.comment-list-header {
  margin-bottom: 24px;
  border-bottom: 2px solid #eceeef;
  padding-bottom: 12px;
}

.comment-list-heading {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
}

.comment-sorter {
  margin-bottom: 24px;
  border-bottom: 2px solid #eceeef;
  padding-bottom: 24px;
}

@media (min-width: 768px) {
  .comment-sorter {
    display: table;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .comment-sorter__col {
    display: table-cell;
    vertical-align: middle;
  }
}

@media (max-width: 767px) {
  .comment-sorter__col--main {
    margin-bottom: 12px;
  }
}

@media (min-width: 768px) {
  .comment-sorter__col--main {
    padding-right: 12px;
  }
}

@media (min-width: 768px) {
  .comment-sorter__col--filters {
    text-align: right;
  }
}

.comment-sorter__item.is-active {
  font-weight: 600;
}

.comment-sorter__item + .comment-sorter__item:before {
  margin: 0 6px;
  font-size: 10px;
  content: '\2022';
}

.comment {
  margin-bottom: 24px;
  border-bottom: 2px solid #eceeef;
  padding-bottom: 24px;
}

.comment__inner {
  position: relative;
  padding-right: 52px;
}

.comments__content {
  position: relative;
  padding-right: 12px;
}

.comment__header {
  position: relative;
  margin-bottom: 24px;
}

.comment__voting-and-actions {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  text-align: center;
}

.comment__voting-and-actions .dropdown-toggle:after {
  margin-left: 0;
  display: inline-block;
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\f013';
}

.comment__official-heading {
  position: absolute;
  right: 36px;
  top: 0;
  width: auto;
  padding: 1px 6px;
  font-size: 14px;
  color: #fff;
  background-color: #298FC2;
  border-radius: 0 0 4px 4px;
}

.comment--official .comment__inner {
  position: relative;
  border: 2px solid #298FC2;
  border-radius: 4px;
  background-color: white;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
}

.comment-form {
  position: relative;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .comment-form {
    padding-left: 52px;
  }
}

.comment-form__avatar {
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 767px) {
  .comment-form__avatar {
    display: none;
  }
}

.comment__body {
  margin-bottom: 24px;
}

.comment__body ul {
  list-style: disc;
}

.comment__body ul,
.comment__body ol {
  padding-left: 20px;
}

.comment__body ul ul,
.comment__body ul ol,
.comment__body ol ul,
.comment__body ol ol {
  margin-top: 12px;
}

.comment__body ul li,
.comment__body ol li {
  margin-bottom: 12px;
}

.comment-form__attachments {
  margin-bottom: 24px;
}

.comment-form__mark-as-solved {
  position: relative;
}

.comment-form__comment-ccs ul {
  margin-bottom: 0;
}

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

.share li {
  position: relative;
  display: inline-block;
  margin-bottom: 5px;
  vertical-align: top;
}

.share a {
  display: block;
  width: 30px;
  height: 30px;
  overflow: hidden;
  line-height: 30px;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  background-color: #eceeef;
  border-color: #eceeef;
  border-radius: 4px;
}

.share a:before {
  position: relative;
  display: inline-block;
  width: 100%;
  font-family: FontAwesome;
  text-align: center;
}

.share-facebook {
  color: #3d5b95;
  background-color: #eceeef;
  border-color: #eceeef;
}

.share-facebook:hover, .share-facebook:focus, .share-facebook:active {
  color: #2b406a;
  background-color: #d0d5d8;
  border-color: #cbd0d3;
}

.share-facebook:active {
  background-image: none;
}

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

.share-twitter {
  color: #24aadd;
  background-color: #eceeef;
  border-color: #eceeef;
}

.share-twitter:hover, .share-twitter:focus, .share-twitter:active {
  color: #1a82a9;
  background-color: #d0d5d8;
  border-color: #cbd0d3;
}

.share-twitter:active {
  background-image: none;
}

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

.share-linkedin {
  color: #0976b4;
  background-color: #eceeef;
  border-color: #eceeef;
}

.share-linkedin:hover, .share-linkedin:focus, .share-linkedin:active {
  color: #06507a;
  background-color: #d0d5d8;
  border-color: #cbd0d3;
}

.share-linkedin:active {
  background-image: none;
}

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

.share-googleplus {
  color: #d23e30;
  background-color: #eceeef;
  border-color: #eceeef;
}

.share-googleplus:hover, .share-googleplus:focus, .share-googleplus:active {
  color: #a22e23;
  background-color: #d0d5d8;
  border-color: #cbd0d3;
}

.share-googleplus:active {
  background-image: none;
}

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

.my-activities-header {
  margin-bottom: 24px;
}

.my-activities-items {
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .my-activities-items {
    display: table;
    width: 100%;
  }
}

.my-activities-items__head {
  display: none;
  color: #979797;
}

@media (min-width: 768px) {
  .my-activities-items__head {
    display: table-header-group;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
  }
}

@media (min-width: 768px) {
  .my-activities-items__body {
    display: table-row-group;
  }
}

@media (min-width: 768px) {
  .my-activities-items__row {
    display: table-row;
  }
}

@media (min-width: 768px) {
  .my-activities-items__col {
    display: table-cell;
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eceeef;
  }
  .my-activities-items__col + .my-activities-items__col {
    padding-left: 12px;
  }
}

@media (max-width: 767px) {
  .my-activities-items__request-id {
    display: inline;
  }
}

@media (min-width: 768px) {
  .my-activities-items__request-id {
    display: none;
  }
}

.my-activities-menu ul {
  list-style: none;
  padding-left: 0;
}

.my-activities-menu__items {
  margin-bottom: 0;
}

.my-activities-menu__item {
  margin-bottom: 0;
}

.my-activities-menu__item a {
  display: block;
}

@media (min-width: 768px) {
  .my-activities-menu__item {
    float: left;
  }
}

@media (min-width: 768px) {
  .my-activities-menu__item + .my-activities-menu__item {
    margin-left: 12px;
  }
}

.my-activities-menu--main {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 2px solid #eceeef;
}

.my-activities-menu--main .my-activities-menu__item {
  padding: 6px 12px;
  background-color: #eceeef;
  border-radius: 4px;
}

@media (max-width: 767px) {
  .my-activities-menu--main .my-activities-menu__item {
    margin-bottom: 8px;
  }
}

.my-activities-menu--main .my-activities-menu__item.is-active {
  font-weight: 600;
  color: #4d596b;
}

.my-activities-menu--sub {
  margin-bottom: 24px;
}

.my-activities-menu--sub .my-activities-menu__item.is-active {
  font-weight: 600;
}

.my-activities-menu--sub .my-activities-menu__item a {
  display: inline-block;
}

@media (min-width: 768px) {
  .my-activities-menu--sub .my-activities-menu__item + .my-activities-menu__item:before {
    margin-right: 6px;
    font-size: 10px;
    content: "\2022";
  }
}

@media (max-width: 767px) {
  .my-activities-item {
    padding: 12px 12px;
    margin-bottom: 24px;
    border: 2px solid #eceeef;
    border-radius: 4px;
  }
}

.my-activities-item__meta {
  font-size: 14px;
  color: #979797;
}

@media (max-width: 767px) {
  .my-activities-item__meta {
    display: inline-block;
    margin-right: 6px;
  }
  .my-activities-item__meta + .my-activities-item__meta:before {
    margin-right: 6px;
    content: "\2022";
  }
}

.my-activities-item__title {
  font-weight: 400;
}

@media (max-width: 767px) {
  .my-activities-item__title {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .my-activities-item__icon {
    display: inline-block;
  }
}

@media (min-width: 768px) {
  .my-activities-item__icon {
    display: none;
  }
}

.request-table-toolbar {
  padding-top: 12px;
  padding-bottom: 6px;
  margin-bottom: 24px;
  background-color: #f9f9f9;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .request-table-toolbar {
    padding-top: 6px;
    padding-bottom: 12px;
  }
}

.request-table-toolbar label {
  font-size: 14px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .request-table-filters {
    display: table;
    width: 100%;
  }
}

.request-table-filters__item {
  padding-right: 12px;
  padding-left: 12px;
}

@media (max-width: 767px) {
  .request-table-filters__item {
    margin-bottom: 12px;
  }
}

@media (min-width: 768px) {
  .request-table-filters__item {
    display: table-cell;
    width: 33%;
    vertical-align: bottom;
  }
}

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

.request-table-organization__col {
  display: table-cell;
  vertical-align: middle;
}

.request-table-organization__col--main {
  width: 100%;
}

.request-table-organization__col--button {
  padding-left: 6px;
}

.request-table-organization__col--button [role="button"] {
  height: 38px;
  line-height: 38px;
  padding-top: 0;
  padding-bottom: 0;
}

.requests-sort-symbol {
  font-size: 0;
  display: inline-block;
  vertical-align: middle;
}

.requests-sort-symbol:after {
  font-family: FontAwesome;
  content: '\f0d7';
  display: inline-block;
  color: #979797;
  font-size: 14px;
  margin-left: 5px;
  margin-bottom: 2px;
}

.requests-link {
  white-space: nowrap;
  color: #979797;
}

.requests-link[href*="asc"] .requests-sort-symbol:after {
  content: '\f0d8';
}

.request-page {
  margin-bottom: 48px;
}

.request {
  position: relative;
}

.request-id {
  margin-bottom: 12px;
  font-weight: 600;
}

.request-subject {
  font-size: 24px;
}

@media (min-width: 992px) {
  .request-subject {
    font-size: 28px;
    font-weight: 300;
  }
}

.request-follow-up:empty {
  display: none;
}

.request-sidebar {
  padding: 24px 12px 0;
  margin-bottom: 24px;
  font-size: 14px;
  border: 2px solid #eceeef;
  border-radius: 4px;
}

.request-sidebar dd {
  margin-bottom: 12px;
}

.request-status {
  display: inline-block;
  padding: 1px 6px;
  font-size: 12px;
  color: #fff;
  border-radius: 4px;
  white-space: nowrap;
}

.request-status--solved,
.request-status--closed {
  background-color: #0db710;
}

.request-status--new,
.request-status--open {
  background-color: #ff4b46;
}

.request-status--answered {
  background-color: #f25f5c;
}

.new-request-page {
  margin-bottom: 48px;
}

.new-request-title {
  font-size: 24px;
}

@media (min-width: 768px) {
  .new-request-title {
    font-size: 28px;
  }
}

@media (min-width: 992px) {
  .new-request-title {
    font-size: 40px;
  }
}

.new-request-form {
  margin-bottom: 24px;
}

.upload-dropzone {
  padding: 24px 16px;
  border-color: #eceeef;
  border-radius: 4px;
}

.upload-dropzone,
.upload-dropzone a {
  font-size: 14px;
}

.intro-title {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  text-align: center;
}

@media (min-width: 768px) {
  .intro-title {
    font-size: 28px;
  }
}

@media (min-width: 992px) {
  .intro-title {
    margin-bottom: 36px;
    font-size: 40px;
  }
}

@media (max-width: 479px) {
  .custom-blocks {
    margin-bottom: 24px;
  }
}

.custom-block {
  margin-bottom: 24px;
}

@media (max-width: 479px) {
  .custom-block {
    float: none;
    width: 100%;
    padding: 0 16px;
  }
}

@media (min-width: 480px) {
  .custom-block {
    padding: 0 16px;
    text-align: center;
  }
}

@media (min-width: 768px) {
  .custom-block {
    margin-bottom: 24px;
  }
}

.custom-block__link {
  display: block;
}

@media (max-width: 479px) {
  .custom-block__link {
    display: table;
  }
}

.custom-block__link:active .custom-block__icon path, .custom-block__link:active .custom-block__icon rect, .custom-block__link:focus .custom-block__icon path, .custom-block__link:focus .custom-block__icon rect, .custom-block__link:hover .custom-block__icon path, .custom-block__link:hover .custom-block__icon rect {
  fill: #1c6083;
}

.custom-block__link:active .custom-block__icon circle, .custom-block__link:focus .custom-block__icon circle, .custom-block__link:hover .custom-block__icon circle {
  stroke: #1c6083;
}

.custom-block__icon {
  display: inline-block;
}

@media (min-width: 480px) {
  .custom-block__icon {
    margin-bottom: 24px;
  }
}

.custom-block__icon svg {
  width: 56px;
  height: 56px;
}

@media (min-width: 480px) {
  .custom-block__icon svg {
    width: 66px;
    height: 66px;
  }
}

.custom-block__icon circle,
.custom-block__icon rect,
.custom-block__icon path {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.custom-block__icon path, .custom-block__icon rect {
  fill: #298FC2;
}

.custom-block__icon circle {
  stroke: #298FC2;
}

.custom-block__title {
  font-size: 16px;
  font-weight: 600;
  color: #4d596b;
  text-transform: uppercase;
}

@media (max-width: 479px) {
  .custom-block__title {
    display: table-cell;
    width: 100%;
    padding-left: 12px;
  }
}

@media (min-width: 480px) {
  .custom-block__title {
    display: block;
  }
}

.dropdown-toggle:after {
  display: inline-block;
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 5px;
  color: inherit;
  content: '\f107';
}

.dropdown-menu {
  min-width: 170px !important;
  font-size: 14px;
  overflow: hidden;
}

.dropdown-menu [role=menuitem] {
  padding: 12px 12px;
  padding-right: 26px;
  white-space: normal;
  position: relative;
}

.dropdown-menu [role=menuitem][aria-selected=true]:after {
  display: inline-block;
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\f00c';
  position: absolute;
  right: 12px;
  top: 16px;
  margin-left: 10px !important;
}

.error-page {
  padding: 10% 0 10%;
  text-align: center;
}

.error-page__title {
  text-transform: capitalize;
}

.footer-submit-ticket {
  padding: 48px 16px 24px;
  margin-bottom: 48px;
  text-align: center;
  background-color: #eceeef;
  border-radius: 4px;
}

.footer-submit-ticket__title {
  font-size: 24px;
}

.footer-submit-ticket__subtitle {
  font-size: 24px;
  color: #b8c0cc;
}

.footer-submit-ticket__btn:empty {
  display: none;
}

.footer-submit-ticket__btn .btn {
  padding: 10.2px 18px 9px;
}

.note {
  position: relative;
  padding-left: 12px;
  margin: 24px 0;
  color: #7d8ba1;
  border-left: 4px solid transparent;
}

.note p:last-child {
  margin-bottom: 0;
}

.note-title {
  margin-bottom: 12px;
  font-weight: 600;
}

.note-default,
.note--default {
  border-color: #818a91;
}

.note-default .note-title,
.note--default .note-title {
  color: #818a91;
}

.note-info,
.note--info {
  border-color: #5bc0de;
}

.note-info .note-title,
.note--info .note-title {
  color: #5bc0de;
}

.note-warning,
.note--warning {
  border-color: #f25f5c;
}

.note-warning .note-title,
.note--warning .note-title {
  color: #f25f5c;
}

.note-success,
.note--success {
  border-color: #0db710;
}

.note-success .note-title,
.note--success .note-title {
  color: #0db710;
}

.note-danger,
.note--danger {
  border-color: #ff4b46;
}

.note-danger .note-title,
.note--danger .note-title {
  color: #ff4b46;
}

.footer {
  padding-top: 48px;
  font-size: 14px;
  line-height: 1.1;
  color: #999;
  background-color: transparent;
  border-color: #eee transparent transparent;
  border-style: solid;
  border-width: 1px 0 0;
}

.footer__inner {
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .footer__inner {
    display: table;
  }
}

.footer__col {
  position: relative;
}

@media (min-width: 768px) {
  .footer__col {
    display: table-cell;
    vertical-align: top;
  }
}

@media (min-width: 768px) {
  .footer__col--social-links {
    text-align: right;
  }
}

.footer-social-link {
  width: 30px;
  height: 30px;
  font-size: 18px;
  color: #298FC2;
  vertical-align: middle;
}

.footer-social-link + .footer-social-link {
  margin-left: 5px;
}

.copyright a {
  color: #999;
}

.layout {
  min-height: 100%;
  margin-bottom: -150px;
  background-color: #fff;
}

@media (max-width: 767px) {
  .layout {
    margin-bottom: -198px;
  }
}

.layout:after {
  display: block;
  content: "";
}

.footer, .layout:after {
  height: 150px;
}

@media (max-width: 767px) {
  .footer, .layout:after {
    height: 198px;
  }
}

.pagination ul {
  display: inline-block;
  padding-left: 0;
  margin: 0 0 12px;
}

.pagination ul > li {
  display: inline-block;
  margin-right: 6px;
  margin-bottom: 12px;
}

.pagination ul > li > a,
.pagination ul > li > span {
  position: relative;
  display: block;
  padding: 6px 16px;
  line-height: 1.5;
  color: #a6a6a7;
  text-decoration: none;
  background-color: #f6f6f6;
  border-radius: 4px;
}

.pagination ul > li > a:hover, .pagination ul > li > a:focus,
.pagination ul > li > span:hover,
.pagination ul > li > span:focus {
  color: #1c6083;
  background-color: #eceeef;
  border-color: #ddd;
}

.pagination ul > .pagination-current > span, .pagination ul > .pagination-current > span:hover, .pagination ul > .pagination-current > span:focus {
  z-index: 2;
  color: #fff;
  cursor: default;
  background-color: #298FC2;
  border-color: #298FC2;
}

.satisfaction-box {
  padding: 24px 15px;
  margin: 0 0 20px 0;
  margin-top: 0;
  border-color: #eceeef;
  border-radius: 4px;
}

.satisfaction-box h4:last-child {
  margin-bottom: 0;
}

.satisfaction-box input[type=radio] ~ label {
  letter-spacing: normal;
  margin-right: 10px;
}

.satisfaction-box input[type=radio] ~ label[for="satisfaction_rating_score_good"] {
  color: #fff;
  background-color: #27d2d9;
  border-color: #27d2d9;
}

.satisfaction-box input[type=radio] ~ label[for="satisfaction_rating_score_good"]:hover, .satisfaction-box input[type=radio] ~ label[for="satisfaction_rating_score_good"]:focus, .satisfaction-box input[type=radio] ~ label[for="satisfaction_rating_score_good"]:active {
  color: #e0e0e0;
  background-color: #1fa9ae;
  border-color: #1da0a6;
}

.satisfaction-box input[type=radio] ~ label[for="satisfaction_rating_score_good"]:active {
  background-image: none;
}

.satisfaction-box input[type=radio] ~ label[for="satisfaction_rating_score_bad"] {
  color: #fff;
  background-color: #ff4b46;
  border-color: #ff322d;
}

.satisfaction-box input[type=radio] ~ label[for="satisfaction_rating_score_bad"]:hover, .satisfaction-box input[type=radio] ~ label[for="satisfaction_rating_score_bad"]:focus, .satisfaction-box input[type=radio] ~ label[for="satisfaction_rating_score_bad"]:active {
  color: #e0e0e0;
  background-color: #ff1913;
  border-color: #ee0600;
}

.satisfaction-box input[type=radio] ~ label[for="satisfaction_rating_score_bad"]:active {
  background-image: none;
}

.satisfaction-box input[type=radio][checked=checked][value=good] + label {
  background-color: #1da0a6 !important;
  color: #fff !important;
  border-color: #1da0a6 !important;
}

.satisfaction-box input[type=radio][checked=checked][value=bad] + label {
  background-color: #ff0f09 !important;
  color: #fff !important;
  border-color: #ee0600 !important;
}

.satisfaction-box label.disabled {
  margin-bottom: 24px !important;
}

.satisfaction-box label.disabled[for="satisfaction_rating_score_good"] {
  color: #0db710 !important;
}

.satisfaction-box label.disabled[for="satisfaction_rating_score_bad"] {
  color: #ff4b46 !important;
}

.satisfaction-comment {
  margin-top: 15px;
}

.satisfaction-box .satisfaction-submit {
  color: #fff;
  background-color: #298FC2;
  border-color: #298FC2;
  margin-left: 10px !important;
  font-size: 11px !important;
}

.satisfaction-box .satisfaction-submit:hover, .satisfaction-box .satisfaction-submit:focus, .satisfaction-box .satisfaction-submit:active {
  color: #e0e0e0;
  background-color: #207098;
  border-color: #1e6a8f;
}

.satisfaction-box .satisfaction-submit:active {
  background-image: none;
}

.satisfaction-reason {
  padding-top: 24px;
}

.satisfaction-box .satisfaction-cancel {
  font-size: 11px !important;
  line-height: 1.5 !important;
}

.topbar {
  width: 100%;
  color: inherit;
  background-color: transparent;
  border-color: #298FC2 transparent #eee transparent;
  border-style: solid;
  border-top: none;
  border-bottom: 1px solid #d8d8d8;
  margin-bottom: 24px;
}

/* @media (min-width: 768px) {
  .topbar {
    margin-bottom: 48px;
  }
}*/

.topbar .login {
  display: none !important;
  color: #298FC2;
  background-color: transparent;
  border-color: #298FC2;
}

.topbar .login:hover, .topbar .login:focus, .topbar .login:active {
  color: #1e6a8f;
  background-color: transparent;
  border-color: #1e6a8f;
}

.topbar .login:active {
  background-image: none;
}

@media (max-width: 767px) {
  .topbar .submit-a-request,
  .topbar .login,
  .topbar .language-selector {
    margin-bottom: 5px;
  }
}

.topbar__inner {
  width: 100%;
  margin: 0 auto;
}

.topbar__col {
  position: relative;
  padding: 12px 0;
}

@media (min-width: 901px) {
  .topbar {
    margin-top: 0;
    margin-bottom: 0;
    height: 65px;
  }


  .topbar__inner {
    display: table;
  }
  
  .topbar__col {
    display: table-cell;
    vertical-align: middle;
  }
  .topbar__col.topbar__menu {
    width: 275px;
  }
  .topbar__controls {
    float: right;
  }
}

@media (max-width: 900px) {
  .topbar.container {
    padding-left: 0;
    padding-right: 0;
  }
  .topbar__inner .topbar__col:first-child {
    height: 50px;
  }
  .topbar__collapse {
    padding-top: 0;
    padding-bottom: 12px;
    text-align: center;
  }
  .logo-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
  }
}

@media (min-width: 901px) {
  .topbar__collapse {
    display: block !important;
  }
  .logo-wrapper {
    padding-left: 11px;
  }
  .logo img {
    width: 152px;
  }

  .menu-navigation {
    margin-top: 4px !important;
	}
  .menu-navigation .menu-item:last-child {
    padding-right: 0;
  }
}

@media (max-width: 900px) {
  .topbar__menu {
    padding: 0;
  }
}

@media (min-width: 901px) {
  .topbar__col {
    padding: 10px 0;
    height: 65px;
  }
}

@media (min-width: 891px) {
  /*.topbar__col.topbar__menu {
    width: 275px;
  }*/
  .menu-navigation .menu-item:last-child {
    padding-right: 16px;
  }
}

/*@media (min-width: 940px) {
  .topbar.container {
    padding-right: 47px;
  }
  .logo-wrapper {
    padding-left: 21px;
  }
  .logo img {
    width: 191px;
  }
  .menu-navigation {
    margin-top: 7px !important;
	}
}*/

@media (min-width: 1062px) {
  .logo img {
    width: 235px;
  }
  .menu-navigation {
    margin-top: 11px !important;
	}
}

.submit-a-request {
  background-color: #298FC2;
  color: #fff;
}

.submit-a-request:hover {
  background-color: #fff;
  color: #298FC2;
  border-color: #298FC2;
}

.scroll-to-top {
  position: fixed;
  right: 30px;
  bottom: -50px;
  z-index: 3;
  font-size: 32px !important;
  line-height: 45px !important;
  text-align: center;
  border: 2px solid #298FC2;
  border-radius: 4px;
  -webkit-transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  width: 50px;
  height: 50px;
}

.scroll-to-top:focus, .scroll-to-top:active {
  outline: 0;
}

.scroll-to-top.is-active {
  bottom: 30px;
}

.scroll-to-top:hover {
  color: #1c6083;
  border-color: #1c6083;
}

@media (max-width: 767px) {
  .scroll-to-top {
    display: none;
  }
}

.embed,
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  padding-bottom: 56.25%;
  margin-bottom: 30px;
  overflow: hidden;
  z-index: 1;
}

.embed img,
.embed-responsive img {
  width: 100%;
}

.embed iframe,
.embed embed,
.embed object,
.embed video,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed:focus,
.embed-responsive:focus {
  outline: none !important;
}

.embed-responsive--16by9 {
  padding-bottom: 56.25%;
}

.embed-responsive--4by3 {
  padding-bottom: 75%;
}

@-ms-viewport {
  width: device-width;
}

.visible-xs {
  display: none !important;
}

.visible-sm {
  display: none !important;
}

.visible-md {
  display: none !important;
}

.visible-lg {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}

.page-header {
  margin-bottom: 24px;
}

.page-header--with-border {
  border-bottom: 2px solid #eceeef;
}

.recent-articles h3,
.related-articles h3 {
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .recent-articles h3,
  .related-articles h3 {
    margin-top: 12px;
  }
}

.recent-articles ul,
.related-articles ul {
  list-style: none;
  padding-left: 0;
}

.recent-articles ul > li,
.related-articles ul > li {
  margin-bottom: 12px;
}

.recent-articles ul > li a,
.related-articles ul > li a {
  color: #4d596b;
  border-bottom: 1px solid #eceeef;
  padding-bottom: 1px;
}

.recent-articles h3 {
  font-size: 20px;
}

.section-articles {
  margin-bottom: 24px;
}

.section-articles__title {
  font-size: 20px;
  margin-bottom: 12px;
}

.section-articles__list {
  padding-left: 0;
  list-style: none;
}

.section-articles__item {
  margin-bottom: 12px;
}

.section-articles__link {
  color: #4d596b;
  border-bottom: 1px solid #eceeef;
  padding-bottom: 1px;
}

.community-recent-activity {
  padding: 24px 15px;
  margin-bottom: 48px;
  border: 2px solid #eceeef;
  border-radius: 4px;
}

.community-recent-activity h4 {
  font-weight: 600;
  font-size: 28px;
}

.community-recent-activity .recent-activity-header {
  display: none;
}

.community-recent-activity .recent-activity-list {
  margin-bottom: 0;
  list-style: none;
  padding-left: 0;
}

@media (min-width: 768px) {
  .community-recent-activity .recent-activity-list {
    margin-right: -15px;
    margin-left: -15px;
  }
}

@media (min-width: 768px) {
  .community-recent-activity .recent-activity-item {
    display: inline-block;
    width: 33.3333%;
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom: 24px;
    vertical-align: top;
  }
}

.community-recent-activity .recent-activity-item-meta {
  font-size: 14px;
  color: #979797;
}

.community-recent-activity .recent-activity-item-comment span:before {
  margin-right: 3px;
  content: "\f0e5";
  display: inline-block;
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

.community-recent-activity .recent-activity-item-parent {
  font-weight: 600;
  color: #4d596b;
}

.community-recent-activity .recent-activity-controls a {
  color: #27d2d9;
  background-color: transparent;
  border-color: #27d2d9;
}

.community-recent-activity .recent-activity-controls a:hover, .community-recent-activity .recent-activity-controls a:focus, .community-recent-activity .recent-activity-controls a:active {
  color: #1da0a6;
  background-color: transparent;
  border-color: #1da0a6;
}

.community-recent-activity .recent-activity-controls a:active {
  background-image: none;
}

.profile-header {
  margin-bottom: 24px;
  border-radius: 4px;
  background-color: #eceeef;
  padding: 24px 15px;
  text-align: center;
  color: #4d596b;
}

.profile-header__avatar {
  display: inline-block;
}

.profile-header__name {
  margin-bottom: 12px;
  font-size: 24px;
}

.profile-header__name a {
  color: #4d596b;
}

@media (min-width: 768px) {
  .profile-header__name {
    font-size: 28px;
    font-weight: 300;
  }
}

.profile-header__options [data-action="edit-profile"] {
  color: #298FC2;
  background-color: transparent;
  border-color: #298FC2;
}

.profile-header__options [data-action="edit-profile"]:hover, .profile-header__options [data-action="edit-profile"]:focus, .profile-header__options [data-action="edit-profile"]:active {
  color: #1e6a8f;
  background-color: transparent;
  border-color: #1e6a8f;
}

.profile-header__options [data-action="edit-profile"]:active {
  background-image: none;
}

.profile-header__options [data-action="edit-profile"]:hover {
  border-color: rgba(0, 0, 0, 0.8);
  opacity: 0.8;
}

.profile-header__private-badge {
  display: inline-block;
  margin-bottom: 24px;
  background-color: #27d2d9;
}

.profile-header__description {
  word-break: break-all;
  word-break: break-word;
}

.profile-stats {
  margin-bottom: 12px;
  padding-left: 0;
  list-style: none;
  font-size: 14px;
  color: #979797;
}

.profile-stats__stat {
  margin-right: 12px;
  margin-bottom: 6px;
}

@media (max-width: 767px) {
  .profile-stats__stat {
    display: block;
  }
  .profile-stats__stat:before {
    display: none;
  }
}

.profile-stats__label {
  margin-right: 6px;
}

.profile-stats__value {
  color: #4d596b;
}

.profile-nav {
  margin-bottom: 24px;
  border-radius: 4px;
  background-color: #eceeef;
  overflow: hidden;
  font-size: 14px;
  font-weight: 600;
}

.profile-nav__items {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.profile-nav__item {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .profile-nav__item {
    display: inline-block;
    vertical-align: middle;
  }
}

.profile-nav__item a {
  display: block;
  color: #4d596b;
}

.profile-nav__item.is-active {
  background-color: #298FC2;
  color: #fff;
}

.profile-nav__item.is-active,
.profile-nav__item a {
  padding: 16px 12px;
  line-height: 1;
}

.profile-nav__item:after {
  right: 12px !important;
}

.profile-section {
  width: 100%;
}

.profile-section__header {
  margin-bottom: 24px;
}

.profile-section__title {
  margin-bottom: 12px;
  font-size: 24px;
}

.profile-section__description {
  color: #979797;
  font-size: 14px;
}

@media (min-width: 768px) {
  .profile-section__description {
    padding-bottom: 0;
  }
}

.profile-section-sorter {
  font-size: 14px;
}

.profile-section-sorter .dropdown {
  display: inline-block;
}

@media (min-width: 768px) {
  .profile-section-sorter {
    display: table;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .profile-section-sorter {
    border-top: 0;
    padding-top: 0;
  }
}

@media (min-width: 768px) {
  .profile-section-sorter__col {
    display: table-cell;
    vertical-align: middle;
  }
}

@media (max-width: 767px) {
  .profile-section-sorter__col--main {
    margin-bottom: 12px;
  }
}

@media (min-width: 768px) {
  .profile-section-sorter__col--main {
    padding-right: 12px;
  }
}

@media (min-width: 768px) {
  .profile-section-sorter__col--btn {
    text-align: right;
  }
}

.profile-contribution {
  position: relative;
  border-radius: 4px;
  background-color: #f4f5f6;
  padding: 12px 15px;
  word-wrap: break-word;
}

.profile-contribution__header {
  margin-bottom: 6px;
}

.profile-contribution__status {
  margin-bottom: 6px;
}

.profile-contribution__title {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 600;
}

.profile-contribution__body {
  margin-bottom: 12px;
}

.profile-contribution--list .profile-contribution__title:before {
  display: inline-block;
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 2px;
}

.profile-contribution__breadcrumbs {
  margin-bottom: 12px;
  padding: 0;
  font-size: 14px;
}

.profile__no-activity,
.profile__private-activity {
  text-align: center;
  color: #979797;
}

.profile-activity-list {
  padding-left: 0;
  list-style: none;
}

.profile-activity {
  position: relative;
  margin-bottom: 36px;
}

.profile-activity__header {
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 600;
}

.profile-activity__header:before {
  display: inline-block;
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 2px;
}

.profile-activity__avatar {
  width: 30px;
  height: 30px;
  margin-right: 6px;
}

.profile-activity-list--articles .profile-contribution__title:before,
.profile-activity[class$="-article"] .profile-activity__header:before {
  content: '\f0f6';
}

.profile-activity-list--posts .profile-contribution__title:before,
.profile-activity[class$="-post"] .profile-activity__header:before {
  content: '\f0e6';
}

.profile-activity-list--comments .profile-contribution__title:before,
.profile-activity[class$="-comment"] .profile-activity__header:before {
  content: '\f0e5';
}

.user-subscribe {
  display: inline-block;
}

.entry-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
}

.entry-info__avatar {
  padding-right: 12px;
}

.status-label {
  padding: 2px 6px;
  font-size: 12px;
  color: #fff;
  border-radius: 4px;
}

.status-label--pending {
  background-color: #f25f5c;
}

.status-label--with-ticket {
  background-color: #298FC2;
}

.status-label--with-ticket:hover, .status-label--with-ticket:focus, .status-label--with-ticket:active {
  color: #fff;
}

.status-label--solved,
.status-label--closed {
  background-color: #0db710;
}

.status-label--new,
.status-label--open {
  background-color: #ff4b46;
}

.status-label--answered {
  background-color: #f25f5c;
}

.status-label--official {
  background-color: #298FC2;
}

.status-label--completed,
.status-label--answered {
  background-color: #0db710;
}

.status-label--planned {
  background-color: #27d2d9;
}

.status-label--not-planned {
  color: #4d596b;
  background-color: #eceeef;
}

.attachment-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 14px;
}

.attachment-list__item {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
}

.attachment-list__item:last-child {
  margin-bottom: 0;
}

.attachment-list__icon {
  position: absolute;
  left: 0;
  top: 4px;
}

.promoted-articles__list {
  list-style: none;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.promoted-articles__title {
  font-weight: 600;
}

.promoted-articles-item__title {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
}

.callout {
  padding: 24px 20px;
  margin-bottom: 24px;
  background-color: #eceeef;
  border-left-width: 5px;
  border-left-style: solid;
}

.callout p:last-child {
  margin-bottom: 0;
}

.callout--transparent {
  background-color: transparent;
  border-width: 1px;
  border-color: #dedede;
  -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.14);
          box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.14);
}

.callout--success {
  background-color: rgba(0, 202, 26, 0.23);
  color: #4d596b;
  border-color: #5cb85c;
}

.callout--success .callout__title {
  color: #5cb85c;
}

.callout--info {
  color: #4d596b;
  background-color: #daf1f8;
  border-color: #5bc0de;
}

.callout--info .callout__title {
  color: #5bc0de;
}

.callout--warning {
  color: #4d596b;
  background-color: #fceedb;
  border-color: #f0ad4e;
}

.callout--warning .callout__title {
  color: #f0ad4e;
}

.callout--danger {
  color: #fff;
  background-color: #ff4b46;
  border-color: #ff0f09;
}

.callout--danger .callout__title {
  color: #fff;
}

.callout--primary {
  color: #4d596b;
  background-color: #9acfea;
  border-color: #298FC2;
}

.callout--primary .callout__title {
  color: #298FC2;
}

.callout--dashed {
  border-width: 1px;
  border-style: dashed;
}

.image-with-border {
  padding: 10px;
  border: 1px solid #d3d6d8;
  border-radius: 4px;
}

.image-with-shadow {
  -webkit-box-shadow: 0 5px 15px 2px #55595c;
          box-shadow: 0 5px 15px 2px #55595c;
}

.image-with-lightbox {
  cursor: pointer;
}

.image-overlay {
  position: relative;
}

.image-overlay:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.3);
}

.image-with-video-icon {
  position: relative;
  display: block;
}

.image-with-video-icon img {
  width: 100%;
}

.image-with-video-icon:before {
  content: '';
  font-size: 0;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 0 30px 60px;
  border-color: transparent transparent transparent #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  z-index: 3;
}

.image-with-video-icon:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.image-with-video-icon:active:before, .image-with-video-icon:hover:before {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
}

.list-colored,
.list-bullet {
  counter-reset: list;
  list-style-type: none;
  padding-left: 0 !important;
}

.list-colored li {
  position: relative;
  padding-left: 42px;
  counter-increment: list;
  margin-bottom: 16px !important;
}

.list-colored li:before {
  position: absolute;
  top: -3px;
  left: 0;
  content: counter(list);
  text-align: center;
  font-size: 14px;
  width: 30px;
  height: 30px;
  background-color: #298FC2;
  border-radius: 50%;
  z-index: 1;
  color: #fff;
  line-height: 30px;
}

.list-colored ol {
  counter-reset: list;
  list-style-type: none;
  margin-bottom: 14px;
}

.list-bullet li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.list-bullet li:before {
  position: absolute;
  left: 0;
  top: -3px;
  font-family: 'FontAwesome';
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  content: "";
  color: #298FC2;
  background-color: transparent;
  width: auto;
  height: auto;
}

.list-bullet ul {
  list-style: none;
  margin-bottom: 14px;
}

.text-left {
  text-align: left;
}

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

.text-right {
  text-align: right;
}

.text-primary {
  background-color: #9acfea;
}

.text-info {
  background-color: #5bc0de;
}

.text-warning {
  background-color: #f25f5c;
}

.text-danger {
  background-color: #ff4b46;
}

.text-success {
  background-color: #0db710;
}

.accordion {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding-top: 0;
  margin-bottom: 24px;
}

.accordion__item-title {
  position: relative;
  font-size: 20px;
  padding: 15px 20px 15px 52px;
  cursor: pointer;
}

.accordion__item-title:not(.accordion__item-title--active) {
  border-bottom: 1px solid #ddd;
}

.accordion__item-title:before {
  content: '';
  position: absolute;
}

.accordion__item-content {
  display: none;
  padding: 20px;
  border-bottom: 1px solid #ddd;
}

.accordion__item-content p:last-child {
  margin-bottom: 0;
}

.accordion__item:last-child .accordion__item-title {
  border-bottom: none;
}

.accordion--default .accordion__item-title:before {
  left: 22px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-bottom: 2px solid #298FC2;
  border-left: 2px solid #298FC2;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.accordion--default .accordion__item-title--active {
  background-color: #f0f0f0;
}

.accordion--default .accordion__item-title--active:before {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.accordion--colored .accordion__item-title {
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.accordion--colored .accordion__item-title:before, .accordion--colored .accordion__item-title:after {
  top: 50%;
}

.accordion--colored .accordion__item-title:before {
  width: 10px;
  height: 2px;
  margin-top: -1px;
  background-color: #818a91;
  left: 20px;
}

.accordion--colored .accordion__item-title:after {
  content: '';
  position: absolute;
  left: 24px;
  width: 2px;
  height: 10px;
  margin-top: -5px;
  background-color: #818a91;
}

.accordion--colored .accordion__item-title--active {
  background-color: #298FC2;
  color: #fff;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.accordion--colored .accordion__item-title--active:before {
  background-color: #fff;
}

.accordion--colored .accordion__item-title--active:after {
  display: none;
}

.tabs {
  margin-bottom: 24px;
}

.tab {
  display: block;
  padding: 30px;
  margin-top: -1px;
  border: 1px solid #ddd;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.tab p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .tab {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
  }
}

.tab:nth-child(2) {
  border-top-left-radius: 0;
}

.tabs-link {
  display: block;
  padding: 8px 30px;
  margin: 0;
  font-weight: 600;
  color: #4d596b;
  cursor: pointer;
  border-color: transparent;
  border-style: solid;
  border-width: 1px 1px 0;
}

.tabs-link:hover {
  color: #298FC2;
}

@media (max-width: 767px) {
  .tabs-link {
    border-top-color: #ddd;
    border-right-color: #ddd;
    border-left-color: #ddd;
  }
  .tabs-link:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
  }
}

@media (min-width: 768px) {
  .tabs-link {
    display: inline-block;
  }
}

.is-hidden {
  display: none;
}

.tabs-link.is-active {
  color: #298FC2;
  cursor: pointer;
  border-color: #ddd;
}

.tabs-link.is-active:hover {
  color: #298FC2;
  cursor: default;
}

@media (min-width: 768px) {
  .tabs-link.is-active {
    border-bottom: 1px solid #fff;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
  }
}

.tabs--colored-1 .tab {
  background-color: #f7f7f9 !important;
}

.tabs--colored-1 .tabs-link.is-active {
  background-color: #f7f7f9;
  border-bottom-color: #f7f7f9;
}

.tabs--colored-2 .tabs-link:hover {
  color: #298FC2;
}

.tabs--colored-2 .tabs-link.is-active {
  color: #fff;
  background-color: #298FC2;
  border-color: #298FC2;
}

.tabs--colored-2 .tabs-link.is-active:hover {
  color: #fff;
}

.tabs--colored-2 .tab {
  background-color: #f7f7f9 !important;
}

.community-nav__item {
  float: left;
}

.community-nav__item + .community-nav__item {
  margin-left: 12px;
}

.community-nav__item.is-active {
  font-weight: 600;
}

.community-nav__item--button {
  float: right;
}

.vote {
  max-width: 40px;
  width: 100%;
}

.vote [aria-selected=true] {
  z-index: 2;
}

.vote-sum {
  display: block;
  padding-top: 6px;
  padding-bottom: 6px;
  font-weight: 600;
  text-align: center;
}

.vote-control {
  position: relative;
  z-index: 1;
  display: block !important;
  padding: 4px 0 !important;
  font-size: 16px !important;
  color: #4d596b;
  border-color: #eceeef;
  line-height: 1.5 !important;
}

.vote-control:hover, .vote-control:active {
  z-index: 2;
}

.vote-control--active {
  border-color: #474747;
}

@media (min-width: 768px) {
  .topic-list-page {
    margin-bottom: 24px;
  }
}

.topic-list-item:nth-child(2n+1) {
  clear: left;
}

.topic-list-item__box {
  padding: 24px 12px;
  margin-bottom: 24px;
  border: 2px solid #eceeef;
  border-radius: 4px;
}

.topic-list-item__title {
  margin-bottom: 12px;
}

.topic-page {
  margin-bottom: 48px;
}

.topic {
  padding-bottom: 12px;
  margin-bottom: 24px;
  border-bottom: 2px solid #eceeef;
  display: table;
  width: 100%;
}

.topic__col {
  display: table-cell;
  vertical-align: inherit;
}

@media (min-width: 480px) {
  .topic__col {
    vertical-align: top;
  }
}

.topic__col--new-post {
  text-align: right;
}

.topic__title {
  width: 100%;
  font-size: 28px;
  margin-bottom: 12px;
}

.topic-filters__item {
  float: left;
  margin-right: 6px;
}

@media (max-width: 767px) {
  .topic-filters__item {
    margin-bottom: 12px;
  }
}

.topic-controls {
  margin-bottom: 48px;
}

.topic-controls__item {
  float: left;
}

.topic-followers {
  margin-right: 6px;
}

@media (min-width: 768px) {
  .topic-controls__item--subscribe {
    float: right;
    white-space: nowrap;
  }
}

.topic-controls__item--subscribe .dropdown {
  display: inline-block;
  vertical-align: middle;
}

.topic-controls__item--subscribe .dropdown-menu {
  left: initial;
  right: 0;
}

.topic-controls__item--subscribe .dropdown-toggle,
.topic-controls__item--subscribe .topic-unsubscribe {
  color: #27d2d9;
  background-color: transparent;
  border-color: #27d2d9;
}

.topic-controls__item--subscribe .dropdown-toggle:hover, .topic-controls__item--subscribe .dropdown-toggle:focus, .topic-controls__item--subscribe .dropdown-toggle:active,
.topic-controls__item--subscribe .topic-unsubscribe:hover,
.topic-controls__item--subscribe .topic-unsubscribe:focus,
.topic-controls__item--subscribe .topic-unsubscribe:active {
  color: #1da0a6;
  background-color: transparent;
  border-color: #1da0a6;
}

.topic-controls__item--subscribe .dropdown-toggle:active,
.topic-controls__item--subscribe .topic-unsubscribe:active {
  background-image: none;
}

@media (min-width: 768px) {
  .post-page {
    margin-bottom: 48px;
  }
}

.post {
  position: relative;
  margin-bottom: 24px;
}

.post__title {
  font-size: 24px;
  padding-right: 18px;
}

@media (min-width: 768px) {
  .post__title {
    font-size: 28px;
  }
}

@media (min-width: 992px) {
  .post__title {
    font-size: 40px;
  }
}

.post-follow .post-subscribe,
.post-follow .post-unsubscribe {
  color: #27d2d9;
  background-color: transparent;
  border-color: #27d2d9;
}

.post-follow .post-subscribe:hover, .post-follow .post-subscribe:focus, .post-follow .post-subscribe:active,
.post-follow .post-unsubscribe:hover,
.post-follow .post-unsubscribe:focus,
.post-follow .post-unsubscribe:active {
  color: #1da0a6;
  background-color: transparent;
  border-color: #1da0a6;
}

.post-follow .post-subscribe:active,
.post-follow .post-unsubscribe:active {
  background-image: none;
}

.post-meta {
  display: table;
  margin-bottom: 24px;
  width: 100%;
}

.post-meta__col {
  display: table-cell;
  vertical-align: top;
}

.post-meta__col--main {
  padding-right: 12px;
  width: 100%;
}

.post__text {
  word-wrap: break-word;
}

.post__body {
  padding-right: 52px;
}

.post__body ul {
  list-style: disc;
}

.post__body ul,
.post__body ol {
  padding-left: 20px;
}

.post__body ul ul,
.post__body ul ol,
.post__body ol ul,
.post__body ol ol {
  margin-top: 12px;
}

.post__body ul li,
.post__body ol li {
  margin-bottom: 12px;
}

.post__voting-and-actions {
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  width: 40px;
}

.post__voting-and-actions .dropdown-toggle {
  font-size: 0;
}

.post__voting-and-actions .dropdown-toggle:after {
  content: '\f013';
  margin-left: 0;
  font-size: 16px;
}

.post__actions .dropdown-menu {
  width: auto;
}

.post__actions .dropdown-menu [role=menuitem] {
  white-space: nowrap;
}

.post-callout {
  background-color: #eceeef;
  padding: 12px 15px;
}

@media (max-width: 768px) {
  .post-callout {
    margin-bottom: 25px;
  }
}

.post-callout__title {
  font-size: 18px;
  font-weight: 600;
}

@media (min-width: 768px) {
  .post-list-page {
    margin-bottom: 48px;
  }
}

.post-list-item {
  border-bottom: 2px solid #eceeef;
  margin-bottom: 24px;
  padding-bottom: 24px;
}

@media (min-width: 768px) {
  .post-list-item {
    display: table;
    width: 100%;
  }
}

.post-list-item__title {
  font-size: 24px;
  margin-bottom: 12px;
}

.post-list-item__title .fa-star {
  position: relative;
  font-size: 50%;
  top: -4px;
}

@media (min-width: 768px) {
  .post-list-item__col {
    display: table-cell;
    vertical-align: top;
  }
}

@media (min-width: 768px) {
  .post-list-item__col--main {
    width: 60%;
  }
}

@media (min-width: 768px) {
  .post-list-item__col--side {
    width: 40%;
    text-align: right;
  }
}

.post-info {
  color: #979797;
  font-size: 14px;
}

@media (min-width: 768px) {
  .post-info {
    float: right;
    text-align: center;
    min-width: 90px;
    background-color: #f9f9f9;
    border-radius: 4px;
    padding: 6px 12px;
  }
}

@media (min-width: 768px) {
  .post-info__count {
    display: block;
    color: #4d596b;
    font-weight: 600;
  }
}

.post-info + .post-info {
  margin-right: 12px;
}

@media (max-width: 767px) {
  .post-info + .post-info:before {
    margin-right: 6px;
    font-size: 10px;
    content: "\2022";
  }
}

.post-status {
  display: inline-block;
  padding: 1px 6px;
  font-size: 12px;
  color: #fff;
  border-radius: 4px;
}

.post-status--completed,
.post-status--answered {
  background-color: #0db710;
}

.post-status--planned {
  background-color: #27d2d9;
}

.post-status--not-planned {
  color: #4d596b;
  background-color: #eceeef;
}

@media (min-width: 768px) {
  .new-post-page {
    margin-bottom: 48px;
  }
}

.new-post-title {
  font-size: 24px;
}

@media (min-width: 768px) {
  .new-post-title {
    font-size: 28px;
  }
}

@media (min-width: 851px) {
  .menu-item{
    padding: 0 16px;
    display: inline-block;
	}
}

@media (min-width: 992px) {
  .new-post-title {
    font-size: 40px;
  }
  .menu-item{
    padding: 0 19px !important;
	}
  .menu-item.has-sub-menu {
  	padding-right: 13px !important;
	}
}

.new-post-form {
  margin-bottom: 24px;
}

/*Style menu bar */

.menu-navigation {
  display: none;
  font-weight: bold;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #4d596b;
  list-style: none;
  list-style-image: none;
}

.menu-item:hover>a, .sub-menu-item:hover>a {
    color: #27d2d9
}

.menu-item{
		position: relative;
    padding: 0 12px;
    height: auto;
}

.menu-item.has-sub-menu {
  height: 100%;
}


.menu-item a{
		display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: inline;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  	text-transform: none;
    height: 100%;
  	color: #4d596b;
}

.menu-item:hover {
    background-color: #ffffff;
    color: #27d2d9;
}

.menu-item:hover .sub-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.menu-item .fa-angle-down {
    font-size: 16px;
    font-weight: bold;
    margin-left: 2px;
    vertical-align: bottom;
}

.menu-item:hover .fa-angle-down:before {
    content: "\f106";
}

.sub-menu {
    display: none;
    left: -1px;
    position: absolute;
    top: 39px;
    background-color: #ffffff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 10px 0px;
    z-index: 999999;
    width: 222px;
  	list-style: none;
    list-style-image: none;
  	border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    border-right: 2px solid #ccc;
    border-left: 2px solid #ccc;
    border-bottom: 2px solid #ccc;
}

.sub-menu-item {
    display: inline;
    padding: 10px 0;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    color: #4d596b;
}



.sub-menu-item a {
    display: inline;
    padding: 0;
}

.sub-menu li:first-child, .sub-menu li:nth-child(2) {
    padding-right: 0px;
}

li.sub-menu-item:first-child a:nth-child(2) {
    padding: 0px 5px;
}

li.sub-menu-item:nth-child(3) a:nth-child(2) {
    padding: 0px 17px;
    display: block;
}

/* .menu-item:hover .products.sub-menu {
    display: -webkit-box;
} */

.products.sub-menu {
    color: #4d596b;
    background-color: #fff;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    border-right: 2px solid #ccc;
    border-left: 2px solid #ccc;
    border-bottom: 2px solid #ccc;
    width: 783px;
    left: -243px;
    padding: 0px 0px;
    padding-left: 20px;
    justify-content: center;
    flex-direction: row;
    align-items: flex-start;
}

.products .sub-menu-item {
    text-align: center;
    padding-bottom: 17px;
    letter-spacing: 1.3px;
}
.products .sub-menu-item img {
    width: auto;
    height: 62px;
    margin: auto;
    margin-bottom: 10px;
    display: block;
}

#sleepea_saleicon {
    width: 25px;
    height: 25px;
    float: right;
    top: -71px;
    position: relative;
    left: -25px;
}

 #sleepea_saleicon_mobile {
    width: 35px;
    height: 35px;
    float: right;
    
 } 

@media only screen and (max-width: 450px) {
  
 #sleepea_saleicon_mobile {
    width: 35px;
    height: 35px;
    float: right;
    right: 85px;
    top: 159px;
    position: sticky;
} 
  
}

@media only screen and (max-width: 375px) {

 #sleepea_saleicon_mobile{ 
    width: 35px;
    height: 35px;
    right: 55px!important;
    top: 12px;
 }
  
  ::-webkit-full-page-media, :future, :root #sleepea_saleicon_mobile {
    width: 35px;
    height: 35px;
    right: 56px!important;
    top: 12px;  
    margin-right: 41px;

 } 
  
}

@media only screen and (width: 360px) {

  #sleepea_saleicon_mobile{ 
    width: 35px;
    height: 35px;
    position: sticky;
    right: 46px;
    top: 12px;
}
  
}

@media only screen and (max-width: 320px) {

  #sleepea_saleicon_mobile{ 
    width: 30px;
    height: 30px;
    position: sticky;
    right: 52px;
    top: 12px;    
}
  
}


@media only screen and (width: 768px) {
  
#sleepea_saleicon_mobile {
    width: 35px;
    height: 35px;
    float: right;
    right: 420px;
    top: 204px;
    position: sticky;
}
  
}

.menu-babyshower{
  font-weight: normal;
  font-style:italic;
}

.mobile-sub-menu-item .menu-babyshower{
  font-weight: normal;
  font-style:italic;
  text-transform: initial;
  display: inline;
  position: relative;
  top: 17px;
  left: -85px;
  letter-spacing: 0px;

}


@media only screen and (max-width: 320px){

  .mobile-sub-menu-item .menu-babyshower{
  position: relative;
  top: 17px;
  left: -69px;
  }

  
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
	::i-block-chrome, .menu-navigation {
      margin-left: 20%!important;
    	font-size: 10px!important;
  }
  ::i-block-chrome, .sub-menu-item{
  	font-size: 9px!important;
  }
}

@supports (-ms-ime-align: auto) {
  .menu-navigation {
      margin-left: 23%!important;
    	font-size: 10px!important;
  }
}

@-moz-document url-prefix() { 
  .menu-navigation {
      margin-left: 26%!important;
    	font-size: 11px!important;
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	 .menu-navigation {
      margin-left: 24%!important;
  }
}

/*Style the mobile main menu*/

.menu-navigation.mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
  	width: 20%;
    position: relative;
    top: 0;
    left: 0px;
    margin-left: 0 !important;
}

.menu-navigation.mobile.clone {
    position: fixed;
    height: 50px;
    top: -100px;
    width: 100%;
    -webkit-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
    background-color: white;
    border-bottom: 1px solid #d8d8d8
}

.menu-navigation.mobile.clone.is-active {
    top: 0;
    position: fixed;
    z-index: 5;
    width: 100%
}

.menu-navigation.mobile li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100%
}

.menu-navigation.mobile .mobile-menu-icon {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 25%
}

.menu-navigation.mobile .mobile-menu-icon i {
    padding-left: 10px;
    font-size: 25px
}

.menu-navigation.mobile .mobile-menu-icon .open-menu {
    display: block
}

.menu-navigation.mobile .mobile-menu-icon .close-menu {
    display: none
}

.mobile-menu-icon i:hover {
    color: #27d2d9
}

.mobile-menu {
    background-color: white;
    position: fixed;
    top: 50px;
    left: -200%;
    z-index: 50;
    width: 100%;
    list-style: none;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1.5px;
    padding-bottom: 60px; /* this is to add space for the horizontal mobile menu buttons at the bottom on iphone */
    border-bottom: 1px solid #d8d8d8;
    -webkit-transition: 0.25s ease-in-out all;
    transition: 0.25s ease-in-out all;
    height: 100%;
    overflow-y: scroll;
    display: none;
}

.mobile-menu .fa-angle-down:before {
    font-size: 17px !important;
    font-weight: 800;
}

.mobile-menu {
    overflow-y: scroll !important;
}

.mobile-menu.slide-in {
    left: 0;
}

.mobile-menu-item {
    padding-top: 12px;
    padding-bottom: 14px;
    padding-right: 0px;
    padding-left: 20px;
}

.mobile-menu a{
	color: #4d596b;
  letter-spacing: 1.5px;
}

.mobile-menu-item:hover>a,
.mobile-menu-item i:before:hover {
    color: #27d2d9
}

.mobile-menu-item.main {
    position: relative;
    overflow: hidden;
    font-size: 14px;
    border-bottom: 1px solid #d8d8d8;
    max-height: 45px;
    -webkit-transition: 0.25s ease-in-out max-height;
    transition: 0.25s ease-in-out max-height
}

.Contact.mobile-menu-item.main {
		border-bottom: none;
}

.mobile-menu-item.main i {
    position: absolute;
    top: 14px;
    right: 17px;
    cursor: pointer
}

.mobile-menu-item .fa-angle-down:before {
    font-size: 17px !important;
    font-weight: 800;
}

.mobile-menu-item.main .open-sub-menu {
    display: block
}

.mobile-menu-item.main .close-sub-menu {
    display: none
}

.mobile-menu-item.main.slide-down {
    height: auto;
    max-height: 470px;
}

.mobile-menu-item.main.mobile-search-bar .search-bar {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #d8d8d8;
}

.mobile-search-bar .search-bar {
    margin: 0;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #d8d8d8;
}

.mobile-search-bar input[type="search"] {
    font-size: 14px;
    border: none;
    font-family: 'Gotham', sans-serif;
    font-weight: bold;
    -webkit-appearance: NONE;
    color: #4d596b;
  	height: 46px;
		padding-left: 20px;
  	outline: 0;
    outline-style: none;
    outline-width: 0;
    box-sizing: content-box;
    -webkit-appearance: textfield;
    margin: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    width: 80%;
}

.mobile-search-bar input[type="search"]::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #4d596b;
    opacity: 1; /* Firefox */
}

.mobile-search-bar .btn {
    border: 0;
    outline: 0;
  	background-color: transparent;
    -webkit-appearance: none !important;
}

.mobile-search-bar .search-bar i {
    font-size: 16px;
    width: 20%;
    text-align: right;
    padding-right: 15px;
    position: absolute;
    cursor: pointer;
    margin-top: -8px;
    right: 0px;
}

.mobile-sub-menu {
	list-style-type: none;
	padding: 0;
}

.mobile-sub-menu-item {
    padding: 0 10px 0 20px;
    text-transform: none;
  	position: relative;
}

.mobile-sub-menu-item a {
    display: flex;
    justify-content: start;
    align-items: center;
}

.mobile-menu .icon--buy-snoo, .mobile-menu .icon--rent-snoo {
    position: absolute;
    width: 30px;
    right: 20px;
    top: 9px;
}

.reviews .mobile-sub-menu-item {
    padding-bottom: 10px;
    padding-top: 11px;
    padding-left: 85px;
}



.mobile-sub-menu-item.sub-menu-title {
    margin: 15px -25px 0;
    background-color: #e4e8ec;
    padding-left: 45px
}

.mobile-sub-menu-item:hover>a {
    color: #27d2d9
}

@media only screen and (max-width: 320px){
  
.mobile-sub-menu-item {
    padding-left: 7px;
    font-size: 11px;
    padding-bottom: 0px;
    padding-top: 1px;
}
  
}

.mobile-sub-menu-item img{
  height: 50px;
  margin-right: 15px;
  margin-bottom: 3px;
}


@media only screen and (width: 768px){  
.mobile-menu {
  position: fixed;
  top: 105px;
  }
  
 .mobile-menu-item.main {
    max-height: 45px;
  }
  
  .mobile-sub-menu-item {
    padding-top: 4px;
   }   

}


.mobile-menu a br{
  display:none;
}

@media screen and (max-width: 811px) and (min-width: 769px){
  
  .mobile-menu{
    position: absolute;
    top: 100px;
  }
  
  .mobile-sub-menu-item img {
    vertical-align: -webkit-baseline-middle;
    width: 11%;
  }
}

.topbar.clone {
    position: fixed;
    top: -100px;
    width: 100%;
    border-bottom: 1px solid #d8d8d8;
    -webkit-transition: all 0.35s ease-out;
    transition: all 0.35s ease-out;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
}

.topbar.clone.is-active {
    top: 0px;
    position: fixed;
    z-index: 5;
    width: 100%;
    background-color: white
}

.user-services-wrapper {
    background-color: #f6f9fb
}

.user-services-wrapper.clone {
    position: fixed;
    top: -100px;
    width: 100%;
    -webkit-transition: all 0.35s ease-out;
    transition: all 0.35s ease-out
}

.user-services-wrapper.clone.is-active {
    top: 0;
    position: fixed;
    z-index: 5;
    width: 100%
}

@media only screen and (width: 1024px){
  .menu-navigation {
  	margin-left: 32px!important;
    font-size: 11px;
  }
}

@media only screen and (min-width: 901px){
.menu-navigation {
    display: inline;
    position: absolute;
    right: 20px;
    margin-top: 5px;
    height: 100%;
}
  .menu-navigation.mobile {
        display: none
    }
	
	.topbar.clone.is-active {
        top: 28px
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1200px){
  .menu-navigation {
  	margin-left: 0%!important;
  }
}

@media only screen and (min-width: 481px) {
    .mobile-menu {
        height: auto
    }
}


/*Style for global footer*/

.global-footer-section {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 20px;
}

@media (min-width: 992px) {
    .global-footer-section {
        padding-left: 45px;
        padding-right: 45px;
    }
}

.global-footer-container {
    margin: 0 0 50px;
    display: flex;
    flex-wrap: wrap;
}

.global-footer-container .global-logo {
    padding: 0 0 15px 0;
}


.global-footer-section .global-block{
    width: 25%;
}

.global-footer-section .global-block.signup {
    padding-left: 2%;
}

.global-footer-container .global-block ul,
.mobile-menu-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.global-footer-container .global-block li {
    font-size: 11px;
    font-family: 'Gotham', sans-serif;
    font-weight: bold;
    letter-spacing: 1.6px;
    color: #0d141b;
    padding-right: 15px;
    margin-top: 10px;
    margin-bottom: 21px;
    text-transform: uppercase;
}

.mobile-menu-footer {
    width: 100%;
    display: inline-block;
    margin-top: 20px;
}

.mobile-menu-footer ul li {
	text-align: left;
}

.global-footer-container .global-block li a,
.mobile-menu-footer ul li a {
  	color: #0d141b;
}

@media only screen and (max-width: 767px) {
  .global-footer-container {
      display: none;
  }
}

.email_signup-footer {
    margin-bottom: 30px;
 	  text-align: center;
}
.email_signup-footer h2 {
    color: #4d596b;
    /*border-bottom: 1px solid #27d2d9;*/
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 0 0 5px !important;
  	margin-bottom: 0;
}

.email_signup-footer p {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 13px;
}

.email_signup-footer .TextInput__FormStyledTextInput-sc-1o6de9f-0 {
    border-radius: 0 !important;
    border: 1px solid #27d2d9 !important;
}

.email_signup-footer .TextInput__FormStyledTextInput-sc-1o6de9f-0 input.TextInput__FormStyledTextInput-sc-1o6de9f-0 {
    font-family: Gotham, sans-serif !important;
}

@media (min-width: 450px) and (max-width: 767px) {
    .email_signup-footer .klaviyo-form {
        max-width: 350px;
    }
}

@media (max-width: 767px) {
    .email_signup-footer .klaviyo-form {
        margin: 0 auto;
    }
}

.mobile-global-footer-container {
    display: none;
    text-align: center;
    margin-bottom: 20px;
}

.mobile-menu-side {
    width: 50%;
    float: left;
}

.mobile-global-footer-container li {
    font-size: 10px;
    font-family: 'Gotham', sans-serif;
    font-weight: bold;
    color: #0d141b;
    text-transform: uppercase;
    text-align: left;
    letter-spacing: .5px;
    line-height: 3;
}

@media only screen and (max-width: 767px) {
  .mobile-global-footer-container {
      display: block;
  }
  .mobile-menu-footer ul {
    margin-bottom: 20px !important;
  }
}

.footer-social-icon-wrapper {
	  display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 260px;
    margin: auto;
    margin-bottom: 30px;
    justify-content: center;
}

.footer-social-icon-wrapper .social-icon {
    text-align: center;
    margin: 0 17px; 
}

.footer-social-icon-wrapper .social-icon i {
    color: #0d141b;
    font-size: 20px;
}

.footer__legal-links {
    text-align: center;
    font-size: .7rem;
    margin: 1rem auto
}

.footer__legal-list-item {
    display: inline-block;
    margin: .5rem
}

.footer__legal-list-item a {
	color: #0d141b !important; 
  font-size: 11.2px;
}

@media only screen and (min-width: 813px) {
    .footer__legal-list-item {
        margin: 0 .5rem
    }
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.copyright-message {
    font-size: 10px;
    font-weight: normal;
    font-style: italic;
    text-align: center;
    margin: auto;
    color: #0d141b;
}

@media only screen and (min-width: 813px) {
  .copyright-message {
		font-size: 10px;
  }
}

.products.sub-menu {
    width: 780px;
    left: -273px;
    padding: 0 10px 20px 20px;
    justify-content: center;
  	align-items: flex-start;
}

.products .sub-menu-item {
    position: relative;
    flex: 1 1 0px;
    padding: 0;
}

.products .sub-menu-item a {
    font-size: 11px;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}
.products .icon--buy-snoo,
.products .icon--rent-snoo {
    position: absolute;
    top: 0;
    right: 10px;
    width: 30px;
    height: 30px;
}

/* refurbishment steps */
.cleaning-steps {
    list-style-type: none;
    counter-reset: section
}

.cleaning-steps__step {
    color: #2199d5;
    font-weight: 700;
    font-size: 1.4rem;
    background-repeat: no-repeat;
    background-size: 72px;
    margin-bottom: 3rem;
    padding-left: 90px
}

.cleaning-steps__step::before {
    counter-increment: section;
    content: counter(section) ". "
}

@media only screen and (min-width: 850px) {
    .cleaning-steps__step {
        max-width: 650px;
        padding-left: 110px
    }
}

.cleaning-steps__title {
    display: inline-block;
    font-size: 1.4rem;
  	margin-bottom: .5rem;
}

.cleaning-steps__text {
    color: #000;
    font-size: 1.2rem;
    font-weight: normal;
    line-height: 1.8 !important;
    margin-top: .5em
}

@media only screen and (min-width: 850px) {
    .cleaning-steps__step p,
    .cleaning-steps__step {
        font-size: 1.4rem;
      	min-height: 32px;
    }
}

.alert {
  border: 1px solid #f25f5c;
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.powered-by-zendesk {
  display: none;
}

.form-disclaimer {
  margin-top: 2rem;
}

.footer--contact-us {
  text-align: center;
  margin: 7rem auto;
}

.footer--contact-us li {
  margin-bottom: 2rem;
}

.CybotCookiebotDialogBodyLevelButtonWrapper label {
  font-weight: normal;
  margin-bottom: 0;
}


/* Helper Classes */
.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0
}

.skip-link:focus {
  overflow: auto;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  color: #666;
  background-color: #fff;
  padding: 5px 15px 5px 15px;
  z-index: 10000;
  transition: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid #000 !important;
}
#CybotCookiebotDialogBody a:focus-visible {
  outline: 2px solid #000 !important;
  padding:2px;
}