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

* {
  box-sizing: border-box;
}

html, body {
    height: 100%;
}
body {
  background-color: #eeeeee;
  color: #333333;
  -webkit-font-smoothing: antialiased;
  margin:0;
}
.clear-fix:before, .clear-fix:after {
    content: "";
    display: table;
}
.clear-fix:after {
    clear: both;
}
@media (min-width: 1024px) {
  .page > main {
    margin: 0 auto;
    max-width: 1280px;
    min-height: 65vh;
    padding: 0 15px 30px;
  }
}
 .page > main {
   padding: 0 15px 30px;
    background: #ffffff none repeat scroll 0 0;
  }

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

h1 {
  font-size: 32px;
}

h2 {
  font-size: 22px;
}

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

h4 {
  font-size: 16px;
}

a {
  color: #0081c2;
  text-decoration: none;
}

a:hover, a:active, a:focus {
  text-decoration: none;
}
a:hover {
    color: #f37404;
}
input,
textarea {
  color: #000;
  font-size: 14px;
}

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

input:focus {
  border: 1px solid #0081c4;
}

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

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("../../../../theme_assets/305861/27f536d448438fdd88b4004a3223bcc153fb621d.svg") no-repeat #fff;
  background-position: right 10px center;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px 30px 8px 10px;
  outline: none;
  color: #555;
  width: 100%;
}

select:focus {
  border: 1px solid #0081c4;
}

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

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

textarea:focus {
  border: 1px solid #0081c4;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0;
  width:100%;
}
.container-divider {
  border-top: 1px solid #ddd;
  margin-bottom: 20px;
}

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

.error-page {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
  text-align: center;
  padding-top: 20px;
}

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

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

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

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

.button::after, [role="button"]::after {
  color: #0081c4;
}

.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: #0081c4;
  color: #ffffff;
  text-decoration: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.table td {
  display: block;
}

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

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

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

/***** Forms *****/
.form {
  min-height: 315px;
  margin-bottom: 30px;
}
.form-field ~ .form-field {
  margin-top: 25px;
}

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

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

.form-field input:focus {
  border: 1px solid #0081c4;
}

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

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

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

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

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

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

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

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

[data-loading="true"] input,
[data-loading="true"] textarea {
  background: transparent url("../../../../theme_assets/305861/6aae8ce36967837f706ac36deff4b753e43977a4.gif") 99% 50% no-repeat;
  background-size: 16px 16px;
}
.form footer {
    margin-top: 10px;
    padding-top: 10px;
    text-align: right;
}

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

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

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

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

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

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

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

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

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

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

.nav-wrapper a {
  border: 0;
  color: #0081c4;
  display: none;
  font-size: 14px;
  padding: 0 20px 0 0;
  width: auto;
}

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

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

.nav-wrapper a:hover, .nav-wrapper a:focus, .nav-wrapper a:active {
  background-color: transparent;
  color: #0081c4;
  text-decoration: underline;
}

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

.nav-wrapper .icon-menu {
  display: inline-block;
  margin-right: 10px;
  color: #0081c4;
}

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

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

/***** 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: #0081c4;
  min-width: 0;
  padding: 0;
  white-space: nowrap;
}

.user-info > [role="button"]:hover {
  color: #0081c4;
  background-color: transparent;
}

.user-info > [role="button"]::after {
  color: #0081c4;
  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: #0081c4;
  border: 2px solid #fff;
  border-radius: 50%;
  bottom: -4px;
  color: #ffffff;
  content: "\1F464";
  font-size: 14px;
  height: 14px;
  line-height: 14px;
  position: absolute;
  right: -2px;
  text-align: center;
  width: 14px;
}

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

.footer a {
  color: #666;
}

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

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

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

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

@media (min-width: 768px) {
  .breadcrumbs {
    margin: 0;
  }
}
.breadcrumbs li {
  color:#ff8400;
  display: inline;
  font-weight: 300;
  font-size: 13px;
  max-width: 450px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.breadcrumbs li a{
    color: #ff8400;
}
.breadcrumbs li + li::before {
  content: ">";
  margin: 0 4px;
}

.breadcrumbs li a:visited {
  color: #0081c4;
}

/***** Search field *****/
.search {
  position: relative;
  max-width: 700px;
margin: 0 auto;
}

    .search input[type="search"] {
        border: 1px solid #dddddd;
        border-radius: 0px;
        box-sizing: border-box;
        color: #373737;
        height: 45px;
        padding-left: 40px;
        padding-right: 20px;
        width: 100%;
    }

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

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

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

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

.search-full input[type="search"] {
  border: 1px solid #bbbbbb;
  font-size:18px;
}

/***** Hero component *****/
.hero {
    background-position: center center;
    background-size: cover;
    border-top: 1px solid #cccccc;
    height: 260px;
    margin: 0 -15px;
    max-width: 1280px;
    padding: 0 20px;
    text-align: center;
    background-image: url("../../../../theme_assets/305861/41ae5ecbe465fea0c4d6ebe92172e4f76747d650.png");
}
.hero-inner {
   margin-top: 55px;
}

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

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

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

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

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

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

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

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

.sub-nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
 padding-bottom: 5px;
 margin-top: 10px;
margin-bottom: 10px;
}

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

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

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

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

@media (min-width: 768px) {
  .blocks-list {
    margin: 0 -15px;
  }
}
.blocks-item {
    box-sizing: border-box;
    color: #0072ef;
    display: flex;
    flex: 1 0 255px;
    flex-direction: column;
    justify-content: initial;
    margin: 0 0 30px;
    max-width: 100%;
    vertical-align: top;
}
.blocks-item:first-child {
    flex: 1 0 43%;
    margin-right: 15px;
}
@media (min-width: 768px) {
 .blocks-item {
    margin:0 15px 15px;
}
}
.blocks-item:hover *, .blocks-item:focus *, .blocks-item:active * {
  text-decoration: none;
}

.blocks-item-link {
  color: #0081c4;
  padding: 20px 30px;
}

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

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

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

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

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

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

