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

body {
  background-color: #FFFFFF;
  color: rgba(21, 31, 38, 1);
	font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

@media (max-width: 640px) {
.user_nav {
    width: 40% !important;
  }}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  margin-top: 0;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 22px;
  font-weight: bold;
}

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

h4 {
  font-size: 16px;
}

a {
  color: #1F73B7;
  text-decoration: none;
}

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

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

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

input:focus {
  border: 1px solid rgba(0, 97, 213, 1);
}

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

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url(//theme.zdassets.com/theme_assets/88181/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 rgba(0, 97, 213, 1);
}

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 rgba(0, 97, 213, 1);
}

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

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

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

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

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

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

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

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

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

.visibility-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

/***** Buttons *****/
.button, [role="button"] {
  border: 1px solid rgba(0, 97, 213, 1);
  border-radius: 4px;
  color: rgba(0, 97, 213, 1);
  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: rgba(0, 97, 213, 1);
}

.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: rgba(0, 97, 213, 1);
  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: #00336f;
  border-color: #00336f;
}

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

.button-large, input[type="submit"] {
  background-color: rgba(0, 97, 213, 1);
  border: 0;
  border-radius: 4px;
  color: #FFFFFF;
  font-size: 16px;
  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: #00336f;
}

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

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

.button-secondary:hover, .button-secondary:focus, .button-secondary:active {
  color: rgba(21, 31, 38, 1);
  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: #273a47;
  font-size: 13px;
  font-weight: 400;
  text-align: left;
  border: 0px;
}

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

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

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

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

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

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

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

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

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

.form-field input:focus {
  border: 1px solid rgba(0, 97, 213, 1);
}

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

.form-field input[type="text"]:focus {
  border: 1px solid rgba(0, 97, 213, 1);
}

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

.form-field .nesty-input {
  border-radius: 4px;
  height: 40px;
  line-height: 40px;
  outline: none;
  vertical-align: middle;
}
/*
.form input[type=text],.nesty-input{
    height:auto;
    border:1px solid #e6e6e6;
    border-radius:2px;
    background:#fff;
    font-family:Soleil_Light,Helvetica,Arial,sans-serif;
    color:#525257;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box;
    font-size:16px;
    font-size:1rem;
    line-height:24px;
    line-height:1.5rem;
    padding:5px;
    padding:.3125rem .8rem
}*/

.nesty-panel { /* DISPLAY MORE THAN JUST 3 DROPDOWN VALUES */
 height: auto;
 max-height: 300px;
}

.nesty-panel li{
    min-height:36px;
    padding:.65rem .8rem!important;
    font-size:14px
}

.form-field .nesty-input:focus {
  border: 1px solid rgba(0, 97, 213, 1);
  text-decoration: none;
}

.form-field .hc-multiselect-toggle:focus {
  outline: none;
  border: 1px solid rgba(0, 97, 213, 1);
  text-decoration: none;
}

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

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

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

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

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

[data-loading="true"] input,
[data-loading="true"] textarea {
  background: transparent url(//theme.zdassets.com/theme_assets/88181/6aae8ce36967837f706ac36deff4b753e43977a4.gif) 99% 50% no-repeat;
  background-size: 16px 16px;
}

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

.form footer a {
  color: #395568;
  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:nth-of-type(1n+6) { /* Show 5 Suggested Article Results */
  display: none;
}

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

/***** Header *****/

.header-container {
  width: 100%;
	/*   background-color: #0061d5; */
  background-color: #2486FC;
  padding: 0px 20px;
}

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

.header > div:first-child {
  width: 30%;
}

.header > div {
  width: 55%;
}

.header > div:last-child {
  width: 30%;
}

.header .center-nav {
  text-align: center;
}

.rightheader {
    margin-left: auto;
}

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

@media (max-width: 999px) {
div#user_nav {
    width: 40%;
  }}

@media (max-width: 678px) {
div#user_nav {
    width: 100%;
  }}
@media (max-width: 678px) {
  .header .center_nav {
    display:none;
  }}

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

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

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

@media (max-width: 448px) {
.logo-container .logo {
    display: none;
}}

.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;
    display: inline-block;
}

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

.dropdown-mobile-container {
  display: flex;
  flex-direction: column;
  margin: 20px;
}

.dropdown-mobile {
  background-color: #fff;
  display: inline-block;
}

.dropdown-mobile > a{
  display: block;
  margin: 20px;
}
.logo img {
    height: 21px;
}

.logo-container {
  display: inherit;
  align-items: center;
}

.logo-container .icon-menu {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  background: none !important;
	border: none !important;
}

@media (min-width: 1000px) {
  .logo-container .icon-menu {
    display: none;
  }
}

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

.nav-wrapper span {
  color: #fff;
}

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

@media (min-width: 1000px) {
  .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: #fff;
  text-decoration: underline;
}

.nav-wrapper a.login {
  display: inline-block;
  border-radius: 1px;
  background-color: rgba(255,255,255,.1);
  padding: 1px 20px;
  font-weight: bold;
}

.nav-wrapper .menu-button {
  background: none;
  border: 0;
  color: #fff;
  display: inline-block;
  margin-right: 10px;
  padding: 0;
  width: auto;
}

.menu-button {
  outline: none !important;
}

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

.nav-wrapper .menu-button .icon-menu {
  vertical-align: middle;
  width: 13px;
  height: 13px;
}

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

.nav-wrapper .menu-button:hover, .nav-wrapper .menu-button:focus, .nav-wrapper .menu-button:active {
  background-color: transparent;
  color: #fff;
}

.dropdown, .dropdown-res {
  position: relative;
  display: inline-block;
}

.dropbtn {
  padding: 20px 10px !important;
}

.dropdown-content, .dropdown-content-res {
  //margin-top: 8px;
  display: none;
  position: absolute;
  background-color: white;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 99;
/*   transform: translateX(calc(-50% + 37.5px)); */
  transform: translateX(-50%);
  left: 50%;
  width: 480px;
  //flex-direction: column;
  flex-wrap: wrap;
  height: auto;
  justify-content: start;
}
.dropdown-content-res {
  width: 310px;
    padding: 20px 0;
    border-radius: 6px;
}
.dropdown-content-res a {
    margin: 0 30px;
}
.dropdown-content::before, .dropdown-content-res::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -15px;
  left: calc(50% - 15px);
  border-right: 15px solid transparent;
  border-bottom: 15px solid white;
  border-left: 15px solid transparent;
}

.dropdown-content a, .dropdown-content-res a {
  color: black;
  text-decoration: none;
  display: block;
  text-align: left;
  width: 200px;
  height: 60px;
  padding: 17px 10px;
}

.dropdown-icon {
  background-image: url(//theme.zdassets.com/theme_assets/88181/a0bf47b6dbeaf0de6703404d7a662d8aacd76be8.svg);
}

.dropdown-content a.fit-text, .dropdown-content-res a.fit-text {
  font-size: 0.8em;
  line-height: 2em;
}

.dropdown-content a:hover, .dropdown-content-res a:hover {
  background-color: #ddd;
  color: black;
}

.dropdown:hover .dropdown-content {display: flex;}
.dropdown-res:hover .dropdown-content-res {display: flex;}

.center-nav a:hover {
  text-decoration: none;
  //font-weight: bold;
  cursor: pointer;
}

.center-nav > * {
  margin: 0px 10px;
}

#box-status-container {
  display: inline-flex;
  flex-direction:row;
}

.box-status-label {
	display: none;
}

@media (min-width: 768px) {
  .box-status-label {
    display: inline-block;
  }
}

#box-status-icon {
  display: inline-block;
  height: 8px;
  width: 8px;
  border-radius: 25px;
  background-color: #26C281;
  align-self: center;
  margin-right: 9px;
}

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

.user-info .btn {
    padding-bottom: 3px;
}

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

.user-info > [role="button"]::after {
  color: #fff;
  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: rgba(0, 97, 213, 1);
  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;
  background-color: #152026;
}

.footer a {
  color: #72848E;/*#395568;*/
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  flex-direction: column;
}

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

.footer-inner > * {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
    color: #395568;
  padding: 1em;
}

.footer-below {
  border-top:1px solid rgba(114,132,142,0.3);
}

.footer-language-selector {
  color: white; /*#395568;*/
  display: inline-block;
  /*font-weight: 300 !important;*/
}

.footer-links  > a{
  margin-left: 2em;
}

.social-media-buttons a i {
  margin-left: 20px;
  font-size: 2em;
  color: #fff;
}

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

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

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

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

.breadcrumbs li a:visited {
  color: #1F73B7;
}

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

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

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

.search input[type="search"]:focus {
  border: 1px solid rgba(0, 97, 213, 1);
  color: #555;
}

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

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

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

/***** Hero component *****/
.hero {
/*   background-image: url(//theme.zdassets.com/theme_assets/88181/80b6f5b5ab7e64e47b3098214dafde1deed3b0ec.svg); */
  background-color: #0061D5;
  background-position: center;
  background-size: cover;
/*   height: 180px; */
/*   padding: 80px 0px 160px 0px; */
  padding: 20px;
  text-align: center;
  width: 100%;
  padding-top:40px;
  background: transparent linear-gradient(180deg, #2486FC 0%, #005BC9 100%) 0% 0% no-repeat padding-box;
}

.hero-inner {
  position: relative;
/*   top: 50%; */
/*   transform: translateY(-50%); */
  max-width: 1024px;
  margin: 0 auto;
  color: #fff;
}

.hero-inner > h1 {
  font-size: 3.5em;
  margin-bottom: 10px;
}

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

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

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

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

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

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

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

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

/***** Blocks *****/

.center-align {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Used in Homepage#categories and Community#topics */
.blocks-list {
/*   display: grid; */
/*   grid-template-columns: 25% 25% 25% 25%; */
  display: flex;
/*   flex: 1 25%; */
  flex-wrap: wrap;
  flex-direction: row;
  list-style: none;
  padding: 0;
}

@media (max-width: 1024px) {
  .blocks-list {
    margin: 0 -15px;
/*     flex: 1 33%; */
/*     grid-template-columns: 33% 33% 33%; */
  }
}

@media (max-width: 500px) {
  .blocks-list {
    margin: 0 -15px;
/*     flex: 1 50%; */
/*     grid-template-columns: 50% 50%; */
  }
}

.blocks-item {
  box-sizing: border-box;
  color: #151F26;
  display: flex;
  flex: 0 25%;
  margin: 0 0 1px;
  text-align: center;
}

@media (max-width: 1024px) {
  .blocks-item {
     flex: 0 33%;
  }
}

@media (max-width: 500px) {
  .blocks-item {
     flex: 0 50%;
  }
}



.blocks-item:hover, .blocks-item:focus, .blocks-item:active {
/*   background-color: rgba(0, 97, 213, 1); */
}

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

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

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

.blocks-item-internal a {
  color: rgba(21, 31, 38, 1);
}

.blocks-item-link {
  color: #151F26;
  padding: 20px 30px;
  display: flex;
  flex: 1;
  justify-content: flex-start;
  border-radius: inherit;
  transition: all .2s ease-in-out;
  background-color:#fff;
}

.blocks-item .blocks-item-link {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .blocks-item .blocks-item-link {
			flex-direction: row;
      justify-content: flex-start;
    align-items: flex-start;
  }
}

.blocks-item-link:hover, .blocks-item-link:active {
  text-decoration: none;
  transform: scale(1.1);
  transition: all .2s ease-in-out;
  color: rgba(0, 97, 213, 1);
}

.blocks-item-link:focus {
  outline: 0;
/*   box-shadow: 0 0 0 3px rgba(0, 97, 213, 1); */
  text-decoration: none;
}

.blocks-item-title {
  margin-bottom: 0;
  font-size: 16px;
  text-align: center;
  /*align-self: center;*/
  background-color:#fff;
}

.blocks-item-title:hover {
  color: rgba(0, 97, 213, 1);
}

@media (min-width: 768px) {
  .blocks-item-title {
    text-align: left;
  }
}

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

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

.product-icon {
  height: 40px;
  min-width: 40px;
  width: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(//theme.zdassets.com/theme_assets/88181/a0bf47b6dbeaf0de6703404d7a662d8aacd76be8.svg);
}

.product-icon:hover, .product-icon:focus {
  filter: invert(28%) sepia(95%) saturate(6288%) hue-rotate(208deg) brightness(93%) contrast(101%); 
}

@media (min-width: 768px) {
  .product-icon {
    margin-right: 1em;
  }
}

/** Icon Mapping **/

.icon-svg-360003188114 {
  background-image: url(//theme.zdassets.com/theme_assets/88181/18a1024166f66fa48c940f1d3e32b3af2ddca3e7.svg);
}

*.icon-svg-360003308753 {
  background-image: url(//theme.zdassets.com/theme_assets/88181/da2c6bb2dfa4ab3e60fcc95ad61a80df014eeaed.png);
}

.icon-svg-360003187934 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/770ad395c84f61fce20bbbc281f0566c8e9bd10c.svg);
 }

.icon-svg-360003187974 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/4adbeb8c4d9477d519183ba599cde728a26b4582.svg);
 }

.icon-svg-360003187914 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/98feb7a24a2be5d686f5da89ac8dbbea7a045990.svg);
 }

