@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900");
@import url("https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css");
* {
  box-sizing: border-box;
}
html {
  min-height: 100%;
  display: flex;
}
body {
  color: #858585;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-top: 80px;
  min-height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}
[role="main"] {
  flex: 1;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", 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: #01b7d2;
  text-decoration: none;
}

a:hover, a:active, a:focus {
  text-decoration: none;
}

input,
textarea {
  color: #000;
  font-size: 16px;
}

input {
  font-weight: 300;
  max-width: 100%;
  box-sizing: border-box;
  outline: none;
  transition: border 0.12s ease-in-out;
}

input:focus {
  border: 1px solid #01b7d2;
}

input[disabled] {
  background-color: #ddd;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-position: right 10px center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 8px 30px 8px 10px;
  outline: none;
  color: #555;
  width: 100%;
}

select:focus {
  border: 1px solid #01b7d2;
}

select::-ms-expand {
  display: none;
}

textarea {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  resize: vertical;
  width: 100%;
  outline: none;
  padding: 10px;
  margin-bottom: 10px;
}

textarea:focus {
  border: 1px solid #01b7d2;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 5%;
}

@media (min-width: 1300px) {
  .container {
    padding: 0;
    width: 90%;
  }
}

.container-divider {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}


.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"] {
  background: #00bdd9;
  color: #fff;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  padding: 15px 25px;
  border-radius: 50px;
}

.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: #01b7d2;
  color: #fff;
  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: #015f6c;
  border-color: #015f6c;
}

.button[data-disabled],
[role="button"][data-disabled] {
  cursor: default;
}

.button-large,
input[type="submit"] {
  background-color: #01b7d2;
  border: 0;
  border-radius: 4px;
  color: #fff;
  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: #015f6c;
}

.button-large[disabled],
input[type="submit"][disabled] {
  background-color: #ddd;
}

.button-secondary {
  color: #666;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: transparent;
}