/***** Promoted articles *****/
.related-articles {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.promoted-articles{
     padding-bottom: 30px;
}
.promoted-articles-item a,.related-articles a {
  color: #333333;
  display: block;
  padding: 5px 0;
}

.promoted-articles-item:last-child a {
  border: 0;
}
.promoted {
    flex: 1 0 520px;
}
/***** Community section in homepage *****/
.community {
  text-align: center;
}

.community-image {
  min-height: 300px;
  background-image: url(../../../../theme_assets/305861/e58c5e8c3ebf94cbbc4d3669def0adbd7d0ff479.svg);
  background-position: center;
  background-repeat: no-repeat;
  max-width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.category-content {
  flex: 1;
}

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

.section-tree {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top:30px;
}

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

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

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

.section-tree .icon-lock::before {
  vertical-align: baseline;
}

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

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

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

.article-list-item {
  font-size: 16px;
  padding:5px 10px;
}

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

.icon-star::before {
  color: #0081c4;
  font-size: 18px;
}
.section-tree .article-list-item a {
  font-size: 14px;
}
/***** Section pages *****/
.section-container {
  display: flex;
  justify-content: flex-end;
}

.section-content {
  flex: 1;
}

@media (min-width: 1024px) {
  .section-content {
    flex: 0 0 77%;
    margin-right: 40px;
  }
}

.section-subscribe .dropdown-toggle::after {
  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 75%;
    max-width: 75%;
    min-width: 640px;
    padding: 0 50px 0 20px;
}
}

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

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

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

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

.article-author {
  margin-bottom: 10px;
}
.article-title{
 font-family: avenir-black-oblique,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif;
 line-height:normal;
}
@media (min-width: 768px) {
  .article-title {
    flex-basis: 100%;
    /* Take entire row */
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.article-sidebar {
  flex: 1 0 auto;
  margin-bottom: 20px;
  padding: 0;
}

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

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

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

.article-relatives > * {
  flex: 1;
  margin-right: 0;
}

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

@media (min-width: 768px) {
  .article-relatives > * {
    margin-right: 20px;
  }
}
.article-votes {
    padding: 20px 0;
    text-align: center;
    background: #2f2f2f none repeat scroll 0 0;
    margin: 0 -15px;
    margin-top:10px;
}
.article-vote {
    background: transparent;
    border: none;
    color: #0081c4;
    margin: 0px 0px;
    min-width: 50px;
    width: auto;
    padding: 0;
}
.article-vote::before {
 font-size: 24px;
margin-right: 0px;
  color: #fff;
}

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

.article-vote:focus, .article-vote:active {
  background-color: transparent;
}

.article-vote:hover {
  background-color: transparent;
}

.article-vote:hover::before, .article-vote:hover::after, .article-vote[aria-selected="true"]::before, .article-vote[aria-selected="true"]::after {
 opacity:.7;
}

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

.article-vote-down::before {
  content: "\2715";
}
.article-votes-question {
    color: #fff;
    font-size: 20px;
    vertical-align: middle;
}
.article-vote-count {
    color: #fff;
    margin-top: 10px;
    display: inline-block;
}
.article-more-questions {
  margin: 10px 0 20px;
  text-align: center;
}

.article-return-to-top {
  border-top: 1px solid #ddd;
}

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

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

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

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

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

.article-unsubscribe {
  background-color: #0081c4;
  color: #ffffff;
  text-decoration: none;
}

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

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

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

.sidenav-item.current-article, .sidenav-item:hover {
  background-color: #0081c4;
  color: #ffffff;
  text-decoration: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.share a:hover::before {
  color: #0081c4;
}

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

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

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

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

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

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

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

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

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

.comment-callout a {
  color: #0081c4;
}

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

.comment-sorter a {
  color: #666;
  font-weight: 300;
  font-size: 13px;
  text-decoration: none;
}

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

.comment-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.comment-wrapper.comment-official {
  border: 1px solid #0081c4;
  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-published {
  color: #666;
  display: block;
  font-weight: 300;
  font-size: 13px;
}

.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: #0081c4;
}

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

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

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

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

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

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

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

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

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

.vote a {
  outline: none;
}

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

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

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

.vote-up:hover::before,
.vote-down:hover::before {
  color: #0081c4;
}

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

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

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

/***** 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(../../../../theme_assets/305861/ea0fc49e94c74884940bd530924916ea87035a5f.svg);
  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;
}

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

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

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

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

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

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

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

/* 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 [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: #0081c4;
}

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

.community-follow [role="button"][aria-selected="true"] {
  background-color: #0081c4;
  color: #ffffff;
}

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

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

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

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

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

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

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

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

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

.striped-list-title {
  color: #0081c4;
  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: #003e5e;
}

.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: #0081c4;
}

.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: #e03b30;
}

.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 {
  text-transform: lowercase;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.post-info-container {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.post-info {
  flex: 1;
}

@media (min-width: 1024px) {
  .post-info {
    padding-right: 20px;
  }
}

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

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

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

.post-published {
  color: #666;
  font-weight: 300;
  font-size: 13px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.requests-table-toolbar .organization-unsubscribe {
  background-color: #0081c4;
  color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.no-activities {
  color: #666;
}

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

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

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

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

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

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

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

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

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

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

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

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

.request-main .comment-show-container {
  border-radius: 2px;
  border: 1px solid #ddd;
  cursor: pointer;
  display: flex;
  padding: 8px 15px;
  width: 100%;
}

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

.request-main .comment-show-container-content {
  align-self: center;
  color: #666;
  margin-left: 10px;
}

.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 #0081c4;
}

.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 #0081c4;
}

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

.request-title {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.search-result-votes::before, .search-result-meta-count::before {
  color: #0081c4;
}

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

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

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

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

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

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

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

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

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

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

.pagination * {
  display: inline-block;
}

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

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

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

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

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

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

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

.pagination-current {
  background-color: #0081c4;
}

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

.pagination-first {
  border-radius: 3px 0 0 3px;
}

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

.pagination-last {
  border-radius: 0 3px 3px 0;
}

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

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

.meta-group * {
  display: inline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.profile-header .basic-info {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  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: #0081c4;
  border: 0;
  color: #ffffff;
  line-height: normal;
  padding: 8px 20px;
}

.profile-header .description {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: 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 #0081c4;
  border-radius: 4px;
  color: #0081c4;
  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;
  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;
  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;
}
@media screen and (min-width: 62em) {
    html {
        font-size: 100%;
    }
}
@media only screen and (min-width: 80.063em) {
    body {
        background-color: #eee;
    }
}
.gs-container {
    max-width: 1280px;
    margin: 0 auto;
    background: #fff;
}
#region-header {
    position: relative;
    z-index: 1000;
}
.d-header {
    padding: .625rem 1.875rem;
    font-size: .75rem;
}
.d-header, .m-header {
    position: relative;
    text-transform: uppercase;
    background: #fff;
}
@media screen and (min-width: 45em) {
    .l-row {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        margin-left: -.625rem;
        margin-right: -.625rem;
    }
}
.l-row--middle {
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
}
@media screen and (min-width: 45em) {
    .l-row__item {
        -ms-flex: 1 1 0%;
        flex: 1 1 0%;
        padding-left: .625rem;
        padding-right: .625rem;
    }
}
@media screen and (min-width: 45em) {
    .l-row__item--shrink {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        max-width: 100%;
    }
}
.logo {
    display: block;
    margin: 0 auto;
}
.logo-anki {
    width: 200px;
    height: 28px;
}
svg:not(:root) {
    overflow: hidden;
}
.header-nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}
.header-nav__item {
    position: relative;
    display: block;
    padding: .9375rem 0 .9375rem .9375rem;
    font-family: avenir-medium,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif;
    font-size: inherit;
    color: #333;
    letter-spacing: .0625rem;
    line-height: 1;
}
.aside-nav .header-nav__item, .main-nav .header-nav__item {
    padding: .9375rem;
}
.header-nav__item:last-child {
    margin-right: 0;
}
.l-row--end {
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.header-nav__item--active, .header-nav__tooltip {
    font-family: avenir-heavy,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif;
}
.header-nav__tooltip {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 50%;
    font-size: .625rem;
    text-align: center;
    white-space: nowrap;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    transition: all .2s ease-in-out .2s;
}
.header-nav__item:hover .header-nav__tooltip {
    opacity: 1;
    top: -10%;
}
.icon {
    fill: currentColor;
    width: 16px;
    height: 16px;
}
.cart-icon {
    position: relative;
}
.anki-container {
    max-width: 1280px;
    margin: 0 auto;
}
#header .anki-container,
#main .anki-container,
#footer .anki-container {
    background: #ffffff;
    margin: 0 auto;
    clear: left;
    width: 100%;
    display: block;
}
#content-header {
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}
.content p {
    margin: 0;
    padding: 0 0 1.25rem 0;
    line-height: 22px;
}
@media only screen and (min-width: 40.063em) {
    #footer .anki-container {
        background: rgb(245, 245, 245);
    }
}
#footer .region-footer-top {
    padding-top: 0.5rem;
    background: rgb(255, 255, 255);
}
#footer .region::before, #footer .region::after {
    content: " ";
    display: table;
}
#footer .region::after {
    clear: both;
}
@media only screen and (min-width: 40.063em) {
    #footer .region-footer {
        line-height: 1.4em;
        display: block;
        padding: 24px 14px;
    }
}
@media only screen and (min-width: 48.063em) {
    #footer .region-footer {
        margin: 0 auto;
    }
}
@media only screen and (min-width: 40.063em) {
    #footer h2 {
        margin: 0;
        font-family: "avenir-black","Helvetica Neue",Helvetica,Roboto,Arial,sans-serif;
        font-weight: normal;
        padding-bottom: 9px;
    }
}

#footer .block-menu {
    width: 100%;
    background: rgb(245, 245, 245);
}
@media only screen and (min-width: 40.063em) {
    #footer .block-menu, #footer .block-locale {
        width: 25%;
        float: left;
        padding-right: 10px;
        border-width: initial;
        border-style: none;
        border-color: initial;
        border-image: initial;
    }
}
@media only screen and (min-width: 40.063em) {
    #footer .shop {
        clear: both;
    }
}
@media only screen and (min-width: 40.063em) {
    #footer .social {
        position: relative;
        margin-top: 28px;
    }
}
@media only screen and (min-width: 40.063em) {
    #footer .social h2 {
        display: block;
    }
}
#footer .block-menu h2 {
    padding: 18px 18px;
    margin: 0;
    font-family: "avenir-heavy","Helvetica Neue",Helvetica,Roboto,Arial,sans-serif;
    font-weight: normal;
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-top: 1px solid #eee;
    background: #ffffff;
    position: relative;
}
@media only screen and (min-width: 40.063em) {
    #footer .block-menu h2, #footer .block-locale h2 {
        padding-left: 18px;
        letter-spacing: 0.5px;
        font-family: avenir-medium, "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
        font-weight: normal;
        padding-bottom: 9px;
        border-top: none;
        background: transparent;
    }
}
#footer .block-menu h2::after {
    content: "";
    position: absolute;
    top: 18px;
    right: 19px;
    width: 12px;
    height: 12px;
    background: url(https://cdn.anki.com/sites/all/themes/anki/images/icon-plus-minus.png) 0px 0px no-repeat;
}
@media only screen and (min-width: 40.063em) {
    #footer .block-menu h2::after, #footer .block-locale h2::after {
        background: none;
    }
}
#footer .block-menu ul {
    display: none;
    margin: 0px;
    padding: 0px 18px;
    list-style: none;
}
@media only screen and (min-width: 40.063em) {
    #footer .block-menu ul {
        display: block;
    }
}
@media only screen and (min-width: 40.063em) {
    #footer .block-menu ul, #footer .block-locale ul {
        background: transparent;
    }
}
@media only screen and (max-width: 40.062em) {
    #footer .dropdown-menu {
    left: 10px;
    right: auto;
}
    #footer .block-menu.social h2{
        display:none;
    }
}
ul.menu li {
    margin: 0 0 0 0.5em;
}
#footer .social ul li {
    display: inline-block;
    margin: 0 20px;
    position: relative;
    padding: 5px 0 1px 30px;
}

#footer .block-menu ul li, #footer .block-menu ul li.leaf {
    margin-left: 0px;
    padding: 5px 0px;
    list-style: none;
}
#footer .block-menu ul a {
    color: rgb(51, 51, 51);
    font-size: 14px;
}
#footer .block-menu ul a:hover {
    color: #f37404;
}
#footer .social ul {
    display: block;
    margin: 0;
    padding: 15px 0;
    list-style: none;
    text-align: center;
}
@media only screen and (min-width: 40.063em) {
    #footer .social ul {
        margin-left: 11px;
        text-align: left;
    }
}
@media only screen and (min-width: 40.063em) {
    #footer .social ul li, #footer .social ul li.leaf {
        padding: 0;
        margin: 0;
        margin-right: 6%;
    }
}
#footer .social a {
    overflow: hidden;
    text-indent: 101%;
    white-space: nowrap;
    width: 40px;
    height: 40px;
    display: block;
    text-align: center;
    position: relative;
}
@media only screen and (min-width: 40.063em) {
    #footer .social a {
        width: 24px;
        height: 24px;
        padding: 0;
    }
}
#footer .social a:after {
    top: 12px;
    left: 12px;
    width: 18px;
    height: 19px;
    background: url(https://cdn.anki.com/sites/all/themes/anki/images/footer/icons-social.png) no-repeat 0 0;
    background-size: cover;
    content: '';
    display: block;
    position: absolute;
}
@media only screen and (min-width: 40.063em) {
    #footer .social a:after {
        top: 6px;
        left: 7px;
        height: 13px;
    }
}
#footer .social a.facebook:after {
    width: 9px;
    left: 15px;
    background-position: -50px 0;
}
@media only screen and (min-width: 40.063em) {
    #footer .social a.facebook:after {
        width: 13px;
        left: 6px;
        background-position: -33px 0;
    }
}
#footer .social a.instagram:after {
    width: 18px;
    background-position: 0 0;
}
@media only screen and (min-width: 40.063em) {
    #footer .social a.instagram:after {
        width: 13px;
        background-position: 0 0;
    }
}
#footer .social a.twitter:after {
    width: 23px;
    left: 8px;
    background-position: -25px 0;
}
@media only screen and (min-width: 40.063em) {
    #footer .social a.twitter:after {
        width: 16px;
        left: 4px;
        background-position: -16px 0;
    }
}
#footer .social a.youtube:after {
    width: 26px;
    left: 6px;
    background-position: -75px 0;
}
@media only screen and (min-width: 40.063em) {
    #footer .social a.youtube:after {
        width: 19px;
        left: 2px;
        background-position: -51px 0;
    }
}
.hero-inner h1 {
    color: #fff;
    font-size: 2.5em;
    line-height:1;
    margin-bottom:30px;
}
.logo-label {
    color: #0081c2;
    display: block;
    font-size: 14px;
    margin-top: 0;
    text-align: center;
    text-transform: none;
}
.hp-hero__description, .hp-hero__subheader {
    font-family: avenir-heavy,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif;
}
.u-pb2 {
    padding-bottom: 1.25rem;
}
.u-text--grey-dark {
    color: #4c4c4c;
    font-size:1.3rem;
}
.btn {
    display: inline-block;
    font-size: .75rem;
    padding: 12px 20px;
    font-family: avenir-medium,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: .125rem;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.btn--c-white {
    color: #fcbf13;
}
.btn--c-white, .btn--c-white:hover {
    background: #fff;
    border: 1px solid transparent;
}
.btn--o-orange {
    background: #ff8400 none repeat scroll 0 0;
}
.btn--o-orange, .btn--o-orange:hover {
    border: 1px solid rgba(0, 0, 0, 0);
    color: #ffffff;
}
.product {
    float: left;
    min-height: 252px;
    padding: 30px;
    text-align: center;
    width: 50%;
}
.knowledge-base .product {
    padding:30px 0 40px 0;
    text-align: center;
    float:none;
    min-height:initial !important;
    width:300px;
}
/*.product.over-drive {
    background:rgba(0, 0, 0, 0) url("https://cdn.anki.com/sites/default/files/hp-hero-overdrive-desktop.jpg") no-repeat scroll -300px 0 / cover ;
}
.product.drive {
    background: rgba(0, 0, 0, 0) url("https://p14.zdassets.com/hc/theming_assets/305861/2364136/$assets-anki_drive_poster_ai_rc_cars_ios-jpg") no-repeat scroll -285px 0 / cover ;
}*/
.over-drive .u-text--grey-dark {
    font-size: 15px;
    line-height: 1;
    padding-bottom: 12px;
    padding-top: 5px;
    text-transform: uppercase;
}
.product.cosmo .hp-hero__link.btn.btn--c-white {
    background: #fbc201 none repeat scroll 0 0;
    color: #ffffff;
}
.generat-cat {
    text-align: center;
}
.generat-cat > a {
    background: rgba(0, 0, 0, 0) url("../../../theme_assets/169753/200050030/general-questions-category-logo.svg") no-repeat scroll right center;
    color: #333333;
    font-size: 30px;
    line-height: 30px;
    padding-right: 50px;
    text-overflow: initial;
}
.popular-articles {
  font-size: 16px;
margin-top: 10px;
  	color:#fff;
}
.popular-articles a{
    color:#fff;
}
.category-11291 .popular-articles {
    color: #ffffff;
}
.gs-footer, .get-in-touch-container {
    margin: 0 auto;
    max-width: 1280px;
    width: 100%;
}
.footer-bottom {
    background: #dddddd none repeat scroll 0 0;
}
.u-m0 {
    margin: 0px;
}
.u-spacing--half {
    padding: 0.9375rem;
}
.promoted-articles-item:nth-child(n+7) {
    display: none;
}
@media screen and (min-width: 45em) {
    .l-md-8 {
        max-width: 66.6667%;
        flex: 0 0 66.6667%;
    }
  .l-md- {
        max-width: 79%;
        flex: 0 0 79%;
    }
}
@media screen and (min-width: 45em) {
    .l-md-7, .l-md-8 , .l-md-9{
        -webkit-flex: none !important;
        -ms-flex: none !important;
        flex: none !important;
    }
}
.copyrights {
    font-size: 12px;
    font-family: Avenir Medium, "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
    color: #333;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: .0625rem;
}
@media screen and (min-width: 45em) {
    .copyrights {
        text-align: left;
        line-height: 1;
    }
}
.copyrights__copyrights {
    display: block;
}
@media screen and (min-width: 45em) {
    .copyrights__copyrights {
        display: inline;
        order: 1;
    }
}
.copyrights__links {
    padding: 0px 10px;
}
.copyrights__link {
    color: currentcolor;
    text-decoration: none;
    padding: 0px 10px;
}
.popular-articles a:hover {
    color: #0081c2;
}
.header-nav__item:hover {
    color: #1b82bf;
}
.category-page .blocks-item:first-child, .section-page .blocks-item:first-child {
    border: 0 none;
    flex: 1 0 50%;
}
.category-page .product {
    margin-right: 0px;
    padding: 0;
    width: 47%;
    margin-bottom: 0px;
    float: left;
    min-height: 160px;
}
.category-page .product:last-child {
    margin-right: 0;
}
.category-page .product .hp-hero__logo-link {
    display: block;
    margin-top: -1px;
    max-height: 100px;
    padding: 10px 5%;
}
.category-page .product a {
    color: #333333;
    text-transform:uppercase;
}
.category-page .product svg {
    max-width: 145px;
    width: 100%;
    box-sizing: content-box;
}
.category-page .product img {
    max-height: 80px;
}
.hero.category-202649547 {
    background-image: url("../../../../theme_assets/305861/e3f32157933555db8f19ab374e9994346499b74d.jpg");
}
.hero.category-201090138 {
    background-image: url("../../../../theme_assets/305861/abf51f40b109c9524eb7a9c236bd4279070e001d.jpg");
}
.hero.category-11291 {
    background-image: url("../../../../theme_assets/305861/f130b3fc8b93dd02d84041c920a22d30d9303b19.jpg");
}
.hero.category-360000930074 {
    background-image: url("../../../../theme_assets/305861/7beb32485c491b48c9eb84080e90781af5d032e3.jpg");
}
.category-page .hero-inner svg{
    margin-bottom: 25px;
    width:250px;
    display:none;
}
.category-201090138 svg.category-201090138{
    display:inline;
}
.category-202649547 svg.category-202649547{
    display:inline;
}
.category-202649547 .popular-articles.category-202649547 {
    display: block;
}
.category-201090138 .popular-articles.category-201090138 {
    display: block;
}
.category-11291 .popular-articles.category-11291 {
    display: block;
}
.category-page .product-list, .section-tree {
    display: none;
}
.section-articles .article-list-item{
    border-bottom:none;
    padding:5px 10px;
}
.get-in-touch-container > a {
    background: #333333 none repeat scroll 0 0;
    border: 2px solid #fff;
    border-radius: 0;
    color: #ffffff;
    display: inline-block;
    font-family: avenir-medium,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif;
    font-size: 12px;
    line-height: normal;
    padding: 10px 20px;
    text-align: center;
    text-transform: uppercase;
}
.get-in-touch-container {
    background: #2f2f2f none repeat scroll 0 0;
    padding:20px 0;
    text-align: center;
    position: fixed;
bottom: 0;
right: 0;
left: 0;
  top: auto;
  z-index: 99999;
}
.get-in-touch-container > h3 {
    color: #ffffff;
    font-family: "Univers LT W02 45 Light","Helvetica Neue",Helvetica,Roboto,Arial,sans-serif;
    margin-bottom: 5px;
}
.section.knowledge-base,.product-selection {
    margin-bottom: 0;
    max-width: 950px;
    margin: 0 auto;
}
.product-selection img {
    max-height: 186px;
    width: 300px;
}
.no-results {
    margin: 0 auto;
    max-width: 680px;
    width: 100%;
}
.no-results h4 {
    font-weight: bold;
}
.no-results span {
    display: block;
}
.content-wrapper{
    padding:0.625rem 1.875rem;
}
.request-box {
    display: inline-block;
    margin-right: 40px;
    max-width: 48%;
    vertical-align: top;
    width: 100%;
}
.request-box:last-child {
    margin-right: 0;
}
.box-header, .related-articles h3 {
    color: #333333;
    font-size:25px;
    font-weight: normal;
    line-height:30px;
    text-align: center;
    text-transform: capitalize;
    width: 100%;
}
.related-articles h3 {
    margin: 10px 0 10px 0;
    text-align: left !important;
    font-size: 24px !important;
}
.box-header {
    margin-bottom: 20px;
    text-transform:uppercase;
}
.chat-box {
    background: #f5f5f5 none repeat scroll 0 0;
    display: block;
    max-width: 100%;
    min-height:350px;
    padding-bottom: 20px;
    padding-top: 30px;
    text-align: center;
    vertical-align: top;
}
.chat-box > p {
    margin:5px 0 20px 0;
}
.images-wrapper {
    margin-top: 125px;
}
.chat-box:last-child {
    margin-right: 0;
}
.sub-head {
    font-size: 18px;
    font-weight: normal;
    line-height: 44px;
    text-align: center;
}
.chat-box .sub-head {
    font-size: 22px;
}
.chat-box > span {
    color: #0081c2;
    display: block;
    font-size: 14px;
}
.request-form {
    margin: 20px 35px 35px 10px;
}
.form > strong {
    display: block;
    max-width: 100%;
    text-align: center;
}
.form > p {
    text-align: center;
}
.request_ticket_form_id label[for="request_ticket_form_id"] {
    display: none;
}
.anki-drive img,.drive img {
    vertical-align: text-top;
    width: 210px;
}
.anki-drive {
    display: block;
}
.internal-database > a {
    background: #ff8400 none repeat scroll 0 0;
    color: #ffffff;
    float: right;
    line-height: 35px;
    margin: 0 0 0 auto;
    text-align: center;
    width: 200px;
}
span.phone-number {
    padding-bottom: 29px;
    padding-top: 0;
}
.agent-only{
    display:none;
}

    .request-box {
            max-width: 100%;
             margin-bottom: 20px;
    }
.over-drive .u-text--grey-dark{
   padding-top: 0px;
   padding-bottom:8px;
}
}
@media only screen and (max-device-width :1130px) {
    .request-box {
        max-width: 100%;
    }
}

@media only screen and (max-device-width :550px) {
.chat-box {
        margin-right:0;
        max-width: 100%;
        width:100%;
       flex: 1 0 100%;
    }
  .request-box {
            max-width: 100%;
             margin-right:0;
              margin-bottom: 20px;
    }
}

@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 480px) {

 .product {
        float:none;
        min-height:100%;
        width:100%;
    }

.blocks-item {
    display: block;
    flex: 0 0 auto;
    flex-direction: unset;
    justify-content: unset;
    margin-right: 0 !important;
    width: 100%;
}
  .request-box {
            max-width: 100%;
             margin-right:0;
              margin-bottom: 20px;
    }

.chat-box {
        margin-right:0;
        max-width: 100%;
    }
}


@media only screen 
and (max-width : 320px) {
  
 .product {
        float:none;
        min-height:100%;
        width:100%;
    }
.category-page .product {
    margin-bottom: 0;
    margin-right: 0;
    padding: 0;
    width: auto;
    float:none;
    min-height:initial;
}
.blocks-item {
    display: block;
    flex: 0 0 auto;
    flex-direction: unset;
    justify-content: unset;
    margin-right: 0;
    width: 100%;
}
  .request-box {
            max-width: 100%;
             margin-right:0;
              margin-bottom: 20px;
    }
.chat-box {
        margin-right:0;
        max-width: 100%;
    }
}
.popup-area {
    display: block;
    padding: 20px;
    font-size:16px;
}
.popup-header {
    border-bottom: 1px solid gray;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    padding-bottom: 15px;
}
.popup-contents {
    padding: 10px;
}
.ack-area > a {
    border: 1px solid #565454;
    border-radius: 5px;
    box-shadow: 1px 1px 1px #bdcfd9;
    color: #000;
    font-size: 12px;
    font-weight: bold;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    margin-left: 10px;
}
.ack-area {
    margin-top: 35px;
    text-align: right;
}
 .ack-area > a:last-child {
    background: #0081c4 none repeat scroll 0 0;
    color: #ffffff;
}
    .anki-drive-cat,.general-cat,.internal-database,.sorry-msg{
        display:none;
    }
   .category-11291 .category-11291{
        display:block;
        color:#fff;
    }
    .category-204103347 .category-204103347,.category-204101748 .category-204101748{
        display:block;
    }

a.chat-link {
font-weight:bold;
display:block;
font-size:18px;
}
.us-only,.gb-only,.de-only,.fr-only{
    display:none;
}
.row-fluid div.us-only,.row-fluid div.gb-only,.row-fluid div.de-only,.row-fluid div.fr-only{
    display:none;
}
html[lang="en-US"] .us-only{
    display:inherit;
}
html[lang="en-GB"] .gb-only{
    display:inherit;
}
html[lang="de"] .de-only{
    display:inherit;
}
html[lang="fr"] .fr-only{
    display:inherit;
}

html[lang="en-GB"] .anki-drive,html[lang="en-GB"] .internal-database,
.product.drive,html[lang="de"] .anki-drive,html[lang="de"] .internal-database,
html[lang="fr"] .anki-drive{
    display: none !important;
}
html[lang="en-GB"] .anki-drive{
    display:block !important;

}
.block-menu .language-selector .dropdown-toggle {
    background: #ffffff none repeat scroll 0 0;
    padding: 5px 18px;
}
.chat-link img {
    width:140px;
}
.section-subscribe {
    margin-left: 20px;
}
.btn--o-orange:hover {
    background: #f37404 none repeat scroll 0 0;
}
.btn--o-orange, .btn--o-orange:hover {
    border: 1px solid rgba(0, 0, 0, 0);
    color: #ffffff;
}

/*mobile*/

.m-header {
    z-index: 10;
    padding: 10px 0;
    line-height: 1;
}

.d-header, .m-header {
    position: relative;
    text-transform: uppercase;
    background: #fff;
}
@media screen and (min-width: 45em) {
    .d-header {
        padding: 8px 30px;
    }
}

.m-drawer, .m-drawer__bg {
    position: fixed;
    height: 100%;
    top: 0;
    bottom: 0;
}

.m-drawer {
    z-index: 1001;
    width: 100%;
    left: 100%;
}

.m-hamburger, .m-hamburger span {
    display: block;
    position: absolute;
}

.m-hamburger {
    right: 0;
    top: 0;
    height: 100%;
    width: 48px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

.m-hamburger span {
    width: 20px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
    height: 2px;
    background: #333;
    transition: background 0s .3s;
}
.m-hamburger--active span {
    background: none;
}
.m-hamburger span:after, .m-hamburger span:before {
    content: '';
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333;
}
.m-hamburger span:before {
    top: -5px;
    transition: top .2s ease-in-out .1s,-webkit-transform .2s ease-in-out .2s;
    transition: top .2s ease-in-out .1s,transform .2s ease-in-out .2s;
    transition: top .2s ease-in-out .1s,transform .2s ease-in-out .2s,-webkit-transform .2s ease-in-out .2s;
}
.m-hamburger span:after {
    bottom: -5px;
    transition: bottom .2s ease-in-out .1s,-webkit-transform .2s ease-in-out .2s;
    transition: bottom .2s ease-in-out .1s,transform .2s ease-in-out .2s;
    transition: bottom .2s ease-in-out .1s,transform .2s ease-in-out .2s,-webkit-transform .2s ease-in-out .2s;
}
.m-hamburger--active span:before {
    top: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.m-hamburger--active span:after {
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.m-cart-icon {
    position: absolute;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: 0;
    left: 0;
    height: 100%;
    width: 48px;
    color: #333;
}
.m-drawer, .m-drawer__bg {
    position: fixed;
    height: 100%;
    top: 0;
    bottom: 0;
}
.m-drawer__bg {
    z-index: 1;
    left: 0;
    right: 0;
    width: 120%;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    background: #333;
    opacity: 0;
    transition: opacity .3s cubic-bezier(1,0,.6,1);
}
.m-drawer__bg--active {
    opacity: .9;
    -webkit-transform: translateX(-10%);
    -ms-transform: translateX(-10%);
    transform: translateX(-10%);
}
.m-drawer__body {
    position: relative;
    z-index: 2;
    top: 0;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    transition: all .3s cubic-bezier(1,0,.6,1);
}

.m-nav-container {
    width: 90%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.m-nav__hero {
    position: relative;
    width: 100%;
    height: 150px;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    transition: all .2s ease-in;
}
.m-nav__hero--company {
    background-image: url('../../../../production-sub/on/demandware.static/Sites-anki-US-Site/-/en_US/v1525902887053/images/m-nav-hero--company.png');
}
.m-hamburger--drawer {
    position: absolute;
    z-index: 1;
    right: 5px;
    top: 5px;
    height: 40px;
    width: 40px;
}
.m-nav__list {
    padding: 1.25rem;
}

.u-bg--alpha {
    background: #fff;
}

.m-nav-tile {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    height: 4rem;
    margin-bottom: .625rem;
    background: #fff;
    border: 1px solid #eee;
    transition: all .3s cubic-bezier(1,0,.6,1);
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}
.m-nav-tile--animated {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}
.m-nav-tile--animated-1 {
    transition-delay: 50ms;
}
.m-nav-tile--animated-2 {
    transition-delay: .1s;
}
.m-nav-tile__image, .m-nav-tile__text {
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
    .m-nav-tile__image {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
}
    .m-nav-tile__image--overdrive {
    background-image: url('../../../../production-sub/on/demandware.static/-/Sites-anki-global-navigation/default/dwbf098d42/home-imgs-240x90.jpg');
}
.m-nav-tile__text {
    -ms-flex-item-align: center;
    -webkit-align-self: center;
    align-self: center;
    padding: .625rem 1.25rem;
    color: #333;
    font-size: 12px;
    font-family: avenir-heavy,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif;
    text-transform: uppercase;
    letter-spacing: .125rem;
}
    .m-nav-tile__image--cozmo {
    background-image: url('../../../../production-sub/on/demandware.static/-/Sites-anki-global-navigation/default/dw15f973c4/mobile-nav-cozmo.jpg');
}
    .m-nav__list--bottom {
    margin-top: 1.875rem;
    margin-bottom: 1.875rem;
}
    .l-row--mobile {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-left: -.625rem;
    margin-right: -.625rem;
}
    .l-row--middle {
    -webkit-align-items: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
}
    .l-sm-6 {
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
    .l-row--mobile .l-row__item {
    padding-left: .625rem;
    padding-right: .625rem;
}
    .m-nav-link {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px 0;
    text-decoration: none;
}
    .m-nav-link__icon {
    width: 12px;
    height: 12px;
    fill: #333;
    margin-right: .625rem;
}
    .m-nav-link__text {
    color: #333;
    font-size: 12px;
    font-family: avenir-heavy,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif;
    text-transform: uppercase;
    letter-spacing: .125rem;
}
    .m-hamburger--header.m-hamburger--active {
    display: none;
}
.m-header, .m-drawer{
    display:none;
    }
@media (max-width: 720px) {
    .d-header{
    display:none;
    }
    .m-header,.m-drawer{
    display:block;
    }
}
@media (min-width: 1065px) {.ad-m{display:none;}}
@media (max-width: 1065px) {.ad-d{display:none;}}
@media only screen and (max-device-width: 374px) {
    .m-nav-tile__text,.m-nav-link__text {
        font-size: .75rem;
        letter-spacing: .0625rem;
    }
   
}
.page {
    padding-bottom: 80px;
}
.page-deep {
    height: 100%;
    -webkit-transform: translateX(-90%);
    -ms-transform: translateX(-90%);
    transform: translateX(-90%);
}
.no-scroll--html {
    overflow: hidden;
}
.no-scroll--body {
    overflow: hidden;
    position: relative;
}
.product.drive .hp-hero__logo-link {
    display:block;
    margin-top: 17px;
}
.product.drive .btn--o-orange {
    background: #e31d1a none repeat scroll 0 0;
}
.product.drive .btn--o-orange:hover {
    background: #d51313 none repeat scroll 0 0;
}
@media (min-width : 568px) and (max-width : 1024px) and (orientation: portrait) {
    
    .product.drive .u-pb2{
    margin-top: -2px;
    padding-bottom: 0;
    }

}
@media (min-width: 568px) 
  and (max-width: 1024px) 
  and (orientation: landscape) {
    .product.drive .u-pb2{
   padding-bottom: 25px;
    }
}
.chat-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

#new_request > footer {
    text-align: center;
}
#footer .block-menu.footer-nav-open h2::after {
    background-position: 0 -12px;
}
#footer .block-menu.footer-nav-open ul {
    display: block;
}
html[lang="en-GB"] #footer .social,html[lang="de"] #footer .social{
    margin-top: 0;
}
.l-row--mobile {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-left: -.625rem;
    margin-right: -.625rem;
}
.l-row--middle {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.language-dropdown {
    padding-top: .9375rem;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #999;
    font-size: .75rem;
    font-family: avenir-heavy,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif;
    text-transform: uppercase;
    letter-spacing: .0625rem;
}
.language-dropdown:hover {
    color: #333333;
    cursor: pointer;
}
@media screen and (min-width: 45em) {
    .language-dropdown {
        padding: 0;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}
.language-dropdown__flag {
    width: 20px;
    height: 24px;
    margin-right: 5px;
}
.language-dropdown__info {
    margin-right: 5px;
}
.language-dropdown__country {
    padding-right: 5px;
    color: #333;
}
.language-dropdown__language {
    font-size: .625rem;
    color: #999;
}
.language-dropdown__toggle {
    width: 13px;
    height: 9px;
    fill: currentColor;
}
.language-dropdown__toggle--up {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.footer-languages {
    display: none;
    background: #fff;
}
.footer-languages--open {
    display: block;
}
.footer-languages__menu {
    padding: 1.875rem;
    margin: 0 auto;
    max-width: 880px;
}
.language-region {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 1.875rem;
}
.l-sm-11, .l-sm-12 {
    -webkit-flex: none!important;
    -ms-flex: none!important;
    flex: none!important;
}
.l-sm-12 {
    width: 100%!important;
}
.heading--gamma {
    margin: 0;
    font-family: avenir-black-oblique,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    color: inherit;
    line-height: 1;
}
.heading--gamma {
    font-size: 1rem;
    margin-bottom: 5px;
}
@media screen and (min-width: 45em) {
    .heading--gamma {
        font-size: calc(1rem + 4 * ((100vw - 25rem) / 800));
    }
}
.u-push--bottom {
    margin-bottom: 1.875rem;
}
.country {
    margin-bottom: 20px;
    padding-right: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
    white-space: nowrap;
    font-family: "avenir-heavy","Helvetica Neue",Helvetica,Roboto,Arial,sans-serif;
    font-weight: normal;
}
.country {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-flex: 0 0 160px;
    -ms-flex: 0 0 160px;
    flex: 0 0 160px;
    min-width: 160px;
    margin-bottom: 1.875rem;
}
.country__flag {
    display: inline-block;
    vertical-align: top;
    width: 16px;
    height: 16px;
}
.icon {
    fill: currentColor;
    width: 16px;
    height: 16px;
}
.country__info {
    margin-left: 5px;
    margin-top: 2px;
    display: inline-block;
    vertical-align: top;
}
.country__info {
    margin-top: 2px;
    font-family: avenir-heavy,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif;
    text-transform: uppercase;
    line-height: 1;
    font-size: 1.125rem;
}
@media screen and (min-width: 45em) {
    .country__info {
        font-size: .875rem;
        letter-spacing: .0625rem;
    }
}
.country__name {
    font-size: .875em;
}
.link, .link--arrow {
    font-size: .75rem;
    letter-spacing: .0625rem;
    color: #ff8400;
    text-decoration: none;
    text-transform: uppercase;
    font-family: avenir-heavy,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif;
}
.country__language {
    font-size: .625em;
    color: #999;
    padding-right: 10px;
}
.hero.category-204103347 {
    background-image: url("../../../../theme_assets/305861/2eef38800f8ceb6fe82d8bbac1e4a1ee6d2f4c1a.jpg");
}
.logo-nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.logo-nav__item {
    padding: 16px;
    cursor: pointer;
}
.logo-nav__item:first-child {
    padding-left: 0;
}
.logo-nav__logo {
    fill: #999999;
}
.logo-nav__logo--overdrive:hover {
    fill: #ff8400;
}
.logo-nav__logo--cozmo:hover {
    fill: #fcbf13;
}
.logo-nav__logo--fast-and-furious:hover {
    fill: #000000;
}
.logo-nav__logo.logo-nav__logo--cozmo {
    height: 18px;
    max-width: 88px;
}
.logo-nav__logo.logo-nav__logo--overdrive {
    height: 20px;
    max-width: 130px;
}
.logo-nav__item .logo-nav__logo--fast-and-furious {
    height: 28px;
    max-width: 85px;
}
@media screen and (min-width: 45em) {
    .logo-nav__logo--overdrive {
        height: 20px;
    }
}

.product.over-drive .logo-nav__logo--fast-and-furious {
    fill: #535353;
}
.images-wrapper img {
    max-width: 100%;
    margin-bottom:10px;
}
.region-header-promo {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #333;
}
@media screen and (min-width: 45em) {
    .region-header-promo {
        min-height: 56px;
        padding-left: 30px;
        padding-right: 30px;
    }
}
.region-header-promo__logo {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding: 18px 0;
    display:none;
}
.region-header-promo__message {
    -ms-flex: 1 1 0%;
    flex: 1 1 0%;
    margin-left: auto;
}
.node-block {
    position: relative;
}
a.header-promo-block {
    display: block;
}
@media screen and (min-width: 45em) {
    a.header-promo-block {
        display: inline-block;
        float: right;
    }
    .region-header-promo__logo{
        display:inherit;
    }
}
.header-promo-block .content {
    font-family: "avenir-heavy","Helvetica Neue",Helvetica,Roboto,Arial,sans-serif;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: .8125rem;
    color: #fff;
    letter-spacing: 0.0625em;
    line-height: 1.25;
    text-align: center;
    text-transform: uppercase;
    margin: auto;
    width: 100%;
    max-width: 80rem;
}
@media screen and (min-width: 45em) {
    .header-promo-block .content {
        text-align: right;
        padding-top: 16px;
        padding-bottom: 16px;
    }
}
.header-promo-block .promo-offer {
    color: #fff;
    padding-bottom: 4px;
}
.c-link--arrow {
    font-family: "avenir-heavy","Helvetica Neue",Helvetica,Roboto,Arial,sans-serif;
    font-weight: normal;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
}
.header-promo-block .promo-offer__link {
    font-size: .75em;
    font-family: "avenir-book","Helvetica Neue",Helvetica,Roboto,Arial,sans-serif;
}
.c-link--arrow::after {
    position: relative;
    top: -1px;
    padding-left: 5px;
    content: "\00bb";
}
.promoted .box-header {
    padding: 8px 0;
}
.promoted-articles-item > a::after {
    content:"\00bb";
    margin-left: 5px;
}
.faq-sections{
      color: #333333;
    font-size: 25px;
    font-weight: normal;
    line-height: 36px;
    width: 100%;
    padding-left: 10px;
    text-align:center;
}

.drive img {
    margin-top: 20px;
}
@media only screen and (max-width : 480px) {
    .hero-inner {
    margin-top: 20px;
}
    .category-page .hero-inner h1 {
    margin-bottom: 10px;
}
    html[lang="de"] .product.cosmo{
        margin:0 auto !important;
    }
    html[lang="de"] .product.over-drive{
        margin:0 auto !important;
    }
}
@media only screen and (max-width : 400px) {
    .category-page .product{
        margin-right:2%;
    }
}
@media (max-width: 320px) {
    .product.over-drive img{
      min-width: 295px;
    }
}
@media (max-width: 767px) {
    .chat-box{
        max-width:100%;
        margin-top:0;
       min-height: initial;
       margin-bottom:20px;
    }
  .hero.new-request{
      height:auto;
      margin-bottom:10px;
  }
  .new-request .hero-inner{
      margin-top:10px;
  }
  .images-wrapper{
      display:none !important;
  }
 .hero-inner h1 {
    font-size: 2em;
    margin-bottom: 10px;
}
}
@media (max-width: 768px){
    .promoted .box-header{
        text-align:center;
    }
    .internal-database > a{
        margin:0 auto;
    }
    .knowledge-base .product {
    margin-bottom: 0px;
}
    .categories .blocks-item{
        margin-right:0;
        margin-bottom:0;
    }

}
@media (max-width: 920px) {
    .row-fluid .span6.full-width {
    width: 100%;
}
    .faq-sections {
        text-align:center;
    }
    .knowledge-base .product{
        padding-bottom:20px;
    }
}

.de-only .generat-cat {
    margin-top: 15px;
}
.span6.full-width.us-only { 
    min-height: 1px;
}
html[lang="fr"] .logo-nav__item.header-overdrive {
    display: none;
}
html[lang="fr"] .logo-nav__item.header-ff {
    display: none;
}
html[lang="fr"] .anki-ff {
    display: none;
}
html[lang="fr"] .anki-overdrive, html[lang="fr"] .fr-hidden{
    display: none;
}
html[lang="fr"] #footer .social{
    margin-top:0;
}
.m-logo .logo-anki{
    width:auto;
}
@media (min-width: 768px) {
    .span4.form-mobile{
        display:none !important;
    }
    .span4.form-desktop{
        display:inherit;
    }
}
@media (max-width: 767px) {
    .span4.form-mobile{
        display:block;
    }
    .span4.form-desktop{
        display:none !important;
    }
    .request-form{
        margin:0;
    }
    .product {
        margin:0 auto;
    }
}
.underlined::after {
    display: block;
    background-color: #0081c3;
    height: 2px;
width: 15%;
    content: " ";
    margin: 10px auto 0 auto;
}
.shipping-info-icon {
    max-height: 40px;
}
.shipping-info-link {
    display: block;
    color:#333;
}
.shipping-info-link h3 {
    text-transform: uppercase;
    margin-top: 10px;
}
.margin-bottom-0{
    margin-bottom:0;
}
.text-center{
    text-align:center;
}
.promoted-articles-item > a:before,.article-list-link:before {
    content: '\f111';
    font-family: FontAwesome;
    font-size: 7px;
    margin-right: 10px;
    color: #ff8400;
}
.articles {
    background: #f5f5f5 none repeat scroll 0 0;
    padding:5px 20px 20px;
}
.quick-links {
    margin-left: 15px;
    margin-top: 15px;
}
.quick-links li {
    margin: 10px 0;
    text-transform: uppercase;
    font-size: 14px;
    color: #0081c2;
}
.quick-links li a{
background-repeat: no-repeat;
    background-size: contain;
    display: block;
    padding-left: 30px;
}
.device-compatibility {
 background-image: url("../../../../theme_assets/305861/f925ecfaa5c6156b436282cbdc90181585d3da37.png");
}
.quick-guide {
 background-image: url("../../../../theme_assets/305861/c5106bc2734c904ed706a92a7225781062dc4680.png");
}
.related-articles li:nth-child(n+3) {
 display: none;
}
.dark-bg {
 background: #2f2f2f none repeat scroll 0 0;
}
.submit-request::before {
 content: '\f0e0';
margin-right: 15px;
vertical-align: bottom;
color: transparent;
background-image: url("../../../../theme_assets/305861/5b4ef586710adf20e4159839ec7dd40533d36969.png");
background-size: cover;
width: 50px;
display: inline-block;
background-repeat: no-repeat;
}
.chat-box .fa-phone {
    font-size: 56px;
    display: block;
}
.call-us {
    margin: 10px 0;
}
.inquires-links {
    text-align: center;
    margin: 30px 0;
}
.inquires-links h3 {
    margin-top: 20px;
}
#new_request input[type="submit"] {
    width: 100%;
}
.product-selection a {
    display: block;
    text-align: center;
    max-width: 300px;
    margin:0 auto;
}
.product.select img {
    max-width: 300px;
    height: 186px;
    width: 100%;
}
.error-page h1 {
    color: #0081c2;
    font-weight: bold;
}
.back-home {
    background: #0081c2;
    color: #fff;
    padding: 10px 30px;
    display: inline-block;
    margin-top: 20px;
}
html[lang="en-US"] .footer-nav__item .footer-nav__item__title,html[lang="en-GB"] .footer-nav__item .footer-nav__item__title{
    text-transform:uppercase;
}
@media (max-width:767px) {
    .hero{
        height:auto;
        padding-bottom:10px;
    }
       .section {
    margin-bottom: 10px;
}
    .hero-inner h1 {
        font-size: 2em;
    }
    .search-full input[type="search"]{
        font-size: 16px;
        height: 40px;
    }
    .popular-articles {
    line-height: normal;

}
}
.product-compliance-link{
  display:none;
}