.icon-svg-360003200713 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/8913792118f4e34452f9c620483e2fe37816cd1f.svg);
 }

.icon-svg-360003187954 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/18a2051daded99fb097d669dccabca37e700dc65.svg);
 }

.icon-svg-360002795334 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/2b4be62151294ebfd72f8c541d87ac1d5e8f6c55.svg);
 }

 .icon-svg-360003200853 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/fcb335d61b6e13de3fe2284273ab3a6c515ea5f9.svg);
 } 

.icon-svg-360003188134 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/640496f9373be366876d0005d79fc95aa3aee791.svg);
 }

.icon-svg-360003188014 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/86a652baa0c97fd547fa1fd0c4ce36cb375f33e9.svg);
 }

.icon-svg-360003188094 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/ee790338588976b2c5ce5b9e5adca8d5de64ff6c.svg);
 }

.icon-svg-360003200813 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/f9cfc70f2b8bd366e65ead6995d63e6e12ff377a.svg);
 }

.icon-svg-360003188074 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/6e7dc89183b288f7f09eaf59793ccd6aefe6f909.png);
}
 
.icon-svg-360003200793 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/7cfdeccf8eee774d9896af2320ad018be68b95f9.svg);
 }

.icon-svg-360003188054 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/73de8340887cf92dbf3b51fb8602e8437f8f9632.svg);
 }

.icon-svg-360003188034 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/115d7c10cfdf28cb80228f17a425f30a41b22ded.svg);
 }

.icon-svg-360003187994 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/c0f659c16001f3e3bc875ea115bcbfbea3ab89a5.png);
 }
 
.icon-svg-360002801793 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/67cd2f35cde18e39abb0d953a3796f5bb56a5730.svg);
 }

.icon-svg-360003200753 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/de75fc9b65e74bceb60cf2cd2fd0454615b7c336.svg);
 }

.icon-svg-360003200733 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/a0bf47b6dbeaf0de6703404d7a662d8aacd76be8.svg);
 }