.button-secondary:hover, .button-secondary:focus, .button-secondary:active {
  color: #333333;
  border: 1px solid rgba(0, 0, 0, 0.1);
  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 rgba(0, 0, 0, 0.1);
  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.form-full {
  text-align: left;
  box-shadow: none;
  max-width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .form.form-full {
    max-width: 650px;
    margin: 0 auto;
    margin-top: 60px;
  }
}

.form-field label {
  display: block;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 15px;
}

.form-field input {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 10px;
  width: 100%;
  height: 64px;
}

.form-field input:focus {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-field input[type="text"] {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-field input[type="text"]:focus {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-field input[type="checkbox"] {
  width: auto;
}

.form-field .nesty-input {
  border-radius: 4px;
  height: 64px;
  line-height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  outline: none;
  vertical-align: middle;
  background-color: #ffffff;
  justify-content: center;
  font-size: 20px;
  padding-top: 10px;
}

.form-field .nesty-input:focus {
  border: 1px solid #01b7d2 !important;
  text-decoration: none;
}

.form-field .hc-multiselect-toggle:focus {
  outline: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.form-field textarea {
  vertical-align: middle;
  resize: none;
  border-radius: 4px;
}

.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;
  background-size: 16px 16px;
}

.form footer {
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

@media (min-width: 768px) {
  .form footer {
    flex-direction: row;
  }
}

.form footer .g-recaptcha[ui="invisible"] {
  order: 0;
  margin: 0;
}

.form footer input[type="submit"] {
  font-size: 20px;
  font-weight: 400;
}

@media (min-width: 768px) {
  .form footer input[type="submit"] {
    margin-top: 0;
    height: 64px;
    border-radius: 32px;
  }
}

.form footer input[type="submit"]:hover {
  color: #ffffff;
  background-color: #00bdd9;
  text-decoration: none;
}

.form footer a {
  color: #666;
  cursor: pointer;
  margin-right: 15px;
}

.form .suggestion-list {
  font-size: 13px;
  margin-top: 30px;
  order: 5;
}

.form .suggestion-list label {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: block;
  padding-bottom: 5px;
}

.form .suggestion-list li {
  padding: 10px 0;
}

.form .suggestion-list li a:visited {
  color: #015f6c;
}

/***** Header *****/
.header {
  position: fixed;
  align-items: center;
  display: flex;
  height: 80px;
  width: 100%;
  background: #fff;
  z-index: 2;
  top: 0;
  border-bottom: 1px solid #d8d8d8;
}

.header .container {
  display: flex;
  align-items: center;
  width: 100%;
}

.header .search-box {
  display: none;
}

@media (min-width: 768px) {
  .header .search-box {
    display: flex;
    margin-left: 25px;
	top: -5px;
  }
}

.header .search-box .search input[type="search"] {
	height: 40px;
	font-size: 14px;
	padding: 12px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 10px;
  width: 100%;
}

@media (min-width: 768px) {
  .logo {
    flex-direction: row;
    align-items: center;
    justify-content: initial;
  }
}

.logo img {
  width: 160px;
}

.logo .help-center {
  color: #fff;
  font-weight: 400;
  font-size: 16px;
}

@media (min-width: 768px) {
  .logo .help-center {
    margin-left: 10px;
    font-size: 20px;
    line-height: 25px;
  }
}

.logo .help-center .divider {
  display: none;
}

@media (min-width: 768px) {
  .logo .help-center .divider {
    display: inline-block;
    margin-right: 10px;
  }
}

@media (max-width: 767.98px) {
  .user-nav {
    display: block;
    /* position: absolute; */
    white-space: nowrap;
  }
  .user-nav .user-nav__link_btn[href*="/requests/new"] {
    position: absolute;
    top: 13px;
    padding: 0 0 0 15px;
    right: 15px;
    width: 105px;
    height: 50px;
    background: #fff;
    color: #01b7d2;
    font-size: 13px;
    white-space: break-spaces;
    text-align: center;
    font-weight: 300;
    line-height: 15px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    display: flex;
    align-items: center;
  }
  .user-nav .user-nav__link_btn[href*="/requests/new"]:hover,
  .user-nav .user-nav__link_btn[href*="/requests/new"]:focus {
    border-left: 1px solid rgba(0, 0, 0, 0.1) !important;
  }
}

@media (min-width: 768px) {
  .user-nav {
    position: relative;
    display: flex;
    align-items: center;
  }
}

.user-nav .user-nav__link_btn {
  background: #01b7d2;
  padding: 15px 25px;
  border-radius: 50px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.user-nav .user-nav__link-hours {
  color: #01b7d2 !important;
  cursor: pointer;
}

@media (min-width: 768px) {
  .nav-wrapper {
    margin-left: auto;
  }
}

.nav-wrapper a {
  border: 0;
  color: #01b7d2;
  display: none;
  font-size: 14px;
  padding: 20px 0;
  width: auto;
  text-decoration: none;
  line-height: 1.45;
  border-radius: 5px;
  margin-left: 25px;
}

@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 {
  text-decoration: none;
}

.nav-wrapper a.login {
  display: inline-block;
  padding: 0;
}

@media (min-width: 768px) {
  .nav-wrapper a.login {
    padding: calc(18px * 1.45 / 2) calc(18px * 1.45 * 1.85);
    font-size: calc(18px - 2px);
    color: #01b7d2;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(55, 60, 80, 0.15);
  }
}

.nav-wrapper a.submit-a-request {
  display: block;
  margin: 20px;
  border: 1px solid #fff;
  padding: calc(18px * 1.45 / 2);
  font-size: calc(18px - 2px);
  color: #fff;
  background-color: transparent;
  box-shadow: none !important;
}

.nav-wrapper .icon-menu {
  border: 0;
  color: #01b7d2;
  cursor: pointer;
  display: none;
  margin-right: 10px;
  padding: 0;
  width: auto;
  height: 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: #01b7d2;
}

/***** 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: #01b7d2;
  min-width: 0;
  padding: 0;
  white-space: nowrap;
}

.user-info > [role="button"]:hover, .user-info > [role="button"]:focus {
  color: #01b7d2;
  background-color: transparent;
}

.user-info > [role="button"]::after {
  color: #01b7d2;
  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: #01b7d2;
  border: 2px solid #fff;
  border-radius: 50%;
  bottom: -4px;
  color: #fff;
  content: "\1F464";
  font-size: 14px;
  height: 14px;
  line-height: 14px;
  position: absolute;
  right: -2px;
  text-align: center;
  width: 14px;
}

#footer {
  width: 100%;
  background-color: #f6f6f6;
  padding: 20px 0;
}
#footer img {
  display: block;
  max-width: 237px;
  margin: 20px auto 25px;
}
#footer .list-social {
  display: block;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
#footer .list-social li {
  display: inline-block;
}
#footer .list-social li a {
  display: flex;
  text-decoration: none;
  transition: 0.3s;
  width: 40px;
  height: 40px;
  align-content: center;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 1px solid #ebebeb;
  border-radius: 100%;
  color: #292929;
  margin: 0 5px;
  font-size: 16px;
  background-color: #fff;
}
#footer .list-social li a:hover {
  color: #01b7d2 !important;
}
#footer .list-social li a:hover span {
  color: #01b7d2 !important;
}
#footer .list-social li a .text {
  display: inline-block;
  width: 0;
  height: 0;
  overflow: hidden;
}
#footer hr {
  background-color: #ebebeb;
}
#footer p {
  margin: 20px;
  font-family: 'Roboto', sans-serif;
  color: #888;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 150%;
  text-align: center;
  margin-top: 2rem;
}
#footer  .d-block{ 
 display: block;
}
#footer .text-center {
 text-align: center;
}

#footer .visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.link {
  font-size: 12px;
}

@media (max-width: 767.98px) {
  .link {
    display: block;
  }
}

.link ~ .link {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .link ~ .link {
    margin-left: 15px;
  }
}

.logo {
  max-width: 160px;
}

@media (max-width: 575.98px) {
  .logo {
    margin: 0;
  }
}

.apps-download {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  font-size: 14px;
}

.apps-download-description {
  margin: 15px 0;
  width: 100%;
  text-align: left;
}

@media (min-width: 768px) {
  .apps-download-description {
    display: none;
  }
}

@media (min-width: 975px) {
  .apps-download-description {
    display: flex;
    margin: 0 15px 0 0;
    width: auto;
  }
}

@media (max-width: 767.98px) {
  .apps-download-description {
    display: none;
  }
}

.apps-download img {
  height: 40px;
}

@media (max-width: 575.98px) {
  .apps-download {
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .apps-download {
    justify-content: center;
    margin: 20px 0 0 0;
  }
}

.apps-download a ~ a {
  margin-left: 15px;
}

.row {
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.row ~ .row {
  margin-top: 20px;
}

.row:first-child {
  padding: 0;
  border-top: 0;
}


/***** Search field *****/
.search {
  position: relative;
}

.search label {
	font-size: 11px;
	margin: 0;
}

@media (min-width: 768px) {
  .search-container {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
  }
}

.search input[type="search"] {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  box-sizing: border-box;
  color: #b3b3b3;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  height: 70px;
  padding-left: 30px;
  padding-right: 30px;
}

[dir="rtl"] .search input[type="search"] {
  padding-right: 40px;
  padding-left: 20px;
}

.search input[type="search"]:focus {
  border: 1px solid #01b7d2;
  color: #555;
}

.search::before {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  color: #777;
  font-size: 18px;
  position: absolute;
  left: 15px;
}

[dir="rtl"] .search::before {
  right: 15px;
  left: auto;
}

/***** Hero component *****/
.hero {
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.hero-inner {
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hero-inner {
    max-width: 700px;
    width: 100%;
  }
}

.hero-info {
  display: flex;
  align-items: center;
  padding: 40px 0;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-title {
  text-align: center;
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
  color: #292929;
  margin: 0 0 40px 0;
}

.hero-description {
  line-height: calc(1.45 + 0.22);
  opacity: 0.7;
  color: #fff;
  text-align: left;
}



.blocks {
  display: flex;
  margin-bottom: 40px;
  flex-flow: row wrap;
}

.blocks-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  padding: 0;
}

.blocks-list-title {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 10px;
  display: block;
  color: #000000;
}

.blocks-item {
  color: #333;
  border-top: 1px solid #eaeaea;
  padding: 9px 0;
}

.blocks-item:first-child {
  border-top: 0;
}

.blocks-item:hover, .blocks-item:focus, .blocks-item:active {
  color: #333;
}

.blocks-item:hover *, .blocks-item:focus *, .blocks-item:active * {
  color: #333;
  text-decoration: none;
}

.blocks-item-internal {
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.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: #333;
}

.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;
}

.blocks-wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: auto;
  flex: 1 1 0;
  margin: 5px;
}

.blocks-card {
  color: #333333;
  width: 100%;
  height: 100%;
  padding: 30px;
  background: #fff;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid #cbcbcb;
}

/***** Homepage *****/
@media (min-width: 768px) {
  .section {
    margin-bottom: 60px;
  }
}

/***** Promoted articles *****/
.promoted-articles {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.promoted-articles-item {
  flex: 0 0 auto;
  width: 100%;
}

/***** Community section in homepage *****/
.community {
  text-align: center;
}

.community-image {
  min-height: 300px;
  background-image: url();
  background-position: center;
  background-repeat: no-repeat;
  max-width: 100%;
}

.community,
.activity {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 30px 0;
}

.section-promoted {
  margin-top: 40px;
}

.section-promoted .container {
  text-align: center;
}

.section-promoted .container h3 {
  font-weight: 400;
  font-size: 26px;
  margin-bottom: 10px;
}

.section-promoted .container .submit-a-request {
  color: #fff;
  background-color: #01b7d2;
  border-color: #01b7d2;
  padding: 23px calc(20px * 2);
  font-size: calc(18px - 2px);
  line-height: 1.2;
  margin-top: 10px;
  display: inline-block;
  border-radius: 6px;
  text-decoration: none;
}

.section-help {
  display: flex;
  flex-direction: column;
  padding-top: 60px;
}

@media (min-width: 768px) {
  .section-help {
    flex-direction: row;
    margin-top: 60px;
  }
}

.article-card {
  flex: 1 1 0;
  position: relative;
  overflow: unset;
  display: flex;
  flex-direction: column;
  justify-content: unset;
  align-items: center;
  margin-bottom: 5rem;
  padding: 0;
}

@media (min-width: 768px) {
  .article-card {
    min-height: auto;
    height: 235px;
    margin: 0 8px;
    text-align: center;
    margin-bottom: 10px;
    min-height: auto;
  }
}

.article-card-icon {
  font-size: 55px;
  padding: 10px 10px;
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  width: 70px;
  margin: 0 auto;
  margin-top: -10px;
  box-sizing: content-box;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  margin-bottom: calc(18px * 1.45 * 1.54);
}

.article-card-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 0;
  color: #292929;
}

.article-card-text {
  color: #787878;
  font-size: 17px;
  font-weight: 500;
  line-height: normal;
}






.button-request-home {
  margin-top: 15px;
}

.notification-notice {
  background: #28a745;
  color: #fff;
  height: 80px;
  display: flex;
  align-items: center;
}

.notification-notice .notification-inner {
  margin-left: 0;
  font-size: 22px;
}

.notification-notice .notification-inner .notification-text {
  width: auto;
}

.notification-notice .notification-inner .notification-dismiss {
  font-weight: 600;
}

.notification-notice .notification-inner .notification-dismiss::before {
  color: #fff;
}

.notification-notice .notification-inner .notification-icon {
  font-size: 25px;
}

.notification-notice .notification-inner .notification-icon::before {
  line-height: 25px;
}

/***** Recent activity *****/
.recent-activity-header {
  margin-bottom: 10px;
  text-align: center;
}

.recent-activity-list {
  padding: 0;
}

.recent-activity-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  overflow: auto;
  padding: 20px 0;
}

.recent-activity-item-parent {
  font-size: 18px;
}

.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: #01b7d2;
  content: "\1F4AC";
  display: inline-block;
  font-size: 16px;
  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-container .section.is-actived .article-list,
.category-container .section.is-actived .see-all-articles {
  display: block;
}

.category-container .section.is-actived .section-tree-title:after {
  border-color: transparent transparent #fff transparent;
  top: 36px;
}

.category-container .article-list {
  display: none;
}

.category-container .section {
  flex: initial;
  background: #fff;
}

@media (min-width: 768px) {
  .category-container .section {
    flex: 0 0 100%;
    overflow: hidden;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(55, 60, 80, 0.05);
    transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
    margin-bottom: 20px;
  }
}

.category-content {
  flex: 1;
}

@media (min-width: 1024px) {
  .category-content {
    flex: 0 0 100%;
  }
}

.section-tree {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  flex: 1;
}

@media (min-width: 768px) {
  .section-tree {
    flex-direction: row;
  }
}

.section-tree .section {
  margin-top: 10px;
}

.section-tree .section:first-child {
  margin-top: 0;
}

.section-tree .category-item-box {
  width: 100%;
  padding: 25px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.section-tree .category-item-box .category-item-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  flex-direction: column;
}

@media (min-width: 768px) {
  .section-tree .category-item-box .category-item-header {
    flex-direction: row;
  }
}

.section-tree .category-item-box .category-item-header-title {
  color: #000000;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 1rem;
  line-height: 32px;
  text-align: center;
}

@media (min-width: 768px) {
  .section-tree .category-item-box .category-item-header-title {
    margin-bottom: 0;
    text-align: left;
  }
}

.section-tree .category-item-box .category-item-header-link {
  font-size: 16px;
  font-weight: 600;
  color: #292929;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-tree .category-item-box .category-item-header-link {
    margin-bottom: 0;
  }
}

.section-tree .category-item-box .category-item-header-link svg {
  margin-left: 10px;
}

.section-tree .category-list-item {
  padding: 20px 0;
  align-items: center;
}

.section-tree .category-list-item:last-child {
  padding-bottom: 0;
}

.section-tree .category-list-item-link {
  color: #787878;
  font-size: 18px;
  font-weight: 400;
  line-height: 34px;
  padding: 0;
  transition: linear 0.2s;
}

.section-tree .category-list-item-link:hover {
  color: #01b7d2;
  font-weight: 700;
  text-decoration: none;
}

.section-tree .category-list-item .icon, .section-tree .category-list-item .recent-activity-item-comment span::before, .recent-activity-item-comment .section-tree .category-list-item span::before, .section-tree .category-list-item .box-another-articles .related-content-card .recent-articles li a::before, .box-another-articles .related-content-card .recent-articles li .section-tree .category-list-item a::before, .section-tree .category-list-item .attachments .attachment-item::before, .attachments .section-tree .category-list-item .attachment-item::before, .section-tree .category-list-item .share a, .share .section-tree .category-list-item a, .section-tree .category-list-item .vote-up::before, .section-tree .category-list-item .vote-down::before, .section-tree .category-list-item .actions .dropdown-toggle::before, .actions .section-tree .category-list-item .dropdown-toggle::before, .section-tree .category-list-item .collapsible-nav-list li[aria-selected="true"]::after, .collapsible-nav-list .section-tree .category-list-item li[aria-selected="true"]::after, .section-tree .category-list-item .collapsible-sidebar-title::after, .section-tree .category-list-item .search-result-votes::before, .section-tree .category-list-item .search-result-meta-count::before {
  font-size: 33px;
}

.section-tree .category-list-item .icon-star {
  font-size: 18px;
  line-height: 32px;
  margin-right: 5px;
  vertical-align: super;
}

.section-tree-title {
  padding: 30px 30px 30px 70px;
  font-weight: 400;
  cursor: pointer;
  color: #01b7d2;
  position: relative;
  margin: 0;
}

.section-tree-title:before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  background: #01b7d2;
  border-radius: 100%;
  left: 20px;
  right: auto;
}

.section-tree-title:after {
  content: "";
  position: absolute;
  top: 43px;
  border-style: solid;
  border-width: 6px;
  border-color: #fff transparent transparent transparent;
  display: block;
  z-index: 1;
  left: 29px;
  right: auto;
}

@media (min-width: 768px) {
  .section-tree-title {
    padding: 30px 70px 30px 30px;
  }
  .section-tree-title:before {
    right: 20px;
    left: auto;
  }
  .section-tree-title:after {
    right: 29px;
    left: auto;
  }
}

.section-tree .see-all-articles {
  display: none;
  padding: 15px 30px;
}

.article-list {
  padding: 0 calc(15px * 2);
}

.article-list-item {
  display: block;
  padding: calc(18px * 1.45 * 0.8) 0;
  list-style: none;
  border-top: 1px solid #eceeef;
}

.article-list-item:first-child {
  border: none;
}

.article-list-item a {
  color: #333333;
}

.article-list-item .icon-lock::before {
  vertical-align: baseline;
}

.icon-star::before {
  color: #01b7d2;
  font-size: 18px;
}

.icon, .recent-activity-item-comment span::before, .box-another-articles .related-content-card .recent-articles li a::before, .attachments .attachment-item::before, .share a, .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-size: 15px;
}

/***** Section pages *****/
.section-container {
  display: flex;
  justify-content: flex-end;
}

.section-container .section {
  flex: initial;
}

@media (min-width: 768px) {
  .section-container .section {
    flex: 0 0 100%;
    overflow: hidden;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(55, 60, 80, 0.05);
    transition: box-shadow .3s, -webkit-box-shadow .3s;
    margin-bottom: 20px;
  }
}

.section-content {
  flex: 1;
}

@media (min-width: 1024px) {
  .section-content {
    flex: 0 0 100%;
  }
}

.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 rgba(0, 0, 0, 0.1);
  font-size: 18px;
  padding: 15px 0;
}