.icon-svg-360003200773 {
  background-image: url(//theme.zdassets.com/theme_assets/88181/67cd2f35cde18e39abb0d953a3796f5bb56a5730.svg);
}

 .icon-svg-360003200773:hover,
 .icon-svg-360003200773:focus, { 
  
  filter: invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
 } 

.icon-svg-box_product_updates {
  background-image: url(//theme.zdassets.com/theme_assets/88181/98feb7a24a2be5d686f5da89ac8dbbea7a045990.svg);
}

.icon-svg-box_certified_professional {
  background-image: url(//theme.zdassets.com/theme_assets/88181/2a1cb11b815dfc16a220709044ab9e0dd12e4b5c.svg);
}

.icon-svg-box_community {
  background-image: url(//theme.zdassets.com/theme_assets/88181/8913792118f4e34452f9c620483e2fe37816cd1f.svg);
}

.icon-svg-dc_box_stories {
  background-image: url(//theme.zdassets.com/theme_assets/88181/592220e8f30ba0fa8f1408ceb73f615a6d4a06d3.svg);
}

.icon-svg-submit-a-case {
  background-image: url(//theme.zdassets.com/theme_assets/88181/d9af6854bd31d9f6d9e7a8c2fa6f46f097cebdeb.svg);

    display: block;
    width: 32px;
    height: 32px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.icon-svg-chat {
  background-image: url(//theme.zdassets.com/theme_assets/88181/9924a289ae9f66eede6e4ea0b7d669b2ec693b71.svg);
    display: block;
    width: 32px;
    height: 32px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
  
}

.icon-svg-call-center {
  background-image: url(//theme.zdassets.com/theme_assets/88181/91b98b2883e405ee8b2dfe92074dddf2cfa233f8.png);
    display: block;
    width: 32px;
    height: 32px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.icon-svg-call-us {
  background-image: url(//theme.zdassets.com/theme_assets/88181/9cfe2319a5b07168d2acc03ebb464ed0cad64352.svg);
    display: block;
    width: 32px;
    height: 32px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.dropdown-icon {
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: 5px center;
  padding-left: 30px !important;
}

#user-menu 

.links-blocks-item .product-icon {
  background-size: 70%;
	background-position: center;
}

.links-blocks-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}

.links-blocks-item {
  background-color: #c7c7c7;
  margin: 1em;
  width: 20%;
  min-width: 250px;
  transition: all .2s ease-in-out;
}

.links-blocks-item:hover, .links-blocks-item:active {
  transform: scale(1.1);
  transition: all .2s ease-in-out;
  box-shadow: 3px 3px 3px #909090;
}

.links-blocks-item > * {
  padding: 0;
}

.links-blocks-item > *:hover, .links-blocks-item > *:active {
  transform: none;
}

.links-blocks-item .product-icon {
  height: 100px;
  min-width: 100px;
  width: 100px;
  /*background-color: #909090;*/
  background-color: #fff;
  margin-right: 1em;
}

.links-blocks-item:hover .product-icon {
  /*background-color: #0061D5;*/
  background-color: #fff;
}

.general-item-button-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.general-item-button {
  background-color: #c7c7c7;
  color: #000;
  margin: 1em;
  padding: 1em;
}

.general-item-button a {
  color: #000;
}

.general-item-button:hover{
  background-color: #0061D5;
  color: #fff;
  cursor: pointer;
}
.general-item-button:hover a{
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}

.general-item-button.active {
  background-color: #0061D5;
}

.general-item-button.active a {
  color: #fff
}

.general-item-article-section-list {
  border: 1px solid #000;
  padding: 2em 4em;
  width: 25%
  min-width: 400px;
}

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

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

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

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

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

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

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

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

.promoted-articles-item a {
  display: block;
  padding: 15px 0;
  color: #0061d5;
}

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

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

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

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

.community-image {
  min-height: 300px;
  background-image: url(//theme.zdassets.com/theme_assets/88181/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: rgba(21, 31, 38, 1);
  display: inline-block;
  width: 100%;
}

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

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

.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: #395568;
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
}

.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: rgba(0, 97, 213, 1);
  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: center;
}

.category-content {
  flex: 1;
}

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

.category-content > .page-header {
  flex-direction: column;
  align-content: center;
  align-items: center;
}

.category-content .links-blocks-item {
  width: 40%;
}

.section-tree {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-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 45%;
    /* Two columns for tablet and desktop. Leaving 5% separation between columns */
  }
}

.section-tree-title {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 20px;
}

.section-tree-title a {
  color: rgba(0, 97, 213, 1);
}

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

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

.article-list-item a {
  color: rgba(21, 31, 38, 1);
}

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

.icon-star::before {
  color: rgba(0, 97, 213, 1);
  font-size: 18px;
}

#vue-category-page {
  padding-top: 20px;
  display: flex;
  justify-content: center;
  text-align: center;
}

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

.section-content {
  flex: 1;
}

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

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

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

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

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

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

.section-list-item a {
  align-items: center;
  color: rgba(21, 31, 38, 1);
  display: flex;
  justify-content: space-between;
}

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

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

.section-sections {
  display: flex;
  flex-wrap: wrap;
}

.section-item {
  width: 45%;
  min-width: 500px;
  margin: 1em 2em 1em 0;
}

/***** 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;
    // max-width: 66%;
    // min-width: 640px;
    padding: 0 30px 0 0;
  }
}

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

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

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

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

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

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

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

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

.article-title {
  margin-bottom: 0px;
}

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

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

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

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

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

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

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

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

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

/* ADDED 5/20/20 BY KEITH JOHNSON */
.article-body ul ul {
  list-style-type: circle;
}

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

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

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

/* END EDIT */

.article-body a:visited {
  /*color: #103c60;*/
}

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

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

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

.article-body table, th, td {
  padding: 10px;
  border: 1px solid #ccc;
  border-collapse: collapse;
}

.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: #395568;
  font-weight: 400;
}

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

.article-comment-count-icon {
  vertical-align: middle;
  color: rgba(0, 97, 213, 1);
  width: 18px;
  height: 18px;
}

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

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

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

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

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

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

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

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

.article-vote {
  background: transparent;
  border: 1px solid rgba(0, 97, 213, 1);
  color: rgba(0, 97, 213, 1);
  margin: 10px 5px;
  min-width: 90px;
  width: auto;
}

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

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

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

.article-vote:focus, .article-vote:active {
  background-color: transparent;
  color: rgba(0, 97, 213, 1);
}

.article-vote:hover {
  background-color: rgba(0, 97, 213, 1);
}

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

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

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

.article-more-questions {
  margin: 10px 0 20px;
  text-align: center;
}

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

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

.article-return-to-top a {
  color: rgba(21, 31, 38, 1);
  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: rgba(0, 97, 213, 1);
  color: #FFFFFF;
  text-decoration: none;
}

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

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

.sidenav-item {
  border-radius: 4px;
  color: rgba(21, 31, 38, 1);
  display: block;
  font-weight: 400;
  margin-bottom: 10px;
  padding: 10px;
  border-bottom: 1px solid #E6E6E6;

}

.sidenav-item.current-article, .sidenav-item:hover {
/*   background-color: rgba(0, 97, 213, 1); */
  color: #000;
  text-decoration: none;
  font-weight:bold
}

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

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

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

.attachments .attachment-item::before {
  color: rgba(21, 31, 38, 1);
  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: #395568;
}

/***** Social share links *****/
.share {
  padding-top: 20px;
  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: #395568;
  display: block;
  font-size: 23px;
  text-align: center;
  width: 100%;
}

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

.share a:hover::before {
  color: rgba(0, 97, 213, 1);
}

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

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

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

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

.comment-heading, .recent-articles-title,
.related-articles-title {
  margin-bottom: 5px;
  margin-top: 0;
  font-size: 18px;
  font-weight: 600;
}

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

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

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

.comment-callout a {
  color: rgba(0, 97, 213, 1);
}

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

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

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

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

.comment-wrapper.comment-official {
  border: 1px solid rgba(0, 97, 213, 1);
  padding: 40px 20px 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.comment-container {
  width: 100%;
}

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

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

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

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

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

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

.comment-ccs {
  display: none;
}

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

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

.comment-attachments a {
  color: rgba(0, 97, 213, 1);
}

.comment-body {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
  overflow-x: auto;
}

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

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

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

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

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

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

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

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

.comment-body blockquote {
  border-left: 1px solid #ddd;
  color: #395568;
  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: #395568;
  display: block;
  margin: 3px 0;
}

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

.vote-up:hover::before,
.vote-down:hover::before {
  color: rgba(0, 97, 213, 1);
}

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

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

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

.vote-voted::before {
  color: rgba(0, 97, 213, 1);
}

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

/***** 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: #395568;
  content: "\2699";
  display: block;
  font-size: 13px;
  margin: auto;
  padding: 5px;
}

/***** Community *****/
.community-hero {
  background-image: url(//theme.zdassets.com/theme_assets/88181/ea0fc49e94c74884940bd530924916ea87035a5f.svg);
  margin-bottom: 20px;
}

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

.community-footer-title {
  font-size: 16px;
  margin-bottom: 20px;
}

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

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

.community-header h1 {
  margin-bottom: 0;
  font-size: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.community-follow [role="button"]:hover {
  background-color: rgba(0, 97, 213, 1);
}

.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: rgba(0, 97, 213, 1);
  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: #00336f;
  border-color: #00336f;
}

.community-follow [role="button"]::after {
  border-left: 1px solid rgba(0, 97, 213, 1);
  content: attr(data-follower-count);
  color: rgba(0, 97, 213, 1);
  display: inline-block;
  font-family: 'Lato', 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 rgba(0, 97, 213, 1);
  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: #1F73B7;
  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: #103c60;
}

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

.striped-list-count {
  color: #395568;
  font-weight: 400;
  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: 400;
  text-align: center;
}

@media (min-width: 768px) {
  .striped-list-number {
    color: rgba(21, 31, 38, 1);
    display: block;
    font-weight: 400;
  }
}

/***** Status labels *****/
/* Styles labels used in posts, articles and requests */
.status-label {
  background-color: #038153;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  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: rgba(0, 97, 213, 1);
}

.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-not-planned, .status-label-closed {
  background-color: #e9ebed;
  color: #395568;
}

.status-label-pending {
  background-color: #1f73b7;
  text-align: center;
}

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

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

.status-label-new {
  background-color: #ffb648;
  color: #703b15;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.post-content {
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
  word-break: break-word;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.post-comment-count {
  color: #395568;
  font-weight: 400;
}

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

.post-comment-count .icon-comments {
  color: rgba(0, 97, 213, 1);
  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-title {
  font-size: 18px;
  font-weight: 600;
}

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

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

/* Navigation element that collapses on mobile */
.collapsible-nav {
  flex-direction: column;
  font-size: 14px;
  position: relative;
}

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

.collapsible-nav-border {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
}

@media (min-width: 768px) {
  .collapsible-nav-border {
    border-top: 0;
  }
}

.collapsible-nav-toggle {
  top: calc(45px / 2);
  transform: translateY(-50%);
  position: absolute;
  right: 0;
  padding: 0;
  border: 0;
  background: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .collapsible-nav-toggle {
    display: none;
  }
}

[dir="rtl"] .collapsible-nav-toggle {
  left: 0;
  right: auto;
}

.collapsible-nav-toggle::after {
  content: "\25BE";
}

.collapsible-nav-toggle:focus {
  outline: none;
  border: 1px solid rgba(0, 97, 213, 1);
}

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

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

.collapsible-nav-list li {
  color: rgba(21, 31, 38, 1);
  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: rgba(21, 31, 38, 1);
  display: block;
}

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

.collapsible-nav-list li:not([aria-selected="true"]),
.collapsible-nav-list li:not(.current) {
  display: none;
}

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

@media (min-width: 768px) {
  .collapsible-nav-list li[aria-selected="true"] {
    padding: 15px 0 11px 0;
  }
}

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

@media (min-width: 768px) {
  .collapsible-nav-list li[aria-selected="true"],
  .collapsible-nav-list li.current {
    border-bottom: 4px solid rgba(0, 97, 213, 1);
    order: 1;
  }
}

.collapsible-nav-list li[aria-selected="true"] a,
.collapsible-nav-list li.current a {
  color: rgba(21, 31, 38, 1);
}

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

.collapsible-nav[aria-expanded="true"] li:not([aria-selected="true"]),
.collapsible-nav[aria-expanded="true"] li:not(.current) {
  display: block;
}

/* 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-title {
  margin-top: 0;
}

.collapsible-sidebar-toggle {
  position: absolute;
  top: calc(45px / 2);
  transform: translateY(-50%);
  right: 0;
  padding: 0;
  border: 0;
  background: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

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

[dir="rtl"] .collapsible-sidebar-toggle {
  left: 0;
  right: auto;
}

.collapsible-sidebar-toggle::after {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  content: "\25BE";
}

.collapsible-sidebar-toggle:focus {
  outline: none;
  border: 1px solid rgba(0, 97, 213, 1);
}

.collapsible-sidebar-body {
  display: none;
}

@media (min-width: 1024px) {
  .collapsible-sidebar-body {
    display: block;
  }
}

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

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

.collapsible-sidebar[aria-expanded="true"] .collapsible-sidebar-body {
  display: block;
}

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

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

.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: rgba(0, 97, 213, 1);
  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: rgba(0, 97, 213, 1);
  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: #00336f;
  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: #395568;
  font-size: 13px;
  font-weight: 400;
}

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

.no-activities {
  color: #395568;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.request-main .form-field.comment-ccs > ul[data-hc-focus="true"] {
  border: 1px solid rgba(0, 97, 213, 1);
}

.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 rgba(0, 97, 213, 1);
}

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

.request-title {
  width: 100%;
}

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

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

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

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

@media (min-width: 1024px) {
  .request-sidebar h2 {
    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: #395568;
  font-weight: 400;
  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;
}

.contact-tile-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.contact-tile:hover {
  cursor: pointer;
}

@media (min-width: 789px) {
  .contact-tile-container {
    flex-direction: row;
  }
}

.contact-tile {
  display: flex;
  justify-content: center;
  flex-direction: column;
	align-items: center;
  padding: 15px 0 5px 0;
  margin: 1em;
  position: relative;
    display: inline-block;
    width: 315px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.2);
    margin-bottom: 15px;
    padding-left: 55px;
    transition: .3s box-shadow ease-in-out;
}

.contact-tile:hover{
            box-shadow:0 3px 6px 0 rgba(0,0,0,.3);
            transition:.1s box-shadow ease-in-out
        }

.contact-tile a {
  text-decoration: none;
}

.contact-tile a:hover {
  text-decoration: underline;
}

.contact-tile p {
  padding:0;
}

.contact-tile-icon {
  /* background-image: url(//theme.zdassets.com/theme_assets/88181/745d2691d9d0ccbd3ded608675536fe72e21c2c1.png); */
  background-repeat: no-repeat;
  background-position: center center;
  height: 50px;
  width:50px;
  background-size: contain;
    position: absolute;
    left: 20px;
    top: 20px;
}

#vue-form {
  display:flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

/***** 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: rgba(21, 31, 38, 1);
  text-decoration: none;
}

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

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

.pagination-current {
  background-color: rgba(0, 97, 213, 1);
}

.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: #395568;
  font-size: 13px;
  font-weight: 400;
}

.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-toggle::after,
.collapsible-sidebar-toggle::after {
  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-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-article::before {
  content: "\1F4C4";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.profile-header .options [data-action="edit-profile"] {
  background-color: rgba(0, 97, 213, 1);
  border: 0;
  color: #FFFFFF;
  line-height: normal;
  padding: 8px 20px;
  outline-color: rgba(0, 97, 213, 1);
}

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

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

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

.profile-stats .stat-label {
  color: #395568;
  font-weight: 400;
  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 rgba(0, 97, 213, 1);
  border-radius: 4px;
  color: rgba(0, 97, 213, 1);
  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;
  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: #395568;
  font-weight: 400;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.search-results-sidebar .sidenav-item:hover, .search-results-sidebar .sidenav-item[aria-selected="true"] {
  background-color: #e9ebed;
  color: inherit;
  text-decoration: none;
}

.search-results-sidebar .sidenav-subitem {
  unicode-bidi: embed;
}

.search-results-sidebar .collapsible-sidebar {
  margin-bottom: 30px;
}

.search-results-sidebar .collapsible-sidebar[aria-expanded="false"] .multibrand-filter-list {
  display: none;
}

@media (min-width: 1024px) {
  .search-results-sidebar .collapsible-sidebar[aria-expanded="false"] .multibrand-filter-list {
    display: block;
  }
}

.search-results-sidebar .multibrand-filter-list--collapsed li:nth-child(1n + 6) {
  display: none;
}

.search-results-sidebar .multibrand-filter-list .doc-count {
  color: #999;
}

.search-results-sidebar .see-all-filters {
  background: none;
  border: none;
  cursor: pointer;
  display: block;
  padding: 10px;
  color: #1F73B7;
}

.search-results-sidebar .see-all-filters[aria-hidden="true"] {
  display: none;
}

.search-results-sidebar .see-all-filters:hover {
  text-decoration: underline;
}

.search-results-sidebar .see-all-filters::after {
  content: ' \2304';
  font-weight: bold;
}

.search-results-subheading {
  font-size: 18px;
  font-weight: 600;
}

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

.search-results-list > li {
  padding: 20px 0;
}

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

.search-results-list > li h2 {
  margin-bottom: 0;
}

.search-results .meta-group {
  display: block;
  align-items: center;
  clear: both;
  color: #666;
}

@media (min-width: 1024px) {
  .search-results .meta-group {
    display: flex;
  }
}

.search-results .meta-group > li {
  display: block;
}

@media (min-width: 1024px) {
  .search-results .meta-group > li {
    display: inline;
  }
}

@media (min-width: 1024px) {
  .search-results .meta-group li:first-child {
    flex: 1;
  }
}

.search-results .meta-group .meta-data {
  color: inherit;
}

[dir="ltr"] .search-results .meta-group .meta-data:not(:last-child) {
  margin-right: 20px;
}

[dir="rtl"] .search-results .meta-group .meta-data:not(:last-child) {
  margin-left: 20px;
}

.search-results .meta-group .meta-data::after {
  content: none;
}

.search-results-description {
  margin-top: 10px;
  word-break: break-word;
}

.search-result-title {
  font-size: 16px;
  display: inline-block;
}

[dir="ltr"] .search-result-icons {
  float: right;
}

[dir="rtl"] .search-result-icons {
  float: left;
}

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

.search-result-votes-icon, .search-result-meta-count-icon {
  color: rgba(0, 97, 213, 1);
  vertical-align: middle;
  width: 13px;
  height: 13px;
}

[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 .meta-group {
  align-items: center;
}

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

@media (min-width: 1024px) {
  .search-result-breadcrumbs {
    display: table-row;
  }
}

@media (min-width: 1024px) {
  .search-result-breadcrumbs li {
    display: table-cell;
  }
}

.search-result-breadcrumbs li, .search-result-breadcrumbs li a, .search-result-breadcrumbs li a:visited {
  color: inherit;
}

/* By default use bold instead of italic to highlight */
.search-results-description em {
  font-style: normal;
  font-weight: bold;
}

/* Add a yellow background for Chinese */
html[lang|="zh"] .search-results-description em {
  font-style: normal;
  background: yellow;
}

/** International Telephone Input **/

.iti__flag {
  background-image: url(//theme.zdassets.com/theme_assets/88181/21572c9751e5a3dc20395befa0fcb349c32c4811.png) !important;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url(//theme.zdassets.com/theme_assets/88181/d6f843711c3cfe6d9a037e4c61d293f563e55802.png) !important;
  }
}

.iti { 
  width: 100%; 
}

.searchbox-suggestions {
	border-bottom: 1px solid #ddd;
}

.btn-form-continue {
  margin-top: 0.5rem;
  display: block;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
}

.btn-product-feedback {
  margin-top: 0.5rem;
  display: block;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
}

.sso-form-notes {
	list-style: unset;
  margin: 1rem;
  padding: 1rem;
}

#user_nav {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .logo img {
    max-height: 20px;
  }
  
  .box-status-label {
    display: block;
   // font-size: .8em !important;
  }
  
  .footer-links {
    display: flex;
    flex-direction: column !important;
  }
  
  .language-selector .dropdown-menu-end {
    left: 0 !important;
  }
  
  .dropdown-mobile-container .dropbtn {
    padding: 0px !important;
  }
}

@media (min-width: 768px) {
  .dropdown-menu-caret::after, .dropdown-menu-caret::before {
    top: -15px;
    left: 0px;
    right: calc(50% - 15px);
    border-right: 15px solid transparent;
    border-bottom: 15px solid #fff;
    border-left: 15px solid transparent;
  } 
}

/** Hide 'Web Call Back' option **/
[id="360002467873"] {
  display: none !important;
}

/** Hide 'Submit a Case' option for logged in users **/
.nesty-panel.logged-in [id="360002479454"] {
	display: none !important; 
}

.nesty-panel:not(.logged-in-as-box) [id="360002404653"] {
	display: none !important; 
}

/** Show Product Suggestion **/
.nesty-panel.logged-in [id="123"] {
	display: show;
}

.categories.blocks {
  width: 100%;
}

[v-cloak] {
  display: none;
}

#call-me-tooltip {
  font-size: .8em;
  color: rgb(100, 100, 100);
}

.articles {
  width: 100%;
}

.articles .promoted-articles {
  width: 100%;
  justify-content: space-around;
}

#user #user-name {
  max-width: 180px !important;
}

.japanese-translation {
  pointer-events: none;
}

.premier-support > p {
  margin: 0px;
  padding: 10px;
	border-bottom: 1px solid rgb(230, 230, 230);
  text-align: left;
  width:300px;
}

.premier-support > p:last-child {
  border-bottom: none;
}

.premier-support > p > span {
  float: right;
  padding-left: 20px;
  font-weight: bold;
}

.contact-tile.premier-support-container{
  display: flex;
  justify-content: center;
  flex-direction: column;
	align-items: center;
  padding: 15px 0 5px 0;
  margin: 1em;
  position: relative;
    display: inline-block;
    width: 375px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.2);
    margin-bottom: 15px;
    padding-left: 55px;
    transition: .3s box-shadow ease-in-out;
}

.premier-support-container {
  flex-direction: row;
  width: 300px;
}

#support-options {
    text-align: center;
    padding: 0 40px;
    justify-content: space-evenly;
}

.support-subscription{
  padding: 15px 0 20px 0;
}

.support-slas {
  margin: auto;
}

.support-slas tr {
  padding:0px;
  margin: 0px;
}

.support-slas th {
  padding: 5px;
  margin: 5px;
  width: 200px;
  background-color: rgba(0, 97, 213, 1);
  color: #fff;
  border-collapse: collapse;
  border: none;
}

.support-slas td {
  width: 200px;
  border-collapse: collapse;
  border: none;
  padding: 0px;
}

.priorityDefinitions {
  margin-top:10px;
  font-size: .8em;
  padding:5px;
}

.priorityDefinitions th {
  padding: 5px;
  width: 75px;
  background-color: rgba(0, 97, 213, 1);
  border-bottom: 1px solid #fff;
  color: #fff;
}

.priorityDefinitions td {
  padding:5px;
  border-bottom: 1px solid #fff;
}

.home-page-header {
  font-size: 24px;
  border-bottom: 1px #ccc solid;
  text-align: left;
  width: 100%;
  font-weight: bold;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

/* Hide Swarm Div */
.hide {
  display:none;
}


/* Centering */

/* KB Styling */

.container-kb {
    /* max-width: 1160px; */
    margin: 0 auto;
    padding: 0;
}
@media (min-width: 1160px)
.container-kb {
    padding: 0;
}

#home-categories .knowledge-base {
  text-align: center;
}

.promo-content-item {
    padding-bottom: 50px;
    padding-top: 50px;
}

.Promo-content-wrapper {
  	text-align:center;
  	margin:auto;
  	margin-top: 20px;
  	display: flex;
  	justify-content: center;
  	flex-wrap: wrap;
}

@media (min-width: 700px) {
.lia-quilt-column-12 {
    width: 50%;
  }}

@media (max-width: 699px) {
.lia-quilt-column-12 {
    width: 100%;
  }}

.lia-quilt-column-12 .button {
    width: auto;
}

@media (max-width: 991px) {
.promo-content-item .content-right-inner {
    float: none;
    margin-left: 0;
    width: auto;
}
.promo-content-item .content-left-inner {
    float: none;
    margin-right: 0;
    width: auto;
}}

@media screen and (max-width: 991px) {
.Promo-content-wrapper .content-left {
    display: inline-block;
}
  .Promo-content-wrapper .content-right {
    display: inline-block;
  }}

.lia-quilt-column-12.content-left {
    background: #dde6ed none repeat scroll 0 0;
}

.lia-quilt-column-12.content-right {
    background: #e9eef3 none repeat scroll 0 0;
}

.lia-quilt-column-12 img {
    height: 35px !important;
}

.lia-quilt-column-12 .promo-title {
  font-size:22px;
}

.lia-quilt-column-12 .Promo-content {
  font-size:14px;
}

.promo-content-item {
    padding-bottom: 50px;
    padding-top: 50px;
}

.content-left-inner {
    float: right;
    margin-right: 40px;
}

.content-right-inner {
    float: left;
    margin-left: 40px;
}

.content-left-inner, 
.content-right-inner {
		width: 320px;
    text-align: center;
}

.promo-title {
    font-size: 20px;
    font-weight: bold;
    margin-top: 18px;
}

#lia-body .lia-button.lia-button-primary {
    background: #0061D5;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    border: 1px solid transparent;
    min-width: 120px;
    border-radius: 4px;
    text-transform: capitalize;
}

.cookie-banner {
	/*position: fixed;
	bottom: 5px;
	left: 10%;
  right: 10%;
  width: 80%;
  padding: 5px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
  background: #0a0;
  background: RGBA(252,98,122,0.85);
  height: 50px;
  font-weight: 300px;*/
  height: 85px;
transition: 400ms ease all 1s;
background: RGBA(252,98,122,0.85);
position: fixed;
bottom: 0px;
z-index: 9999;
text-align: center;
color: #fff;
width: 100%;
display: flex;
  font-size: 16px;
}

.close {
  height: 20px;
  border: none;
  color: white;
  border-radius: 2px;
  cursor: pointer;
float: right;
position: absolute;
right: 11px;
z-index: 9999;
  font-size: 20px;
  font-weight: bold;
}

.white-svg {
  color: #fff;
}

.box-community-info-box, .article-note {
    background-color: #fbf2d0;
    padding: 10px;
    margin-left: 0px;
    margin-right: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
    border-color: #D1CAAD;
    border-left-width: 5px;
    border-left-style: solid;
    color: #06363C;
}



/*Custom CSS starts for Product updates*/

.category-content.filterpage-900000131023{
  flex: 1 !important;
}

.messageCards * {
  padding:0;
  margin:0;
  box-sizing: border-box;
  line-height: 1.71428571;
}

/* fix for unwanted spacing raised by liz*/
.messageCard span{
	/* display:inline-block; */
}
.messageCards {
  margin: 30px 0 20px;
  font-family: 'Lato','Helvetica Neue',Helvetica,Arial,sans-serif;
  font-size: 16px;
  color: #3e3e3e;
}

.messageCard {
  border-top: 5px solid #0061D5;
  padding: 10px 20px;
  margin-bottom: 20px;
  background-color: #F9F9F9;
}

.messageCard .label{
  color: #0061d5;
  text-transform: uppercase;
  font-size: 10px;
  padding:10px 0 5px;
}
.messageCard .title{
  color: #0464d7;
  text-decoration: none;
  font-weight: 500;
  word-break: break-word;
  display: block;
  overflow: hidden;
  max-height: 28px;
}
.messageCard .body{
  max-height: 82.28571429px;
  overflow: hidden;
  color: #869097;
  margin-bottom: 20px;
}

.postTime{
	margin-right: 20px;
  color: #212a30;
}

.messageCard .messageStatsLeft{
  display:inline-block;
}

.messageCard .messageStatsRight{
  display:inline-block;
  float:right;
}

.voteCount{
  margin-right: 15px;
  vertical-align: middle;
}

.messageCard.Comingsoon .label{
  color: #0061D5;
}
.messageCard.Comingsoon {
  border-top: 5px solid #0061D5;
}

.messageCard.Rollingout .label{
  /*color: #002A49;*/
  color: #F1811A;
}
.messageCard.Rollingout {
  border-top: 5px solid #F1811A;
}

.messageCard.Launched .label{
  /*color: #F26430;*/
  color: #26C281;
}
.messageCard.Launched {
  border-top: 5px solid #26C281;
}

.messageCard.Deprecation .label{
  /*color: #72848E;*/
  color: #222222;
}
.messageCard.Deprecation {
  border-top: 5px solid #222222;
}

.messageCard.Announcements .label{
  /*color: #00B4B1;*/
  color: #9F3FED;
}
.messageCard.Announcements {
  border-top: 5px solid #9F3FED;
}
#FilterButtons {
    margin: 0 -6px;
}
#FilterButtons button {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid #f5f6f8;
    border-radius: 4px;
    margin: 5px 6px;
    color: #c1b6b3;
    text-decoration: none;
    cursor: pointer;
    background-color: #f5f6f8;
    font-size: 16px;
}

#FilterButtons button:hover, #FilterButtons button:focus, #FilterButtons button:active{
  	outline:none;
}

#FilterButtons button#FilterComingSoon:hover, #FilterButtons button#FilterComingSoon.active{
		color: #0061d5;
    border: 1px solid #0061d5;
}

#FilterButtons button#FilterRollingOut:hover, #FilterButtons button#FilterRollingOut.active{
    color: #F1811A;
    border: 1px solid #F1811A;
}

#FilterButtons button#FilterLaunched:hover, #FilterButtons button#FilterLaunched.active{
    color: #26C281;
    border: 1px solid #26C281;
}

#FilterButtons button#FilterDeprecated:hover, #FilterButtons button#FilterDeprecated.active{
		color: #222222;
    border: 1px solid #222222;
}
#FilterButtons button#FilterAnnouncements:hover, #FilterButtons button#FilterAnnouncements.active{
    color: #9F3FED;
    border: 1px solid #9F3FED;
}
.filterButtonsLabel{
    margin: 26px 0; 
}
#custom-filterby{
    padding: 20px 0;
    border-bottom: 1px solid #e9eef3;
  	margin: 20px 0 0;
    position: relative;
}
.filterByTopic, .filterByDate{
    width: initial;
    margin-right: 20px;
  	border: none;
    padding: 0 30px 0 0;
}
.filterByTopic:focus, .filterByDate:focus {
    border: none;
}
.filterByTopic{
    width: 196px;
}
@media (max-width: 767px){
  #FilterButtons{
    text-align:center;
  }
}