.section-list-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.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%;
    padding: 0 30px;
    margin-left: auto;
    margin-right: auto;
  }
}

.article > .sub-nav {
  margin-top: 0;
}

.article-container {
  margin: 60px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .article-container {
    flex-direction: row;
    overflow: unset;
  }
}

.article-header {
  margin-bottom: 30px;
}

.article-avatar {
  margin-right: 10px;
  order: 0;
}

@media (min-width: 768px) {
  .article-avatar {
    margin-left: 10px;
  }
}

.article-author {
  margin: 20px 0 0;
  width: 100%;
  display: flex;
}

@media (min-width: 768px) {
  .article-author {
    margin: 0;
    width: auto;
    display: initial;
  }
}

.article-author .meta-group {
  display: flex;
}

.article-author .meta-group .icon-clock {
  margin-right: 5px;
  font-size: 16px;
}

.article-title-wrap {
  flex: 0 0 100%;
  width: 100%;
}

@media (min-width: 768px) {
  .article-title-wrap {
    display: flex;
    align-items: center;
  }
}

.article-title {
  color: #292929;
  font-weight: 700;
  font-size: 30px;
  margin: 0;
}

.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;
  text-align: left;
  order: 1;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .article-meta {
    text-align: right;
  }
}

.article-body {
  color: #787878;
  font-weight: 400;
  font-size: 18px;
  line-height: 34px;
}