/*Redesigning community_post_page.hbs CSS starts*/
.breadcrumbs li a, .breadcrumbs li {
  color: #0061D5;
  font-size: 16px;
  font-weight: normal;
}
.breadcrumbs li a:visited {
  color: #0061D5;
}
.breadcrumbs li a:active {
  color: #72848E;
}
.breadcrumbs li:last-child a,.breadcrumbs li:last-child a:visited,.breadcrumbs li:last-child {
  color: #72848E;
}
.breadcrumbs li + li::before {
  color: #72848E;
}
.search input[type="search"] {
  border: 1.5px solid #DDDDDD;
  background-color: #F5F6F8;
  border-radius: 4px;
}
.search input[type="search"]::placeholder {
  color: #B1B5B9;
  opacity: 1;
  font-weight: normal;
}
.search::before{
  background-color: #F5F6F8;
  color: #B1B5B9;
}
.post-container .post-header .status-label{
  text-align: center;
  letter-spacing: 0.43px;
  text-transform: uppercase;
  height: 28px;
  vertical-align: middle;
  padding-top: 2px;
  margin-left: 14px;
}
.post-container .community-follow a{
  font-size: 16px;
  line-height: 46px;
}
.post-container .community-follow [role="button"][aria-selected="true"] {
  background-color: #E9EEF3;
  color: #0061D5;
  border-color: #E9EEF3;
}
.post-container .community-follow [role="button"]{
  padding: 0px 62px 0 10px;
  width: 150px;
}
.post-container .community-follow [role="button"][aria-selected="true"]::after{
  color: #0061D5;
}
.post-container .community-follow [role="button"]::after{
  position: absolute;
  right: 18px;
  padding-left: 18px;
}
.post-container .community-follow [role="button"][aria-selected="false"]:hover {
  background-color: #0061D5;
}
.post-container .post-to-community{
	margin-left: 30px;
}  
.post-container .post-to-community a{
  min-width: auto;
  font-size: 16px;
  line-height: 48px;
  background-color: #0061D5;
  width: 150px;
}
.post-container .post-title h1{
  font-weight: normal;
  font-size: 36px;
  color: #151F26;
  word-break: break-word;
  word-wrap: break-word;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .post-container .post-title h1{
    display: block;
  }
}
.post-container .post{
  flex: 1;
  max-width: none;
}

.post-container .actions .dropdown .dropdown-menu{
  left: auto;
  right: 0;
}
.post-container .actions .dropdown .dropdown-toggle{
  margin: 15px 0 0;
}

.post-container .post-info, .post-container .comment-info{
  padding-right: 0;
  width: calc(100% - 150px);
}

.post-container .post-actions-wrapper, .post-container .comment-actions-container {
  width: 150px;
  text-align: center;
}

.post-container .post-header {
  margin-bottom: 40px;
}

.post-container .comment-info .comment-author .comment-meta a,.post-container .post-info .post-author .post-meta a{
  color: #0061D5;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
}
.post-container .meta-data{
  color: #72848E;
  font-size: 16px;
  font-weight: normal;
}
.post-container .avatar img {
    height: 60px;
    width: 60px;
}
.post-container .comment-meta {
    align-self: baseline;
}

.post-container .comment-sorter {
    margin-right: 40px;
}
.post-container .comment-sorter .dropdown-toggle{
    font-size: 16px;
    color: #72848E;
    font-weight: normal;
}
.post-container .comment-sorter .dropdown-toggle:focus,.post-container .comment-sorter .dropdown-toggle:active{
    color: #151F26;
    font-weight: bold;
    text-decoration:none;
}
.post-container .comment-sorter .dropdown-menu{
    left:initial;
    right:0;
}
.post-container .comment-sorter .dropdown-menu [role="menuitem"]{
    color: #151F26;
    font-size: 16px;
}
.post-container .comment-sorter .dropdown-menu [role="menuitem"][aria-selected="true"]{
    font-weight: bold;
    background-color: #F5F6F8;  
}
.post-container .comment-sorter .dropdown-menu [role="menuitem"][aria-selected="true"]::after {
  content: "";
  margin-left: 30px;
  height: 6px;
  width: 9px;
  border: 2px solid #0061D5;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg) translateY(-40%);
  display: inline-block;
}
.post-container .post-comment-count {
    margin-right: 56px;
}

.post-container .comment-heading{
    font-size: 20px;
    color: #151F26;
    margin-bottom: 15px;
}

.post-container .comment-callout {
    color: #72848E;
    font-weight: normal;
    font-size: 16px;
}

.post-container .post-content,.post-container .comment-body {
    color: #72848E;
    font-size: 16px;
    word-break: break-word;
    word-wrap: break-word;
}

.post-container .vote-sum, .post-container .vote-up::before, .post-container .vote-down::before, .post-container .actions .dropdown-toggle::before{
    color: #72848E;
}

.post-container .comment-container textarea[name="community_comment[body]"]{
  	background: #F5F6F8 0% 0% no-repeat padding-box;
    border: 1px solid #DDDDDD;
    border-radius: 4px;
    resize: none;
}
.post-container .post-share ul.share li a{
    height: 30px;
  	width: 30px;
    line-height: 30px;
    position: relative;
    margin-right: 12px;
}
.post-container .post-share ul.share li a:before{
    width: 34px;
  	background-color: #0061D5;
    color: #FFFFFF;
    line-height: 30px;
    font-size: 34px;
  	position: absolute;
    top: 0px;
    left: -2px;
}
.post-container .post-footer{
    padding-bottom: 70px;
}
.post-container .comment-overview{
    border-top: none;
    padding-bottom: 25px;
}
@media (max-width:767px){
  .post-container .community-follow{
      width: 100%;
      margin: 0;
  }
  .post-container .post-to-community {
      margin: -48px 0 0 0;
      align-self: flex-end;
  }
  .post-container .post-info, .post-container .comment-info{
      width: calc(100% - 35px);
  }
  .post-container .post-actions-wrapper, .post-container .comment-actions-container {
      width: 35px;
  }
  .post-container .comment-sorter {
      margin-right: 0;
  }
  .post-container .post-comment-count {
      margin-right: 0;
  }
}
@media (max-width:350px){
  .post-container .community-follow{
    margin: 0;
    width: auto;
    align-self: center;
  }
  .post-container .post-to-community {
    align-self: center;
    margin: 20px 0 0 0;
  }
}
/*Redesigning community_post_page.hbs CSS ends */


/*Redesigning community_topic_page.hbs CSS starts */
.community_topic_page .striped-list-item .striped-list-info{
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
}
.community_topic_page .striped-list-item .striped-list-info .post-overview-item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;  
    min-width: 120px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.community_topic_page .status-label{
    text-transform: uppercase;
    margin-bottom: 6px;
}
.community_topic_page .status-label:last-child {
    margin-bottom: 0;
}

.community_topic_page {
    margin-bottom: 70px;
}
.community_topic_page .community-header {
/*     margin-bottom: 40px; */
}
.community_topic_page .community-follow a{
  font-size: 16px;
  line-height: 46px;
}
.community_topic_page .community-follow [role="button"][aria-selected="true"] {
  background-color: #E9EEF3;
  color: #0061D5;
  border-color: #E9EEF3;
}
.community_topic_page .community-follow [role="button"]{
  padding: 0px 62px 0 10px;
  width: 150px;
}
.community_topic_page .community-follow [role="button"][aria-selected="true"]::after{
  color: #0061D5;
}
.community_topic_page .community-follow [role="button"]::after{
  position: absolute;
  right: 18px;
  padding-left: 18px;
}
.community_topic_page .community-follow [role="button"][aria-selected="false"]:hover {
  background-color: #0061D5;
}
.community_topic_page .post-to-community{
	margin-left: 30px;
}  
.community_topic_page .post-to-community a{
  min-width: auto;
  font-size: 16px;
  line-height: 48px;
  background-color: #0061D5;
  width: 150px;
}

.community_topic_page .page-header {
  align-items: flex-start;
}

.community_topic_page .page-header h1{
  font-weight: normal;
  font-size: 36px;
  color: #151F26;
  width: calc(100% - 330px);
  padding-right: 20px;
}

.community_topic_page .page-header-description{
  color: #72848E;
  font-size:16px;
  font-weight:normal;
  font-style: normal;
}

.community_topic_page .topic-filters .dropdown-toggle,.community_topic_page .topic-header .topic-header-vote-comment{
    color: #72848E;
    font-size: 16px;
    font-weight: normal;
}
.community_topic_page .topic-filters .dropdown:first-child .dropdown-toggle{
    color: #151F26;
    font-weight: bold;
}
.community_topic_page .topic-filters .dropdown-toggle:focus,.community_topic_page .topic-filters .dropdown-toggle:active{
    outline: 0;
    text-decoration: none;  
    color: #151F26;
    font-weight: bold;
    font-size: 16px;
}
.community_topic_page .topic-filters .dropdown-menu [role="menuitem"]{
  color: #151F26;
  font-size: 16px;
}
.community_topic_page .topic-filters .dropdown-menu [role="menuitem"][aria-selected="true"]{
  font-weight: bold;
  background-color: #F5F6F8;  
}
.community_topic_page .dropdown-menu [role="menuitem"][aria-selected="true"]::after {
  content: "";
  margin-left: 10px;
  height: 6px;
  width: 9px;
  border: 2px solid #0061D5;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg) translateY(-40%);
  display: inline-block;
}
.community_topic_page .striped-list-item .striped-list-title{
  color: #151F26;
  font-size: 20px;
  font-weight: bold;
  padding-right: 130px;
  margin-bottom: 6px;
  line-height: normal;  
  word-break: break-word;
  word-wrap: break-word;
}
.community_topic_page .striped-list .meta-group{
  margin: 0 0 10px;  
  line-height: normal;
}
.community_topic_page .striped-list-item .meta-data{
  color: #72848E;
  font-size: 16px;
  font-weight: normal;
  line-height: normal;
}
.community_topic_page .striped-list-item .striped-list-number{
  color: #151F26;
  font-size: 16px;
  font-weight: bold;
  display:inline-block;
  vertical-align: middle;
}
.community_topic_page .striped-list-item .striped-list-count-item:nth-child(2) .striped-list-number{
  color: #0061D5;
}
.community_topic_page .striped-list-item .striped-list-count-item.comment-count-zero:nth-child(2) .striped-list-number{
  color: #72848E;
}
.community_topic_page .topic-header{
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding: 20px;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
}

.community_topic_page .topic-header .topic-filters{
  flex: 2;
  justify-content: space-between;
  display: flex;
}
.community_topic_page .topic-header .topic-header-vote-comment{
  flex: 1;
  display: flex;
  justify-content: space-around;
  margin-top: -1px;
}
.community_topic_page .topic-header .topic-header-vote-comment>span:nth-child(1){
  padding-left: 16px; 
}
.community_topic_page .topic-header .topic-header-vote-comment>span:nth-child(2){
  padding-left: 20px; 
}
.community_topic_page .topic-header .dropdown-status{
  min-width: 120px;
  margin-right: 0;
}
.community_topic_page .striped-list-item .striped-list-count-item:nth-child(2):before {
  content: " ";
  height: 18px;
  width: 18px;
  display: inline-block;
  padding: 0 5px;
  vertical-align: middle;
  background: url(//theme.zdassets.com/theme_assets/88181/c55ce9889aa1fc6ded8d0996fff5334bc79c0f3c.png) center no-repeat;
  background-size:contain;
}
.community_topic_page .striped-list-item .striped-list-count-item.comment-count-zero:nth-child(2):before {
  background: url(//theme.zdassets.com/theme_assets/88181/342585bb44f7d4e81be6a8779a5a30f55dbdc62b.png) center no-repeat;
  background-size:contain;
}
.status-label-answered{
  background-color: #F6BA31;
  color: #FFFFFF;
}
.status-label-planned{
  background-color: #585C60;
  color: #FFFFFF;
}
.status-label-not-planned{
  background-color: #EE4B67;
  color: #FFFFFF;
}
.status-label-completed{
  background-color: #3BC88D;
  color: #FFFFFF;
}
.community_topic_page .striped-list-item .striped-list-count-item {
  text-align: center;
  align-self: center;
}
.community_topic_page .striped-list-item .striped-list-count-item p{
  color: #72848E;
  font-size: 12px;
  margin: 0;
}
@media (max-width:767px){
  .community_topic_page .page-header h1{
    padding: 0;
    order: 1;
    margin: 20px 0 0 0;
    width:100%;
    font-size: 28px;    
  }
  .community_topic_page .community-follow{
    margin: 0;
  }
  .community_topic_page .post-to-community {
    margin-left: 30px;
    align-self: flex-end;
    margin-top: -48px;
  }
  .community_topic_page .topic-header .dropdown{
    border:0;
  }
  .community_topic_page .topic-header {
    flex-direction: column;
    align-items: initial;
  }
  .community_topic_page .topic-header .topic-header-vote-comment{
    justify-content: flex-start;
  }
  .community_topic_page .topic-header .topic-header-vote-comment>span{
    margin-right:10px;  
    padding-left: 0 !important;    
  }
  .community_topic_page .community-header {
    margin-bottom: 20px;
  }
}
@media (max-width:480px){
  .community_topic_page .page-header h1{
    font-size: 24px;
  }  
}
@media (max-width:350px){
  .community_topic_page .community-follow{
    margin: 0;
    width: auto;
    align-self: center;
  }
  .community_topic_page .post-to-community {
    align-self: center;
    margin: 20px 0 0 0;
  }
}
/*Redesigning community_topic_page.hbs CSS starts 17-Nov-2020 */
.community_topic_page .sub-nav {
/*     margin-bottom: 50px; */
}
.topic-page-body-wrapper {
    display: flex;
}
.topic-page-leftrail-wrapper {
    width: 71%;
}
.topic-page-rightrail-wrapper {
    width: calc(29% - 60px);
    margin-left: 60px;
}
.recommended-posts-wrapper, .related-communities-wrapper {
    background-color: #F5F6F8;
    border-radius: 10px;
    padding: 20px 30px 25px;
    margin-bottom: 30px;
    min-width: 230px;
}
.recommended-posts-wrapper {
    max-height: 343px;
    overflow: hidden;
}

.recommended-posts-wrapper>div {
    margin-bottom: 20px;
}
.recommended-posts-wrapper>div:last-child {
    margin-bottom: 0;
}
.recommended-posts-wrapper>div>a {
    color: #151f26;
}
.recommended-posts-wrapper>div>a>div {
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.recommended-posts-wrapper>div>p {
    color: #72848E;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.related-communities-wrapper a {
    display: block;
    margin-bottom: 15px;
}
.related-communities-wrapper a:last-child{
    margin-bottom: 0;
}
@media (max-width:1024px){
  .topic-page-body-wrapper {
      flex-wrap: wrap;
  }
  .topic-page-leftrail-wrapper {
      width: 100%;
      margin-bottom: 50px;
  }
  .topic-page-rightrail-wrapper {
      width: 100%;
      margin: 0;
      display: flex;
      justify-content: space-between;
  }
  .community_topic_page .recommended-posts-wrapper, .community_topic_page .related-communities-wrapper {
      width: 49%;
  }
}
@media (max-width:767px){
  .community_topic_page .topic-header .dropdown-status {
      min-width: 100px;
  }
  .community_topic_page .striped-list-item {
      position: relative;
  }
  .community_topic_page .striped-list-item .striped-list-info {
      position: static;
  }
  .community_topic_page .striped-list-item .striped-list-count-item p {
      display: inline-block;
      line-height: 22px;
      vertical-align: text-top;
      margin-left: 5px;
  }
  .topic-page-rightrail-wrapper {
      flex-wrap: wrap;
  }
  .community_topic_page .recommended-posts-wrapper, .community_topic_page .related-communities-wrapper {
      width: 100%;
  }
}
/*Redesigning community_topic_page.hbs CSS ends */


/*Home Page CSS Starts*/
.icon-svg-360003187914 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/502e9d2962ce2951d43045643bfbc3de411476aa.svg);
}
.icon-svg-360003200713 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/59829d41e93518463b1caba37d97a9cb0d0e0197.svg);
}
.icon-svg-360003187974 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/d9049856b8cb32980e310ba09807aacce32395b9.svg);
}
.icon-svg-360003188114 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/dcdd83d476d147e0e82ce3fe355a058a12efaaee.svg);
}
.icon-svg-360003187954 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/8a9bd1e91041a5ff5a1a828071b55766c638e671.svg);
}
.icon-svg-360003187934 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/764d7f64c1b972a1d40d7400e4165f3a48ed7d19.svg);
}
.icon-svg-360003200833 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/90b972d6d8b5325176a89bb0a65d24a843943609.svg);
}

.icon-svg-360003188054 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/43ec1ae86b3a32b7fca5c5455e58c017946a6a3b.svg);
}
.icon-svg-360003308753 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/e3a38944eb42cbd939ea621c7088e975792f7be1.svg);
}
.icon-svg-360003200733 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/7f6840638f108dda92ae8f8bbbd4fb13667d7eea.svg);
}
.icon-svg-360003188134 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/815c6d24e83799a01a4056515f19584a5982e19b.svg);
}
.icon-svg-360003200853 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/6f580e42adabac2d09bb5ce345a1c1c50f827333.svg);
}
.icon-svg-360003200753 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/31b3a5f8799a1e32fab57ec1d32b1ffedc8c223c.svg);
}
.icon-svg-360003200773 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/2e6bdca6bddd872927c1667040514061da6e8522.svg);
}
.icon-svg-360003188094 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/7ae45108936e6abc890efe1a10ec1f0f2e55d29b.svg);
}
.icon-svg-360003200813 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/75e1331e09ac33a474afd9f9f55a3df41a23ab43.svg);
}
.icon-svg-360003188034 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/8f6eea72ee78c056f2beb1dc9996a873082afeb7.svg);
}
.icon-svg-360003200793 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/2eb80459ceaea42fcd9aa3f8530dd119006923b3.svg);
}
.icon-svg-360003188074 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/7d34d620d0b94e2fd237861bb3f39f50460b88c1.svg);
}
.icon-svg-360003187994 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/7f10879d9d63e0f86ff74ad7e47edfeecc5862d4.svg);
}
.icon-svg-360003188014 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/b671e71103c1a83d21e2b32e87f3a38afb005d0d.svg);
}
.icon-svg-360004130774 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/5d2343ad5e8db3933738e8f2f6ef66015b602952.svg);
}

.icon-svg-360009151293 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/746bc92889cb3c68557bdb456ebb1b419ce94087.svg);
}
.icon-svg-360009050574 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/63f7b5cd9adbd4de045b25de63b56dabff8fa0ba.svg);
}
.icon-svg-360009151233 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/f88c72839726af1f6f45117f93c2fcd9746ebb59.svg);
}
.icon-svg-360009473734 { 
  background-image: url(//theme.zdassets.com/theme_assets/88181/3dea9b197798db183ecf51b3132e9a8b8c5e8638.svg);
}
/*Home Page CSS Ends*/

/*Redesigning new_community_post_page.hbs CSS starts */
.new_post_page .form {
  width: 600px;
  display: inline-block;
  vertical-align: top;
  margin-right: 120px;
}
.new_post_page .form.suggestion-wrapper {
  width: 400px;
  margin: 0;
}
.new_post_page .form-header {
  font-size: 36px;
  font-weight: normal;
  line-height: normal;
  margin-bottom: 10px;
}
.new_post_page .form {
  margin-top: 30px;
}
.new_post_page .form-field label{
  font-weight: bold;
  font-size: 16px;
  line-height: 32px;
  margin-bottom: 10px;
}
.new_post_page .form-field .nesty-input,.new_post_page .form-field input[type="text"],.new_post_page #hc-wysiwyg, .new_post_page #community_post_details{
  border: 1.5px solid #DDDDDD;
  background: #F5F6F8 0% 0% no-repeat padding-box;
  resize: none;
  font-size: 16px;
  font-weight: normal;
}
.new_post_page .form-field .nesty-input{
  height: 48px;
  width: 330px;
  line-height: 43px;
  padding: 0 35px 0 20px;
}
.new_post_page .form-field .nesty-input ~ .notification{
  width: 330px;
}
.new_post_page .form-field input[type="text"]{
  padding: 12px 20px 14px;
}
.new_post_page .nesty-input:after {
  content: "";  
  height: 8px;
  width: 8px;
  border: 2px solid #0061D5;
  border-top: none;
  border-left: none;
  transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0) translateY(-110%);
  right: 28px;
  top: 50%;
}
.new_post_page #community_post_details{
  height: 96px;
  border-radius: 4px;
  padding: 12px 20px;
}
.new_post_page .form footer {
  margin: 0;
  padding-top: 20px;
  text-align: right;
}
.new_post_page .form footer input[type="submit"]{
  width: 150px;
  height: 48px;
}