.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: #015f6c;
}

.article-body code {
  background: #f7f7f7;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}

.article-body pre {
  background: #f7f7f7;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}

.article-body blockquote {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  color: #666;
  font-style: italic;
  padding: 0 15px;
}

.article-body > p:first-child {
  margin-top: 0;
}

.article-body > p:last-child {
  margin-bottom: 0;
}

.article-content {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  word-wrap: break-word;
  font-weight: 300;
}

.article-content strong {
  font-weight: 600;
}

.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: #01b7d2;
  content: "\1F4AC";
  display: inline-block;
  font-size: 18px;
  padding: 5px;
}

.article-card {
  background: #fff;
  border-radius: 6px;
  padding: 10px 30px;
}

.article-sidebar {
  flex: 1 0 auto;
  margin: 40px 0 0;
  padding: 0;
}

@media (min-width: 1024px) {
  .article-sidebar {
    border: 0;
    flex: 0 0 30%;
    height: auto;
    margin: 0;
  }

  .article-container .article-sidebar,
  .article-container .article-sidebar ul {
    width: 100%;
  }  
}

.article-sidebar-item {
  width: 100%;
  text-align: left;
  color: #292929;
  font-weight: 500;
}

.article-sidebar .box-articles {
  min-height: 120px;
  height: auto;
  padding: 0;
}

.article-sidebar .box-articles-sidenav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.article-sidebar .box-articles-sidenav:last-child {
  border-bottom: 0;
}

.article-sidebar .box-articles-sidenav .icon, .article-sidebar .box-articles-sidenav .recent-activity-item-comment span::before, .recent-activity-item-comment .article-sidebar .box-articles-sidenav span::before, .article-sidebar .box-articles-sidenav .box-another-articles .related-content-card .recent-articles li a::before, .box-another-articles .related-content-card .recent-articles li .article-sidebar .box-articles-sidenav a::before, .article-sidebar .box-articles-sidenav .attachments .attachment-item::before, .attachments .article-sidebar .box-articles-sidenav .attachment-item::before, .article-sidebar .box-articles-sidenav .share a, .share .article-sidebar .box-articles-sidenav a, .article-sidebar .box-articles-sidenav .vote-up::before, .article-sidebar .box-articles-sidenav .vote-down::before, .article-sidebar .box-articles-sidenav .actions .dropdown-toggle::before, .actions .article-sidebar .box-articles-sidenav .dropdown-toggle::before, .article-sidebar .box-articles-sidenav .collapsible-nav-list li[aria-selected="true"]::after, .collapsible-nav-list .article-sidebar .box-articles-sidenav li[aria-selected="true"]::after, .article-sidebar .box-articles-sidenav .collapsible-sidebar-title::after, .article-sidebar .box-articles-sidenav .search-result-votes::before, .article-sidebar .box-articles-sidenav .search-result-meta-count::before {
  font-size: 18px;
}

.article-relatives {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  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-send-question-request a {
  color: #292929 !important;
  font-weight: 600;
}

.article-more-questions {
  justify-self: center;
  align-self: flex-end;
  margin-left: auto;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .article-more-questions {
    margin-left: auto;
    margin-top: auto;
    margin-bottom: auto;
  }
}

.article-return-to-top {
  text-align: center;
  margin: -20px 0 40px;
}

@media (min-width: 1024px) {
  .article-return-to-top {
    display: none;
  }
}

.article-return-to-top a {
  color: #01b7d2;
  display: block;
  padding: 20px 0 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-subscribe {
  margin-left: 5px;
  position: relative;
  display: inline;
  padding: 0px 18px;
  display: none;
}

.article-unsubscribe {
  display: none;
  background-color: #01b7d2;
  color: #fff;
  text-decoration: none;
  margin-left: 10px;
  position: relative;
  top: -5px;
}

.article-unsubscribe:hover {
  background-color: #015f6c;
  border-color: #015f6c;
}

.sidenav-title, .box-another-articles .related-content-card .recent-articles h3 {
  position: relative;
  text-align: left;
  font-size: 20px;
  font-weight: 700;
  width: 100%;
  color: #292929;
}

.sidenav-item {
  display: block;
  padding: 10px 10px 10px 0;
  border-radius: 4px;
  color: #787878;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
  flex: 1;
  transition: linear 0.2s;
}

.sidenav-item.current-article, .sidenav-item:hover, .sidenav-item:focus {
  color: #01b7d2;
  font-weight: 700;
  text-decoration: none;
}

.recent-articles h3,
.related-articles h3 {
  font-size: 16px;
  margin: 20px 0;
}

.recent-articles li,
.related-articles li {
  margin-bottom: 15px;
}

.box-another-articles {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

@media (min-width: 768px) {
  .box-another-articles {
    flex-direction: row;
  }
}

.box-another-articles .sidenav-title, .box-another-articles .related-content-card .recent-articles h3 {
  text-align: left;
}

.box-another-articles .related-content-card {
  padding: 30px 20px 15px;
}

@media (min-width: 768px) {
  .box-another-articles .related-content-card {
    width: calc(50% - 10px);
  }
}

.box-another-articles .related-content-card .icon, .box-another-articles .related-content-card .recent-activity-item-comment span::before, .recent-activity-item-comment .box-another-articles .related-content-card span::before, .box-another-articles .related-content-card .recent-articles li a::before, .box-another-articles .related-content-card .attachments .attachment-item::before, .attachments .box-another-articles .related-content-card .attachment-item::before, .box-another-articles .related-content-card .share a, .share .box-another-articles .related-content-card a, .box-another-articles .related-content-card .vote-up::before, .box-another-articles .related-content-card .vote-down::before, .box-another-articles .related-content-card .actions .dropdown-toggle::before, .actions .box-another-articles .related-content-card .dropdown-toggle::before, .box-another-articles .related-content-card .collapsible-nav-list li[aria-selected="true"]::after, .collapsible-nav-list .box-another-articles .related-content-card li[aria-selected="true"]::after, .box-another-articles .related-content-card .collapsible-sidebar-title::after, .box-another-articles .related-content-card .search-result-votes::before, .box-another-articles .related-content-card .search-result-meta-count::before {
  font-size: 32px;
}

.box-another-articles .related-content-card .related-content-card-list-item-link, .box-another-articles .related-content-card .recent-articles li a {
  padding-left: 0px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.box-another-articles .related-content-card .related-content-card-list-item:nth-child(n + 4), .box-another-articles .related-content-card .recent-articles li:nth-child(n + 4) {
  display: none;
}

.box-another-articles .related-content-card .recent-articles h3 {
  font-size: 20px;
  font-weight: 400;
  margin-top: 0;
}

.box-another-articles .related-content-card .recent-articles li {
  margin-bottom: 0;
}

.box-another-articles .related-content-card .recent-articles li:nth-child(n + 4) {
  display: none;
}

.box-another-articles .related-content-card .recent-articles li a {
  font-size: 18px;
  padding-right: 45px !important;
  position: relative;
  padding-left: 0px !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.box-another-articles .related-content-card .recent-articles li a::before {
  font-size: 32px;
  content: "\e921";
  position: absolute;
  color: #999;
  right: 0;
  padding-left: 5px;
  top: 0;
  bottom: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/***** 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: 16px;
  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 {
  width: 100%;
  height: 128px;
  border-radius: 10px;
  border: 1px dashed #999999;
  background-color: rgba(153, 153, 153, 0.1);
}

.upload-dropzone span {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  color: #999999;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  padding-top: 25px;
}

.transition {
  transition: all 0.3s ease-in-out;
}

/***** Social share links *****/
.share {
  padding: 0;
  white-space: nowrap;
  display: flex;
}

@media (max-width: 575.98px) {
  .share {
    justify-content: center;
    margin-top: 25px;
  }
}

.share a {
  display: inline-block;
}
.share a span {
	display: block;
	text-indent: -9999px;
}

.share li {
  display: flex;
  align-items: center;
}

.share a {
  padding: 0;
  border: 1px solid #eee;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #fff;
  display: inline-block;
  text-decoration: none;
  line-height: 42px;
  text-align: center;
  color: #292929;
}

.share a ~ a {
  margin-left: 5px;
}

.share a:hover,
.share a:focus {
  border: 1px solid #eee !important;
  outline: 0;
  color: #00bdd9;
}

/***** Comments *****/
/* Styles comments inside articles, posts and requests */
.comment {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px 0;
}

.comment-heading {
  margin-bottom: 5px;
  margin-top: 0;
}

.comment-overview {
  padding: 0;
}

.comment-overview p {
  margin-top: 0;
}

.comment-callout {
  color: #666;
  display: inline-block;
  font-weight: 300;
  font-size: 18px;
  margin: 0;
}

.comment-callout a {
  color: #01b7d2;
}

.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 #01b7d2;
  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: #01b7d2;
}

.comment-body {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  font-family: "Roboto", 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: #015f6c;
}

.comment-body code {
  background: #f7f7f7;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}

.comment-body pre {
  background: #f7f7f7;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}

.comment-body blockquote {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  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: #01b7d2;
}

.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: #01b7d2;
}

.vote-voted:hover::before {
  color: #015f6c;
}

/***** 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();
  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 rgba(0, 0, 0, 0.1);
  font-size: 13px;
}

@media (min-width: 768px) {
  .topic-header {
    padding-bottom: 10px;
  }
}

.topic-header .dropdown {
  display: block;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  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: #01b7d2;
}

.community-follow [role="button"]:hover::after, .community-follow [role="button"]:focus::after {
  border-color: #fff;
  color: #fff;
}

.community-follow [role="button"][aria-selected="true"] {
  background-color: #01b7d2;
  color: #fff;
}

.community-follow [role="button"][aria-selected="true"]::after {
  border-left: 1px solid #fff;
  color: #fff;
}

.community-follow [role="button"][aria-selected="true"]:hover {
  background-color: #015f6c;
  border-color: #015f6c;
}

.community-follow [role="button"]::after {
  border-left: 1px solid #01b7d2;
  content: attr(data-follower-count);
  color: #01b7d2;
  display: inline-block;
  font-family: "Roboto", 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 #01b7d2;
  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 rgba(0, 0, 0, 0.1);
  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: #01b7d2;
  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: #015f6c;
}

.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: #01b7d2;
}

.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: "Roboto", 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: #015f6c;
}

.post-body code {
  background: #f7f7f7;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}

.post-body pre {
  background: #f7f7f7;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}

.post-body blockquote {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  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: #01b7d2;
  content: "\1F4AC";
  display: inline-block;
  font-size: 18px;
  padding: 5px;
}

.post-sidebar {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  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 rgba(0, 0, 0, 0.1);
    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 rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  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 #01b7d2;
    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;
  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 {
  top: 5px;
  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 rgba(0, 0, 0, 0.1);
  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: #01b7d2;
}

.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% !important;
  height: 50px !important;
  font-size: calc(12px * 1.45) !important;
  padding-left: 20px !important;
}

.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: #01b7d2;
  color: #fff;
}

.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: #01b7d2;
  border-radius: 4px;
  color: #fff;
  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: #015f6c;
  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 rgba(0, 0, 0, 0.1);
  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 #01b7d2;
}

.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 #01b7d2;
}

.request-main input#mark_as_solved {
  display: none;
}

.request-title {
  width: 100%;
}

@media (min-width: 1024px) {
  .request-title {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
    max-width: 66%;
    padding-bottom: 20px;
  }
}

.request-sidebar {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  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: 16px;
  font-weight: 600;
  position: relative;
}

@media (min-width: 1024px) {
  .request-sidebar h5 {
    display: none;
  }
}

.request-details {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  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;
}


/***** Metadata *****/
.meta-group {
  display: block;
}

.meta-group * {
  display: inline;
}

.icon-meta-time {
  font-size: 18px;
}

.meta-data {
  color: #666;
  font-size: 13px;
  font-weight: 300;
}

.meta-data:not(:last-child)::after {
  content: "\00B7";
  margin: 0 5px;
}

/***** Icons *****/
@font-face {
  font-family: 'icomoon';
  src: url(/hc/theming_assets/01JR84SNFV38MSAGCDNKVGH4EM) format("embedded-opentype"), url(/hc/theming_assets/01JR84SNJQK4440J6JM4DKQ72K) format("truetype"), url(/hc/theming_assets/01JR84SNPW21Z2H0312PZTZF7E) format("woff"), url(/hc/theming_assets/01JR84SNKA41QMPYV0PAPQWVPC) format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-youtube:before {
  content: "\e900";
}
.icon-facebook:before {
  content: "\e901";
}
.icon-instagram:before {
  content: "\e902";
}

/* 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: #01b7d2;
  border: 0;
  color: #fff;
  line-height: normal;
  padding: 8px 20px;
  outline-color: #01b7d2;
}

.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 #01b7d2;
  border-radius: 4px;
  color: #01b7d2;
  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;
}


/* Non-latin search results highlight */
/* Add a yellow background for Chinese */
html[lang|="zh"] .search-result-description em {
  font-style: normal;
  background: yellow;
}

/* Use bold to highlight for the rest of supported non-latin languages */
html[lang|="ar"] .search-result-description em,
html[lang|="bg"] .search-result-description em,
html[lang|="el"] .search-result-description em,
html[lang|="he"] .search-result-description em,
html[lang|="hi"] .search-result-description em,
html[lang|="ko"] .search-result-description em,
html[lang|="ja"] .search-result-description em,
html[lang|="ru"] .search-result-description em,
html[lang|="th"] .search-result-description em {
  font-weight: 700;
}

.page-header-description.search_results {
  font-size: 24px;
  color: #292929;
  font-weight: 700;
  margin: 0;
}

.common-questions {
  display: flex;
  margin-top: 5rem;
}

@media (min-width: 1024px) {
  .common-questions {
    flex: 0 0 30%;
    height: auto;
    margin: 0;
    margin-top: 0;
  }
}

.container-request-page {
  padding: 0%;
  max-width: none;
  margin-bottom: 60px;
}

.container-request-page-title h1 {
  margin: 60px 0;
  text-align: center;
  font-size: 28px;
  color: #292929;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container-request-page .request-form {
  display: flex;
  flex-direction: column;
  max-width: 100%;
}

.container-request-page .request-form .form-field,
.container-request-page .request-form footer {
  order: 7;
}

.container-request-page .request-form .request_custom_fields_360019176734 {
  order: 1;
  margin-bottom: 30px;
  margin-top: 0;
}

.container-request-page .request-form .request_custom_fields_360020153954 {
  order: 2;
  margin-bottom: 25px;
  margin-top: 0;
}

.container-request-page .request-form .request_custom_fields_360020135873 {
  order: 3;
  margin-bottom: 25px;
  margin-top: 0;
}

.container-request-page .request-form .request_subject {
  order: 4;
  margin-bottom: 30px;
  margin-top: 0px;
}

.container-request-page .request-form .suggestion-list {
  order: 4;
  margin-top: 5px;
  margin-bottom: 10px;
}

.container-request-page .request-form .request_custom_fields_360019247694 {
  order: 5;
  margin-bottom: 30px;
  margin-top: 0px;
}

.container-request-page .request-form .request_anonymous_requester_email {
  order: 6;
  margin-bottom: 30px;
  margin-top: 0px;
}

.container-request-page .request-form .request_custom_fields_360020135873 {
  display: none;
}

.container-request-page .request-form.promoterForm .request_custom_fields_360020135873 {
  display: block;
}

.container-request-page .request-form.promoterForm .request_custom_fields_360020153954 {
  display: none;
}

.container-request-page .request-form #request-attachments:focus {
  border: 1px solid #01b7d2;
  opacity: 1;
  color: #ededed;
}

.container-request-page .request-form #request_description_hint {
  color: #b3b3b3;
  font-size: 13px;
}

.container-request-page .request-form #request_description_hint #request_description {
  padding: 0;
}

.sumary-card {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  color: #333333;
  padding: 30px 30px 0;
  background: #fff;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid #cbcbcb;
}

@media (min-width: 1024px) {
  .sumary-card {
    flex-direction: row;
  }
}

.sumary-card-item {
  transition: box-shadow .3s, -webkit-box-shadow .3s;
  margin-bottom: 10px;
  flex: 1 0 auto;
}

@media (min-width: 1024px) {
  .sumary-card-item {
    align-self: flex-end;
    flex: 0 0 auto;
    width: 100%;
    margin-bottom: 15px;
  }
}

.sumary-card-item-header {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.sumary-card-item-header .sumary-card-item-category {
  color: #00bdd9;
  font-size: 13px;
  display: flex;
}

.sumary-card-item-header .sumary-card-item-category .item-category-section {
  list-style-type: circle;
  list-style-position: unset;
}

.sumary-card-item-header .sumary-card-item-category .item-category-section:first-child {
  list-style-type: none;
  margin-right: 18px;
}

.sumary-card-item-header .sumary-card-item-category .item-category-section span {
  position: relative;
  margin-left: -5px;
}

.sumary-card-item-header .sumary-card-item-date {
  color: #b3b3b3;
}

.sumary-card-item-header .sumary-card-item-date .icon, .sumary-card-item-header .sumary-card-item-date .recent-activity-item-comment span::before, .recent-activity-item-comment .sumary-card-item-header .sumary-card-item-date span::before, .sumary-card-item-header .sumary-card-item-date .box-another-articles .related-content-card .recent-articles li a::before, .box-another-articles .related-content-card .recent-articles li .sumary-card-item-header .sumary-card-item-date a::before, .sumary-card-item-header .sumary-card-item-date .attachments .attachment-item::before, .attachments .sumary-card-item-header .sumary-card-item-date .attachment-item::before, .sumary-card-item-header .sumary-card-item-date .share a, .share .sumary-card-item-header .sumary-card-item-date a, .sumary-card-item-header .sumary-card-item-date .vote-up::before, .sumary-card-item-header .sumary-card-item-date .vote-down::before, .sumary-card-item-header .sumary-card-item-date .actions .dropdown-toggle::before, .actions .sumary-card-item-header .sumary-card-item-date .dropdown-toggle::before, .sumary-card-item-header .sumary-card-item-date .collapsible-nav-list li[aria-selected="true"]::after, .collapsible-nav-list .sumary-card-item-header .sumary-card-item-date li[aria-selected="true"]::after, .sumary-card-item-header .sumary-card-item-date .collapsible-sidebar-title::after, .sumary-card-item-header .sumary-card-item-date .search-result-votes::before, .sumary-card-item-header .sumary-card-item-date .search-result-meta-count::before {
  font-size: 14px;
  margin-right: 5px;
}

.sumary-card-item p {
  margin: 0;
}

.sumary-card-item a {
  display: block;
  color: #333333;
  width: 100%;
  height: 100%;
  padding: 20px;
  background: #fff;
  border-radius: 6px;
  text-decoration: none;
}

.sumary-card-item strong {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #00b7d2;
  margin: 0 0 6px;
  line-height: normal;
}

.sumary-card-item .icon-lock::before {
  vertical-align: baseline;
}

.sumary-card-item:last-child a {
  border: 0;
}

.related-content-card {
  height: fit-content;
  padding: 75px 10px 15px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 80px;
  overflow: unset;
  display: flex;
  flex-direction: column;
  justify-content: unset;
  position: relative;
}

.related-content-card-list-item, .box-another-articles .related-content-card .recent-articles li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.related-content-card-list-item:first-child, .box-another-articles .related-content-card .recent-articles li:first-child {
  border: 0;
}

.related-content-card-list-item-link, .box-another-articles .related-content-card .recent-articles li a {
  display: block;
  padding: 10px;
  border-radius: 4px;
  color: #000000;
  font-size: 13px;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
  flex: 1;
}

.related-content-card .article-card-icon {
  font-size: 55px;
  padding: 10px 10px;
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  width: 70px;
  margin: 0 auto;
  margin-top: -10px;
  box-sizing: content-box;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  margin-bottom: calc(18px * 1.45 * 1.54);
}

.accessibility-menu {
  position: absolute;
  background: #191919;
  top: -100px;
  left: 0;
  height: auto;
  width: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  padding: 10px;
}

@media (max-width: 567px) { 
	.accessibility-menu { display: block; text-align: center; }
}

.accessibility-menu li ~ li { 
	margin-left: 15px;
}

.accessibility-menu:focus, .accessibility-menu:focus-within {
  top: 0;
}

.accessibility-menu a {
  color: #fff;
}

.accessibility-menu a:hover {
  color: #01b7d2;
}

.dropdown {
  position: relative;
}

.dropdown__menu {
  position: absolute;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 20px;
  z-index: 8;
  visibility: hidden;
  -webkit-transform: scale(0.97) translate(-50%, 0) !important;
  transform: scale(0.97) translate(-50%, 0) !important;
  opacity: 0;
  -webkit-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
  left: 50% !important;
  right: auto !important;
}

.dropdown__menu.show {
  opacity: 1;
  visibility: visible;
}

.dropdown__menu:before {
  content: "";
  display: block;
  top: -15px;
  left: 0;
  right: 0;
  margin: auto;
  border-style: solid;
  border-color: transparent transparent #e6e6e6 transparent;
  border-width: 7px;
  width: 7px;
  position: absolute;
}

.dropdown__menu--item {
  background: none;
  -webkit-box-flex: 0;
  flex: 0 0 100% !important;
  outline: 0 !important;
  padding: 0 !important;
  white-space: nowrap;
  text-decoration: none !important;
  text-transform: uppercase;
  font-size: 12px !important;
  font-weight: 700;
  text-align: left;
  border: 0 !important;
  display: block !important;
  margin: 10px 0 0 !important;
}

.customer-service {
  border-top: 1px solid #e6e6e6;
  font-size: 14px;
  margin-top: 20px;
  padding-top: 20px;
  width: 100%;
}

.customer-service h2 {
  font-size: 13px;
  font-weight: 700;
}

.customer-service p {
  margin: 0;
}

.customer-service__day {
  margin: 15px 0 0;
  font-weight: 300;
}

.customer-service__hour {
  margin: 0;
  font-weight: 400;
}

.customer-service small {
  color: #ccc;
  font-size: 80%;
  font-weight: 400;
}

a:focus,
a:hover {
  border: 0 !important;
}

@media (min-width: 1600px) {
  .container {
    max-width: 1410px !important;
  }
}




/** ### DAQUI PARA BAIXO OK #############################################################################################################################**/

.home-page {
	padding: 80px 0;
}

@media (max-width: 767px) {
	.home-page {
		padding: 60px 0;
	}
}

.home-page .search {
	margin: 0 0 80px 0;
}

.home-page .search .title {
	text-align: center;
	font-size: 32px;
	line-height: 32px;
	font-weight: 700;
	color: #292929;
	margin: 0 0 20px 0;
}

@media (max-width: 767px) {
	.home-page .search .title {
		font-size: 24px;
		line-height: 24px;
	}
}


.home-page .search .horario-atendimento {
	text-align: center;
	margin: 0 0 20px 0;
}

.home-page .search .horario-atendimento .title {
	color: #292929;
	font-size: 18px;
	margin: 0 0 5px 0;
}

.home-page .search .horario-atendimento p {
	font-size: 16px;
	margin: 0;
}

.home-page .search-box {
	max-width: 650px;
	margin: 0 auto;
}

@media (max-width: 767px) {
	.home-page .search {
		margin: 0 0 60px 0;
	}
}

.home-page .quick-links {
	margin: 0 0 80px 0;	
}

.home-page .quick-links .container {
	display: flex;
	justify-content: space-between;
}

.home-page .quick-links .blocks-card {
	width: calc(50% - 15px);
}

.home-page .quick-links .quick-links-title {
	font-size: 24px;
	font-weight: 500;
	line-height: 30px;
	color: #292929;
	margin: 0 0 30px;
}

.home-page .quick-links .quick-links-description {
	color: #858585;
	font-size: 18px;
	margin: 0 0 30px;
}

.home-page .quick-links .quick-links-button {
	width: 100%;
	color: #fff;
	background: #01b7d2;
	border-radius: 50px;
	height: 50px;
	padding: 0 30px;
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: 700;
}

.home-page .quick-links .quick-links-button:hover, 
.home-page .quick-links .quick-links-button:active, 
.home-page .quick-links .quick-links-button:focus {
	color: #fff;
}

@media (max-width: 993px) {
	.home-page .quick-links .container {
		flex-direction: column;
	}
	
	.home-page .quick-links .container .blocks-card ~ .blocks-card {
		margin-top: 40px;
	}

	.home-page .quick-links .blocks-card {
		width: 100%;
	}
}

@media (max-width: 767px) {
	.home-page .quick-links {
		margin: 0 0 60px 0;
	}
	
	.home-page .quick-links .container .blocks-card ~ .blocks-card {
		margin-top: 20px;
	}
}

.home-page .knowledge-base .articles .promoted-articles-item ~ .promoted-articles-item {
  border-top: 1px solid #d8d8d8;
}

.home-page .knowledge-base .articles .promoted-articles-item-container {
  display: flex;
  flex-direction: column;
  font-size: 18px;
  font-weight: 400;
  color: #787878;
  transition: 0.2s;
  padding: 15px 0;
}

.home-page .knowledge-base .articles .promoted-articles-item-container:hover {
  color: #01b7d2;
}

.page-header {
	background: #01b7d2;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 0 80px 0;
	padding: 40px 0;
}

@media (max-width: 767px) {
	.page-header {
		margin: 0 0 60px 0;
	}
}

.page-header h1 {
	text-align: center;
	color: #292929;
	font-size: 48px;
	font-weight: 700;
	margin: 0;
	color: #fff; 
}

@media (max-width: 767px) {
  .page-header h1 {
    font-size: 38px;
  }
}

.page-header .breadcrumbs {
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	color: #fff;
}

@media (max-width: 767px) {
  .page-header .breadcrumbs {
    text-align: center;
  }
}

.page-header .breadcrumbs li {
  display: inline;
  font-weight: 700;
  font-size: 16px;
  max-width: 450px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-header .breadcrumbs li + li::before {
  content: ">";
  margin: 0 10px 0 15px;
  color: #fff;
}

.page-header .breadcrumbs li a {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}

.page-header .breadcrumbs li a:visited {
  color: #fff;
}

@media (max-width: 767px) {

  .page-header {
    padding: 25px 0;
  }

  .category-page .page-header .breadcrumbs li:nth-child(1),
  .section-page .page-header .breadcrumbs li:nth-child(2),
  .article-page .page-header .breadcrumbs li:last-child {
    display: block !important;
    width: 100%;
  }

  .page-header .breadcrumbs li,
  .category-page.section-page .page-header .breadcrumbs li:nth-child(1) {
    display: none !important;
  }

  .page-header .breadcrumbs li + li::before {
    margin: 0 10px;
    content: "<";
  }
}

.section-box {
	color: #333333;
    padding: 30px;
    background: #fff;
    border-radius: 4px;
    text-decoration: none;
    border: 1px solid #cbcbcb;
}

@media (max-width: 767px) {
	.section-box {
		padding: 15px;
	}
}

.section-box .section-header {
	margin: 0 0 15px 0;
	display: flex;
	align-items: center;
    justify-content: space-between;
}

.section-box .section-header svg {
	max-width: 20px;
}

@media (max-width: 767px) {
	.section-box .section-header {
		display: block;
	}
}

.section-box .section-header h2 {
	font-weight: 700;
	font-size: 24px;
}

@media (max-width: 767px) {
	.section-box .section-header h2 {
		font-size: 21px;
	}
}

.section-box .section-header a {
	color: #333333;
}

.section-box .articles li ~ li {
	border-top: 1px solid #d8d8d8;
}

.section-box .articles a {
	display: block;
	padding: 15px 0;
	font-size: 18px;
	color: #787878;
    transition: 0.2s;
}

@media (max-width: 767px) {
	.section-box .articles a {
		font-size: 14px;
	}
}

.section-box .articles a:visited {
	color: #787878;
}

.section-box .articles a:hover,
.section-box .articles a:focus {
	color: #01b7d2;
}

.section-box ~ .section-box {
	margin-top: 40px;
}

.category-page {
	padding: 0 0 80px 0;
}

@media (max-width: 767px) {
	.category-page {
		padding: 0 0 60px 0;
	}
}

.article-page {
	padding: 0 0 80px 0;
}

.article-page .container-wrapper {
	max-width: 850px;
	margin: 0 auto;
}

@media (max-width: 767px) {
	.article-page {
		padding: 0 0 60px 0;
	}
}

.article-page .article-votes {
	border-top: 1px solid #e6e6e6;
	margin: 60px 0 0 0;
	padding: 60px 0;
	text-align: center;
}

.article-page .article-votes .article-footer-box {
	width: 100%;
	font-size: 15px;
	color: #787878;
}

.article-page .article-votes .box-article-votes {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
}

.article-page .article-votes-question {
	font-size: 21px;
	margin-bottom: 20px;
	color: #292929;
}

.article-page .article-votes-controls {
	display: flex;
	width: 100%;
	margin-bottom: 40px;
	justify-content: center;
}

.article-page .article-votes-controls-item {
	display: flex;
	align-items: center;
	margin-right: 12px;
}

.article-page .article-vote {
	border: 1px solid #979797;
	border-radius: 50px;
	font-weight: 700;
	font-size: 15px;
	color: #292929;
	text-transform: uppercase;
	width: 150px;
	height: 50px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.article-page .article-vote:hover, .article-page .article-vote:focus {
	border: 1px solid #01b7d2 !important;
	background: #01b7d2;
	color: #fff;
}

.search-page {
	padding: 0 0 80px 0;
}

@media (max-width: 767px) {
	.search-page {
		padding: 0 0 60px 0;
	}
}

.search-page .no-results {
	text-align: center;
	color: #292929;
	max-width: 650px;
	margin: 0 auto 0px auto;
}

.search-page .no-results h1 {
	font-weight: normal;
	font-size: 32px;
}

.search-page .no-results p {
	color: #858585;
    font-size: 18px;
    margin: 0 0 20px;
}

.pagination {
  margin: 40px 0 0 0;
  text-align: center;
  display: flex;
  justify-content: center;
}

.pagination * {
  display: inline-block;
}

.pagination li {
  height: 40px;
  float: left;
  margin-left: 5px;
  width: 40px;
}

@media (min-width: 768px) {
  .pagination li {
    height: 40px;
    width: 40px;
  }
}

[dir="rtl"] .pagination li {
  float: right;
}

.pagination li:hover:not(.pagination-current) {
  background-color: #fafafa;
  border-radius: 5px;
}

.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: 16px;
  padding: 7px 0;
  color: #666;
}

@media (min-width: 768px) {
  .pagination a, .pagination span {
  }
}

.pagination-current {
  border: 1px solid #00bdd9;
  border-radius: 5px;
  background: #00bdd9;
}

.pagination-current a, .pagination-current span {
  color: #fff;
}

.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;
}


.error-page {
	max-width: 800px;
	margin: auto;
	text-align: center;
	padding: 80px 0;
	min-height: 600px;
    justify-content: center;
    align-items: center;
    display: flex;
}

@media (max-width: 767px) {
	.error-page {
		padding: 60px 0;
	}
}

.error-page h1 {
	color: #292929;
	font-size: 60px;
	margin-bottom: 30px;
}

.error-page h2 {
	color: #787878;
	font-size: 24px;
	margin-bottom: 20px;
}

.error-page p {
	color: #787878;
	margin: 0 0 20px 0;
}

.error-page a[role="button"] {
	display: inline-block;
}


form .form-field {
  margin-bottom: 15px;
}
form .form-field:last-child {
  margin-bottom: 0;
}


body {
  max-width: 100%;
}