.new_post_page .form .suggestion-list label{
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 28px;
  line-height: 32px;
}
.new_post_page .searchbox-suggestions {
  margin-top: 10px;
  border-bottom: none;
}

.new_post_page .searchbox-suggestions li a{
	color: #0061D5;
  font-size: 16px;
}
.new_post_page .searchbox-suggestions li a:visited{
  color: #0061D5;
}
@media (max-width:767px){
  .new_post_page .form {
    width: 100%;
    margin-right:0;
    max-width: 100%;
  }
  .new_post_page .form.suggestion-wrapper {
    width: 100%;
    max-width: 100%;
    padding-top: 20px;
  }
}
@media (max-width:480px){
  .new_post_page .form-field .nesty-input{
    width: 100%;
  }
  .new_post_page .form-field .nesty-input ~ .notification{
    width: 100%;
  }
  .new_post_page .form-header{
    font-size: 26px;
  }
}

/*Redesigning new_community_post_page.hbs CSS ends */

/*Redesigning home_page.hbs CSS starts */

.box-basics-wrapper {
    background: #F5F6F8 0% 0% no-repeat padding-box;
 }
section.section.knowledge-base.center-align.page-header {
    margin: 0;
}
.Promo-content-wrapper-owl {
    margin: 0 auto;
    max-width: 1150px;
    text-align: center;
}
.Promo-content-wrapper-owl-heading{
    margin: 0;
    font-size: 36px;
    font-weight: normal;
}
.promo-content-item {
    display: inline-block;
    position: relative;
    padding: 20px;
}
.Promo-content-wrapper-owl .promo-content-item .button {
    width: auto;
    position: absolute;
    bottom: 50px;
    left: 80px;
    color: #C3D1D9;
    border: none;
    font-size: 16px;
    background-color: transparent;
}
.Promo-content-wrapper-owl .owl-carousel .owl-item img {
    display: inline-block;
}
.Promo-content-wrapper-owl .content-left-inner, .Promo-content-wrapper-owl .content-right-inner {
    background: #003C84 0% 0% no-repeat padding-box;;
    margin: 0 !important;   
	  padding: 30px;
    height: 342px;
    width: 240px;
    color: #fff;
    border-radius: 8px;
    padding-top: 40px;
    -webkit-box-shadow: 0px 18px 18px -3px #D3D3D3;
    -moz-box-shadow: 0px 18px 18px -3px #D3D3D3;
    box-shadow: 0px 18px 18px -3px #D3D3D3;
}

/*.Promo-content-wrapper-owl2 .content-left-inner, .Promo-content-wrapper-owl2 .content-right-inner {
    background: #003C84 0% 0% no-repeat padding-box;;
    margin: 0 !important;   
	  padding: 30px;
    height: 200px;
    width: 240px;
    color: #fff;
    border-radius: 8px;
    padding-top: 0px;
  	margin-top: -50px;
    -webkit-box-shadow: 0px 18px 18px -3px #D3D3D3;
    -moz-box-shadow: 0px 18px 18px -3px #D3D3D3;
    box-shadow: 0px 18px 18px -3px #D3D3D3;
}*/

.Promo-content {
    font-size: 16px;
  	min-height:70px;
    color: #FFFFFF;
    padding: 10px 0;
    line-height: 1.6;
}

.owl-carousel {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 20px;
    padding-bottom: 60px;
}

#home-categories .box-basics-wrapper .box-basics{
  padding-bottom: 60px;
}
#home-categories .box-basics h2{
  font-size: 36px;
  margin-top: 60px;
  margin-bottom:40px;
  font-weight:normal;
}
#home-categories .home-page-header{
  font-size: 36px;
  font-weight: normal;
  border: 0;
  text-align: center;
  padding: 0;
}

#home-categories .blocks-list{
  justify-content: center;
  margin: 0;
}
#home-categories .blocks-item{
  flex: 0 20%;
  margin: 0;
}
@media (max-width:767px){
  #home-categories .blocks-item{
    flex: 0 33%;
  }  
}
@media (max-width:480px){
  #home-categories .blocks-item{
    flex: 0 100%;
  }  
}
#home-categories .blocks-item .blocks-item-link{
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-color: transparent;
}
#home-categories .product-icon {
  margin: 0;
  min-width: 40px;
  height: 56px;
  width: 56px;
}
#home-categories .blocks-item-title{
  margin: 20px 0 8px;
  line-height: normal;
  text-align: center;
  font-weight: bold;
  background-color: transparent;
  width: 100%;
}
#home-categories .product-icon:hover, #home-categories .product-icon:focus{
  filter: none;
}
.Promo-content-wrapper-owl>h2{
  font-size:36px;
  font-weight:normal;
  margin: 0;
}
/*Redesigning home_page.hbs CSS ends */

/* Redesigning community_topic_list_page.hbs CSS starts */
.section.hero{
  padding-top: 45px;
  padding-bottom: 50px;
}
.section.hero .hero-inner h1{
  font-size: 48px;
  line-height: 20px;
  font-family: lato;
  white-space:normal;
  font-weight: normal;
}
@media (max-width:380px){
  .section.hero .hero-inner h1{
    font-size: 36px;
  }
}
.section.hero .hero-inner .welcome-text{
  color: #fff;
  font-size: 24px;
  margin-bottom: 30px;
}
.section.hero .hero-inner .search{
 	width:510px;
  margin: 0 auto;
}
@media (max-width:767px){
  .section.hero .hero-inner .search{
    width:100%;
  }
}
.section.hero .hero-inner .search input[type="search"]{
  height: 48px;
  border: 0;
  background-color: #FFFFFF;
  border-radius: 4px;
  font-size: 16px;
  padding-bottom: 6px;
} 
.section.hero .hero-inner .search input[type="search"]::-ms-clear {  
  display: none; 
  width : 0; 
  height: 0; 
}
.section.hero .hero-inner .search input[type="search"]::-ms-reveal { 
  display: none;
  width : 0;
  height: 0;
}

/* clears the 'X' from Chrome */
.section.hero .hero-inner .search input[type="search"]::-webkit-search-decoration,
.section.hero .hero-inner .search input[type="search"]::-webkit-search-cancel-button,
.section.hero .hero-inner .search input[type="search"]::-webkit-search-results-button,
.section.hero .hero-inner .search input[type="search"]::-webkit-search-results-decoration { 
  display: none; 
}

.section.hero .hero-inner .search::before {
    background-color: #FFFFFF;
    color: #B8BBBD;
}
  
.topic_list_page .recent-activity-header{
	font-size: 36px;
  font-weight: normal;
  margin-bottom: 40px;
}
.topic_list_page .recent-activity-item-parent{
	font-size: 20px;
  font-weight: bold;
  word-break: break-word;
  word-wrap: break-word;
}
.topic_list_page .recent-activity-item-link, .topic_list_page .recent-activity-item-time, .topic_list_page .recent-activity-item-comment{
	color: #72848E;
  font-size: 16px;
  font-weight: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topic_list_page .recent-activity-item-comment span::before{
  content: " ";
  height: 18px;
  width: 18px;
  display: inline-block;
  padding: 0 5px;
  vertical-align: middle;
  background: url('//theme.zdassets.com/theme_assets/88181/c55ce9889aa1fc6ded8d0996fff5334bc79c0f3c.png') center no-repeat;
  background-size:contain;
}
/* .topic_list_page .recent-activity-item-comment.comment-count-zero span::before{
  background: url('//theme.zdassets.com/theme_assets/88181/342585bb44f7d4e81be6a8779a5a30f55dbdc62b.png') center no-repeat;
  background-size:contain;  
} */
.topic_list_page .recent-activity-item-comment span{
  color: rgba(0, 97, 213, 1);
}
/* .topic_list_page .recent-activity-item-comment.comment-count-zero span{
  color: #72848E;
} */

.topics-list-wrapper {
    display: flex;
}
.topic-list-page-leftrail-wrapper {
    width: 68%;
}
.topic-list-page-rightrail-wrapper {
    width: calc(32% - 30px);
    margin-left: 30px;
    margin-bottom: 30px;
}
.topic_list_page .recent-activity-item {
    border: 1px solid transparent;
    border-bottom: 1px solid #ddd;
    padding: 20px;
}
.topic_list_page .recent-activity-item:hover {
    background-color: #F4F9FF;
    border: 1px solid #D8E6F9;
    border-radius: 10px;
}
@media (max-width:1199px){
  .topics-list-wrapper {
      flex-wrap: wrap;
  }
  .topic-list-page-leftrail-wrapper {
      width: 100%;
      margin-bottom: 50px;
  }
  .topic-list-page-rightrail-wrapper {
      width: 100%;
      margin: 0;
      margin-bottom: 50px;
      display: flex;
      justify-content: space-between;
  }
  .topic_list_page .recommended-posts-wrapper, .topic_list_page .related-communities-wrapper {
      width: 49%;
  }
}
@media (max-width:767px){
  .topic-list-page-rightrail-wrapper {
      flex-wrap: wrap;
  }
  .topic_list_page .recommended-posts-wrapper, .topic_list_page .related-communities-wrapper {
      width: 100%;
  }
}
@media (min-width: 768px){
  .topic_list_page .recent-activity-item-meta{
    margin-top: -20px;
  }
}

.topic_list_page .activity{
  border-top: none;
  padding-top: 0;
  padding-bottom: 30px;
}
.topic_list_page .recent-activity-controls {
    padding-top: 30px;
    text-align: center;
    color: #0061D5;
}
.topic_list_page .recent-activity-controls a {
    color: #0061D5;
    font-size: 16px;
}

.cards-wrapper {
  background-color: #F5F6F8;
  padding: 60px 0;
}
.cards-wrapper h2 {
  text-align: center;
  font-size: 36px;
  font-weight: normal;
  margin-bottom: 20px;
}
.welcome-cards{
  text-align: center;
}
.welcome-card{
  border-radius: 8px;
  padding: 22px 30px 30px;
  width: 240px;
  -webkit-box-shadow: 0px 15px 25px 0px #D3D3D3;
  -moz-box-shadow: 0px 15px 25px 0px #D3D3D3;
  box-shadow: 0px 15px 25px 0px #D3D3D3;
  display: inline-block;
  margin: 20px 15px;
  min-height: 214px;
  vertical-align: top;
  background: #fff;
}
.welcome-card.head-box-local {
  width: calc(100% - 100px);
  text-align: center;
  margin-left: 0;
  margin-right: 0;
}
.welcome-card.head-box-local ul {
  column-count: 4;
  column-gap: 50px;
  text-align: center;
}
@media (max-width: 990px) {
  .welcome-card.head-box-local ul {
    column-count: 3;
  } 
}
@media (max-width: 767px) {
  .welcome-card.head-box-local ul {
    column-count: 2;
  }
  .welcome-card.head-box-local {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .welcome-card.head-box-local ul {
    column-count: 1;
  }
  .welcome-card.head-box-local {
    width: 240px;
  }
}
.welcome-card .heading h3{
  display: inline-block;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: bold;
}
.welcome-card .heading-icon{
  height: 20px;
  width: 20px;
  display: inline-block;
  vertical-align: text-bottom;
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.welcome-card .heading-icon.welcome{
  background-image: url('//theme.zdassets.com/theme_assets/88181/1d15e9f1931ab4cc540169175f92de4e9f820c0a.svg');
}
.welcome-card .heading-icon.developer-community{
  background-image: url('//theme.zdassets.com/theme_assets/88181/5d92682f5ea720564c1443535f76da6e5abfc52f.svg');
}
.welcome-card .heading-icon.product{
  background-image: url('//theme.zdassets.com/theme_assets/88181/b1949ee6f2dd70b2b83d5d3aaa904ad3a5dda317.svg');
}
.welcome-card .heading-icon.box-local{
  background-image: url('//theme.zdassets.com/theme_assets/88181/ed96466938f061570d7e0220d8fb10e7eadf8b6e.svg');
}
.welcome-card .heading-icon.certifications{
  background-image: url('//theme.zdassets.com/theme_assets/88181/55e09699128d841dfa68dece35c79b776bfdcd74.svg');
}  
.welcome-card li{
  padding: 8px 0;
}
.welcome-card .card-item-link{
  margin: 20px 0;
  color: #0061D5;
  font-size: 16px;
}
.community-footer-title{
  margin-bottom: 36px;
}
.community-footer a.button-large[role="button"]{
  width:240px;
  height:48px;
}
.community-footer {
  padding-top: 62px;
}
.footer {
  margin-top: 80px;
}
/* Redesigning community_topic_list_page.hbs CSS ends */

/* Redesigning Header CSS starts */

.header-container {
  padding: 0 20px;
}
.header {
  max-width: none;
}
.user-info > [role="button"]::after{
  padding-right:0;
  opacity: 0.6;
}
.nav-wrapper .center-nav>a, .nav-wrapper .center-nav .dropdown>a, .nav-wrapper .center-nav .dropdown-res>a {
  font-size:16px;
  font-weight:bold;
  opacity: 0.6;
}
.nav-wrapper .center-nav>a:hover, .nav-wrapper .center-nav .dropdown:hover>a, .nav-wrapper .center-nav .dropdown-res:hover>a, .nav-wrapper .center-nav>a:focus, .nav-wrapper .center-nav .dropdown:focus>a, .nav-wrapper .center-nav .dropdown-res:focus>a, .nav-wrapper .center-nav>a:active, .nav-wrapper .center-nav .dropdown:active>a, .nav-wrapper .center-nav .dropdown-res:active>a{
  opacity: 1;
}
.logo img {
  height: 29px;
  max-height: 29px;
}
.box-status-label{
  font-size:16px;  
  font-weight:bold;
}
#user #user-name{
  font-size:16px;  
  font-weight:bold;
  margin-left: 8px;
}
.user-avatar {
  height: 32px;
  width: 32px;
}
.user-info {
  margin-left: 20px;
}
.user-info .btn {
    padding-bottom: 0;
}
.nav-wrapper .center-nav .dropdown:after,.nav-wrapper .center-nav .dropdown-res:after {
  color: #FFFFFF;
  content: "\e75c";
  display: inline-block;
  font-family: "entypo";
  bottom: 0;
  left: 50%;
  opacity: 0.6;
  position: absolute;
  line-height: 1.8;
  transform: translateX(-50%);
}
.nav-wrapper .center-nav .dropdown:hover:after,.nav-wrapper .center-nav .dropdown-res:hover:after{
  display:none;
}

.dropdown-mobile-container .dropbtn {
  padding: 0 !important;
}
@media (max-width: 999px) {
  .nav-wrapper .center-nav .dropdown:after, .nav-wrapper .center-nav .dropdown-res:after{
    display:none;
  }
  .header .nav-wrapper {
    width: auto;
  }
}
@media (min-width: 1000px) {
  .user-nav[aria-expanded="true"]{
    display:none;
  }
}
/* Redesigning Header CSS ends */

.article-container .product-article-label{
  margin-bottom: 30px;
  border:1px solid rgba(0, 97, 213, 1);
  display: inline-block;
  padding: 2px 10px;
  background-color: rgba(0, 97, 213, 1);
  color: #FFFFFF;
}
/* Hiding article CSS */
.article-comment-count{
 display:none;
}

/* Site Status Design on Support Options Page */
#box-incident, #box-incident2 {
  background: #ffe6e6 0% 0% no-repeat padding-box;
  border-radius: 8px;
  box-shadow: 0px 18px 18px -3px #D3D3D3;
  display:none;margin-top:20px;margin-bottom:20px;border:1px solid #ccc;padding:2px;
  font-size:16px;
}

#support-delays {
  background: #ffe 0% 0% no-repeat padding-box;
  border-radius: 8px;
  box-shadow: 0px 18px 18px -3px #D3D3D3;
  padding:10px;border:1px solid #ccc;margin-top:10px;
}


/* Article Page CSS for Code block */
.article-body pre {
    white-space: pre-wrap;
    width: 870px;
}
/* Article Page CSS for Print block */
.print-button-wrapper {
    float: right;
}

@media print {
  body {
    margin: 0;
    color: #000;
    background-color: red;
  }
  .article-votes, .article-footer, .comment-form, .dropdown.comment-sorter, .comment-actions-container, #preview-bar-container, #vue-header, .sub-nav, .article-sidebar, .footer, .article-more-questions, .article-return-to-top, .comment-meta .meta-data, .comment-callout, .article-relatives, .comments {
    display: none;
  }
  .comment-overview {
    border: none;
	}
}

/* Requirement 1 - CSS Requests starts 
.article-content .article-body {
  font: normal normal 12pt/18pt 'Lato', sans-serif;
//   margin-right: 200pt; 
//   margin-left: 50pt; 
}
.article-container .article .article-body h1 {
  font: normal bold 24pt 'Lato', sans-serif;
    margin-bottom: 0;
}
.article-container .article .article-body h2 {
  font: normal bold 18pt 'Lato', sans-serif;
  //margin-bottom: 24pt;
    margin-bottom: 0;
    margin-top: 24pt;
}
.article-container .article .article-body h3 {
  font: normal bold 14pt 'Lato', sans-serif;
 // margin-bottom: 16pt;
    margin-bottom: 0;
    margin-top: 17pt;
}
.article-container .article .article-body h3, .article-container .article .article-body h2 {
    margin-bottom: -16px;
}
.article-container .article .article-body h3 *, .article-container .article .article-body h2 * {
    //margin-bottom: 14px;
    display: inline-block;
}
.article-body table, th, td {
    margin-top: 20px;
}
.article-container .article .article-body h4 {
  font: normal bold 12pt 'Lato', sans-serif;
//  margin-bottom: 12pt;  
    margin-bottom: 0;
    margin-top: 12pt;
}
.article-container .article li {
  font: normal normal 12pt 'Lato', sans-serif;
}
 Requirement 1 - CSS Requests ends */

/*TOC - Leading of bulleted lines line height*/
  .toc {
  margin: 0 auto;
   // width: fit-content;
  }
.toc .article-body ul li {
  line-height: 24px;
}

.article-body .toc ul {
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
}

.article-body .toc ul ul {
    list-style-type: none;
    margin-left: 20px;
}
.article-body .toc ul li {
  margin-top: 10px;
}

.toc a {
    cursor: pointer;
}

/*  			Subscription CSS Start      */
.subscribe-wrapper-outer {
  position: absolute;
  display: inline-block;
  right: 0;
  z-index: 9;
}
.subscribe-wrapper {
  width: 220px;
  display: inline-block;
}
.subscribe-select-block {
  cursor: pointer;
  position: relative;
}
.subscribe-select {
  width: 100%;
  position: relative;
  z-index: -1;
  border: 0;
  border-radius: 4px;
  height: 38px;
  background: #0061D5;
  color: #FFFFFF;
  padding: 6px 30px 6px 25px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.subscribe-select-block:before {
  content: '';
  display: inline-block;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #FFFFFF;
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
}
.subscribe-select-block:focus{
  outline: 0;
}
.subscription-box {
  width: 220px;
  display: flex;
  flex-direction: column;
  border: 1px solid #BFBFBF;
  border-top: none;
  background-color: #FFFFFF;
  position: absolute;
  z-index: 99;
}
.subscription-box:hover,.subscription-box:focus{
  display: flex !important;
  outline: 0;
}
.subscription-box .subscribe {
  display: flex;
  align-items: center;
  margin: 2px 5px;
}
.subscription-box .subscribe label {
  margin: 0 8px;
  cursor: pointer;
  text-align: left;
}
.subscription-box .subscribe input[type="checkbox"] {
  cursor: pointer;
}
@media (max-width: 999px) {
  .subscribe-wrapper-outer {
    position: static;
    display: block;
    text-align: right;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .subscribe-wrapper-outer {
    text-align: center;
    margin-bottom: 15px;
  }
  .subscribe-wrapper {
    width: 100%;
    display: block;
  }
  .subscribe-select {
    padding: 6px 30px 6px 13px;
  }
  .subscribe-select-block:before {
    right: 12px;
  }
  .subscription-box {
    width: 100%;
  }
}
#subscribe-dialog-box{
  width: 500px;
  height: 150px;
  display:inline-block;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background-color: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #BFBFBF;
  z-index: 999;
  padding: 40px 20px 50px;
  display: none;
}
#subscribe-dialog-box-close{
	position: absolute;
  right: 10px;
  top: 10px;
  line-height: 1;
  cursor: pointer;
}
#subscribe-dialog-box-button-wrapper{
  text-align: right;
}
#subscribe-dialog-box-button{
  background: #0061D5;
  color: #FFFFFF;
  border: 0;
  border-radius: 4px;
  position: absolute;
  right: 15px;
  bottom: 15px;
  font-size: 14px;
  line-height: normal;
  padding: 4px 8px;
}
@media (max-width: 767px) {
  #subscribe-dialog-box{
    width: 400px;
  }
}
@media (max-width: 500px) {
  #subscribe-dialog-box{
    height: auto;
    width: auto;
    left: 20px;
    right: 20px;
    transform: translateY(-50%);
  }
}
/*  			Subscription CSS End      */


/* CSS for gray out the filter option on topic page */

span.dropdown.dropdown-status .dropdown-menu a:nth-child(4) {
    pointer-events: auto;
    opacity: 1;
}

span.dropdown.dropdown-status .dropdown-menu a:nth-child(1) {
    pointer-events: auto;
    opacity: 1;
}

span.dropdown.dropdown-status .dropdown-menu a {
    pointer-events: none;
    opacity: 0.2;
}

/* CSS ends */

/* back to top CSS starts */
.back-to-top{
    position: fixed;
    bottom: 24px;
    right: 32px;
    z-index: 999;
    border-radius: 25px;
    padding: 6px 20px;
    font-size: 14px;
    line-height: normal;
    letter-spacing: 0.1px;
    border: 1px solid #DADCE0;
    background-color: #FFFFFF;
    display: none;
    text-align: center;
}
.back-to-top,.back-to-top:hover,.back-to-top:active,.back-to-top:focus,.back-to-top:visited{
    color: #151f26;
}
@media (max-width: 767px){
    .back-to-top{
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: 30px;
    }
}
/* back to top CSS ends */

/*Article page dates*/
.meta-data.product-page::after {
  display: none;
}