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

body {
  background-color: #f4f6f7;
  color: rgba(43, 45, 54, 1);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

main {
  max-width: 1640px;
  background-color: #fff;
  margin: 0 auto;
}
h1, h2, h3, h4, h5 {
  margin-top: 0;
  font-family: 'Inter', sans-serif;
}

h1 {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  line-height: 2.8rem;
}

@media (max-width: 702px) {
  h1 {
    font-size: 26px;
  }
}

h2 {
 	font-family: 'Inter', sans-serif;
 	font-size: 28px;
	line-height: 2.4rem;
}

h3 {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  line-height: 2.0rem;
  letter-spacing: 2.4px;
}

h4 {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  line-height: 1.8rem;
  letter-spacing: 2.4px;
}
h5 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.7rem;
  letter-spacing: 2px;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover, a:active, a:focus {
  text-decoration: underline;
  color: #0174d4;
  cursor: pointer;
}
h6 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1rem;
  margin-top: 0;
}

input,
textarea {
  color: #000;
  font-size: 0.875rem;
}

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

input:focus {
  border: 1px solid rgba(39, 53, 83, 1);
}

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

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url(/hc/theming_assets/01HZPG671NXJVQRBRK8R2W9YMP) 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(39, 53, 83, 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(39, 53, 83, 1);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 5%;
  /*text-align: center;*/
  padding-top: 10px;
}

@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;
  font-family: 'Inter', sans-serif;
}

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

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

/***** Buttons *****/
.button, [role="button"] {
  border: 1px solid rgba(39, 53, 83, 1);
  font-family: 'Inter', sans-serif;
  border-radius: 4px;
  color: rgba(43, 45, 54, 1);
  cursor: pointer;
  display: inline-block;
  font-size: 0.75rem;
  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(39, 53, 83, 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(39, 53, 83, 1);
  color: rgba(43, 45, 54, 1);
  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: #06090e;
  border-color: #06090e;
}

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

.button-large, input[type="submit"] {
  background-color: rgba(39, 53, 83, 1);
  border: 0;
  border-radius: 4px;
  color: rgba(43, 45, 54, 1);
  font-size: 0.875rem;
  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: #06090e;
}

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

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

.button-secondary:hover, .button-secondary:focus, .button-secondary:active {
  color: rgba(43, 45, 54, 1);
  border: 1px solid #ddd;
  background-color: #ebeff1;
}

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

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

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

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

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

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

.table td {
  display: block;
}

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

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

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

/***** Forms *****/
.form {
  
  max-width: 650px;
  text-align: Left;
  margin: auto auto;
  background-color: #dcddde;
  padding: 5%;
}

.form span a {
  color: #0058a1;
}

.form span:hover {
  cursor: pointer; 
}

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

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

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

.form-field input:focus {
  border: 1px solid rgba(39, 53, 83, 1);
}

.form-field input[type="text"] {
  border: 1px solid #ddd;
  /**subject/email**/
}

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

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

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

.form-field .nesty-input:focus {
  border: 1px solid rgba(39, 53, 83, 1);
  text-decoration: none;
}

.form-field .hc-multiselect-toggle:focus {
  outline: none;
  border: 1px solid rgba(39, 53, 83, 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: #585c6f;
  margin-left: 4px;
}

.form-field p {
  color: #585c6f;
  font-size: 12px;
  margin: 5px 0;
  display: none;
}
.form-field label[for=request-attachments] {
  display: none;
}

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

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

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

.form input[type=submit]{
  font-family: 'Inter', sans-serif;
  font-style: italic; 
  font-size: 24px;
  Line-height: 28.8px;
  Letter-spacing: 2.4px;
  color: #F4F6F7;
  Background-color: #e3203b;
  border-radius: 30px;
  Height: 50px;
  min-width: 200px;
  text-transform: uppercase;
}

.form input[type=submit]:focus {
  border: 3px solid rgba(39, 53, 83, 1);
}

.upload-dropzone {
  Background-color: #F4F6F7;
}

.upload-dropzone:hover {
  cursor: pointer;
}

.upload-dropzone input[type=file]:hover {
  cursor: pointer; 
}

.upload-dropzone[data-hc-focus=true]{
  border-color: rgba(39, 53, 83, 1);
}

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

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

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

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

.form-spacer {
  height: 90px;
}

/***** Header *****/
.header {
  max-width: 1640px;
  background-color: #fff;
  margin: 0 auto;
  padding: 0 10%;
  position: relative;
  align-items: center;
  display: flex;
  height: 71px;
  justify-content: space-between;
}

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

@media (max-width: 420px) {
  .header{
    padding: 0 5%;
  }
}

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

@media (max-width: 767px) {
  .logo img {
    width: 160px;
  }
}
@media (max-width: 470px) {
  .logo img {
    width: 111px;
  }
}

.user-nav {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
}
.user-nav .submit-a-request {
	width: 50%;
  display: inline-block;
}

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

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

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

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

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

@media (max-width: 500px) {
  .nav-wrapper {
    text-align: right;
  }
}

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

.nav-wrapper a:hover, .nav-wrapper a:focus, .nav-wrapper a:active {
  background-color: transparent;
  color: rgba(132, 183, 236, 1);
  text-decoration: underline;
}

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

a.login {
  color: #000;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  margin-left: 18px;
}

a.login:hover {
  color: #e3203b;
}

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

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

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

.nav-wrapper .icon-menu:hover, .nav-wrapper .icon-menu:focus, .nav-wrapper .icon-menu:active {
  background-color: transparent;
  color: rgba(132, 183, 236, 1);
}

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

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

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

.user-info > [role="button"] {
  border: 0;
  color: #000000;
  min-width: 0;
  padding: 0;
  white-space: nowrap;
}

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

.user-info > [role="button"]::after {
  color: #000000;
  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(39, 53, 83, 1);
  border: 2px solid #fff;
  border-radius: 50%;
  bottom: -4px;
  color: rgba(43, 45, 54, 1);
  content: "\1F464";
  font-size: 14px;
  height: 14px;
  line-height: 14px;
  position: absolute;
  right: -2px;
  text-align: center;
  width: 14px;
}

/***** Footer *****/
.navy-footer {
  height: 250px;
  max-width: 1640px;
  background-color: #273553;
  color: #fff;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  line-height: 48px;
  margin: auto auto;
  padding: 30px 63px 0;
}

@media (max-width: 420px) {
  .navy-footer {
    padding: 20px 0;
  }
  .tagline {
    font-size: 36px;
  }
  .tagline-main {
    font-size: 18px;
  }
}

@media (max-width: 1131px) {
  .navy-footer {
    padding: 40px 0;
  }
}

.tagline {
  padding: 0;
}

.tagline-main {
  font-family: 'Inter', sans-serif;
  font-size: 36x;
  line-height:24px;
  color: #f4f6f7;
  letter-spacing: 2.8px;
  padding-top: 10%;
}

.stars {
  height: 250px;
  max-width: 1131px;
  background-color: #273553;
  color: #fff;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  line-height: 48px;
  margin: auto auto;
  padding: 40px 0;
  
}

.grey-star {
$assets-greystar-png;
  margin: 5px;
  margin-left: 0px;
 margin-right: 30px;
  
}

.grey-star { 
  $assets-greystar-png;
  margin: 5px;
  margin-left: auto;
  margin-right: auto;
}

.grey-star {
    $assets-greystar-png;
  margin: 5px;
  margin-left: 30px;
  margin-right:0px;
}


.tagline-timestar{
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  color: #cacdcf;
margin-left: 0px;
  margin-right:auto;

}
.tagline-waystar{
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  color: #cacdcf;
margin-left: auto;
  margin-right:auto;
}
.tagline-beststar{
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  color: #cacdcf;
  margin-left: auto;
  margin-right:0px;
}

.footer {
  margin-top: 0;
  padding: 30px 0;
  background-color:#273553;
  height: 350px;
  max-height: initial;
  max-width: 1640px;
  margin: auto auto;
  background-image: url(/hc/theming_assets/01HZPG628HZWN1GWS4RV8Q5N9R);
  background-size: 25%;
  background-repeat: no-repeat;
  background-position: top left;
}

@media (max-width: 767px) {
  .footer {
    background-size: contain;
  } 
}

.footer hr {
  max-width: 50%;
}

.footer a {
  color: #585c6f;
}

.footer-inner {
  max-width: 1640px;
  padding: 0 0;
  display: flex;
  justify-content: center;
  margin-top: 80px;
  margin-bottom: 30px;
}

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

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

.user-nav {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: #fff;
  margin-top: 1em;  
}

.footer .user-nav {
  position: inherit;
}

a.submit-a-request {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  Line-height: 20px;
  color: #fff;
  
}
a.submit-a-request:hover, a.submit-a-request:focus {
  color: #fff;
  text-decoration: underline;
}
/***** Breadcrumbs *****/
.breadcrumbs {
  margin: 0 0 15px 0;
  padding: 0;
}

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

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

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

.breadcrumbs li a:visited {
  color: #014180;
}

/***** Search field *****/
.search {
  font-family: 'Inter', sans-serif;
  color: #f4f6f7;
  position: relative;
  z-index: 1;
}

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

.submit_search {
  background-color: #e3203b;
  letter-spacing: 2px;
  font-family: 'Inter', sans-serif;
  color: #f4f6f7;
  font-size: 30px;
  border: 1px solid #fff;
  border-top: 0;
  border-bottom: 0;
  border-right:0;
  height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  z-index:2;
  min-width: 200px;
  padding-left: 20px;
  padding-right: 20px;
}


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

.search input[type="search"]:focus {
  border: 1px solid rgba(39, 53, 83, 1);
  color: #555;
  font-family: 'Inter', sans-serif;
}

.search::before {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  color: #777;
  content: url(/hc/theming_assets/01HZPG65NVCNXYD58PMCVN18GF);
  font-size: 18px;
  position: absolute;
  left: 15px;
}
@media (max-width: 1094px) {
  .search input[type="search"] {
    height: 40px;
    font-size: 14px;
  } 
  .search input[type="search"]::placeholder {
    color: #f4f6f7;
  }  
  .submit_search {
    height: 40px; 
    font-size: 12px;
    min-width: 100px;
    border: 0;
  }
}
@media (max-width: 770px) {
  .search::before {
    font-size: 14px;
  }
}

[dir="rtl"] .search::before {
  right: 15px;
  left: auto;
}
/*
.search-full input[type="search"] {
  border: 1px solid #fff;
}
*/
/***** Hero component *****/
.hero {
  background-color: #273553;
  background-size: cover;
  height: 250px;
  padding: 0 20px;
  text-align: center;
  background-image: url(/hc/theming_assets/01HZPG628HZWN1GWS4RV8Q5N9R);
  background-size: 40%;
  background-repeat: no-repeat;
  background-position: bottom right;
  background-image width: 80%;
}



@media (max-width: 420px) {
  .hero {
    padding-top: 25px;
  }
}

.main-title {
  font-family: 'Inter', sans-serif;
	/*font-size: 48px;*/
	color: #F4F6F7;
  padding-top: 48px; 
  height: 48px;
}

@media (max-width: 420px) {
  .main-title {
    padding-top: 24px;
  }
}

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

@media (max-width:420px) {
  .hero-inner {
    max-width: 100%;
  }
}

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

@media (min-width: 768px) {
  .page-header {
    align-items: baseline;
    flex-direction: row;
    display: block;
    text-align: center;
  }
}

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

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

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

.page-header-description {
  font-family: 'Inter', sans-serif
  font-style: italic;
  font-weight: 300;
  margin: 0 0 30px 0;
  word-break: break-word;
}

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

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

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

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

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

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

}

/***** Blocks *****/
/* Used in Homepage#categories and Community#topics */

.Browse-Topics{
  font-size: 48px;
}

.blocks-list {
	display: flex;
  justify-content: center;
  list-style: none;
  flex-wrap: wrap;
}

.blocks-list li + li {
  border-left: solid;
  border-width: 2px;
  border-color: #F4F6F7;
}

@media (max-width: 1299px) {
  .blocks-list li+li {
    border-left: none;
  }
}

@media (max-width: 666px) {
  .blocks-list li+li {
    border-top: solid;
    border-width: 2px;
  	border-color: #F4F6F7;
    border-left-color: #F4F6F7;
  }
}

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

@media (max-width: 770px) {
  .blocks-list {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 666px) {
  .blocks-list {
    display: flex;
    text-align: center;
    justify-content: center;
  }
}

.blocks-item {
  box-sizing: border-box;
  color: #6598cd;
  display: flex;
  flex: 1 0 340px;
  flex-direction: column;
  justify-content: center;
  /*margin: 0 0 30px;*/
  max-width: 300px;
  text-align: center;
}
/*
@media (min-width: 768px) {
  .blocks-item {
    margin: 0 0px 30px;
  }
}
*/
@media (max-width: 666px) {
  .blocks-item {
    margin: auto auto;
  }
  .blocks-item-link {
    padding: 20px 0;
  }
  .blocks-item-description:not(:empty) {
    margin: 10px 0;
  }
}


.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(43, 45, 54, 1);
}

.blocks-item-link {
  color: rgba(39, 53, 83, 1);
  padding: 20px 15px;
}

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

.blocks-item-title {
  margin-top: 14px;
  margin-bottom: 14px;
  text-align: center;
  color: #2b2d36;
  word-spacing: 9999rem;
   flex: 1; 
}

@media (max-width: 770px) {
  .blocks-item-title {
    font-size: 18px;
     flex: 1; 
  }
}

.blocks-item-description {
  font-weight: 300;
  color: #2B2D36;
   margin: 0;
}

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

@media (max-width: 770px) {
  .helpful-tips-icon {
    height: 36px;
    flex: 1; 
  }
  .mobile-interview-icon {
    height: 36px;
     flex: 1; 
    
  }
  .interviewing-process-icon {
    height: 36px;
     flex: 1; 
  }
  .computer-interview-icon {
    height: 36px;
     flex: 1; 
  }
}

.learn-more {
    /*background-color: #ed1c2c;
  	border: 1px solid #ed1c2c;
  	border-radius: .3rem;*/
  	color: #ea1929;
   	flex: 1;
  	font-family: 'Inter', sans-serif;
  	font-size: 18px; /* 24px; */
  	letter-spacing: 1.5px; /* 2.4px; */
  	line-height: 36px; /* 48px; */
  	/*min-width: 220px;*/
}

.arrow-right{
  border: solid #e3203b;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  margin-bottom:3px;
  margin-left: 5px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

@media (max-width: 770px) {
  .learn-more {
    font-size: 14px;
    line-height: 36px;
  }
}

.learn-more:hover, .learn-more:focus, .learn-more:active {
  text-decoration: underline;
   
}


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

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

/** Announcement Section **/
/*.section.announcement-banner {
  background-color: #84b7ec;
  text-align: center;
}
.section.announcement-banner .container {
	width: 100%;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.section.announcement-banner .container .grid {
  flex-grow: 0;
  max-width: 100%;
  flex-basis: 100%;
  padding: 15px 0;
}
.section.announcement-banner .container .grid p {
  font-size: 20px;
  line-height: 1.56;
  margin: 0;
}
.section.announcement-banner .container .grid a {
  font-size: 20px;
  line-height: 1.56;
  margin-bottom: 0;
  text-decoration: underline;
}
.section.announcement-banner .container .grid a:hover {
  color: #e3203b;
  text-decoration: none;
}
*/
/** Knowledge-Base Section **/
.section.knowledge-base {
  padding: 40px 0;
  text-align: center;
}

.section h2 {
  text-align: center;
}
.section.article  {
  background-color: #CACDCF;
  padding: 0 20px;
  text-align: center;
}
.section .articles {
  padding: 30px 0;
  color: #2B2D36;
}
.section .articles h2 {
  margin-bottom: 20px;
  text-align: center;
}

.section .articles .promoted-articles-item a {
  display: wrap;
  padding: 0 10px;
  color: #2B2D36;
}
.section .articles .promoted-articles-item a:hover {
  color: #2B2D36;
  text-decoration: underline;
}
.section .articles .promoted-articles {
  display: wrap;
  flex-direction: column;
  flex-wrap: wrap;
  color: #cacdcf;
}

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

.section .articles .promoted-articles-item {
  flex: 1 0 auto;
}
.section .articles .promoted-articles-item {
    align-self: flex-end;
    flex: 0 0 auto;
    padding-right: 20px;
    width: auto;
    color: #e3203b;
}
@media (min-width: 1024px) {
.section .articles .promoted-articles-item {
    padding-right: 0;
  }
  [dir="rtl"] .promoted-articles-item {
    padding: 0 30px 30px;
  }
}

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

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

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

.section.video {
  padding: 0 20px;
  background-image: url(/hc/theming_assets/01HZPG61758S5S02VEGKY99ZSF);
  /*background-image: url(/hc/theming_assets/01HZPG628HZWN1GWS4RV8Q5N9R);*/
  background-size: 40%;
  background-repeat: no-repeat;
  background-position: bottom left;
}
.section.term {
  background-color: #566068;
  padding: 0 20px;
  text-align: center;
}
.section .terms {
  padding: 30px 0;
  color: #fff;
}
.section .terms h2 {
  margin-bottom: 20px;
  text-align: center;
}
.section .terms span {
  margin: 10px 20px;
  text-align: center;
  width: 25%;
  display: inline-block;
}
.section .terms span img {
    margin: 0 auto;
    display: block;
}

@media (max-width: 767px) {
	.section .terms span {
  	width: 100%;
    margin: 0 0 10px 0;
  }
}
.how-to {
  /*height: 600px;
  background-color: #f4f6f7;*/
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  padding-top: 92px;
  padding-bottom: 92px;
  display: flex;
}

@media (max-width: 770px) {
  .how-to {
    display: block;
    padding-top: 46px;
    padding-bottom: 46px;
    /*height: 300px;*/
  }
}
  

.how-to-video {
  width: 50%;
  border-right: 2px solid #fff;
  text-align: Left;
  padding-right: 50px;
}

.how-to-back (max-width: 1300px) {
    height: auto;
    padding-left: 10px;
    z-index: 29;
    margin-bottom: -20px;
    position: absolute;
    float: left;
  }
}

@media (max-width: 1300px) {
  .how-to-video {
    width: 90%;
    border-right: 0;
    text-align: center;
    padding-right: 0;
    padding-left: 0;
    margin: auto auto;
    border-bottom: 2em auto solid #fff;
    z-index: 30;
  position: relative;
   float: left;   
  overflow: hide;
  }
}

@media (min-width:300px)and(max-width: 1300px)  {
  .how-to-video {
    padding-right: 0px;
    padding-left: 0;
    margin-top: 15px;
    margin-left: -15px;
      z-index: 30;
  position: relative;
    float: left;

  }
}

.how-to-video-file {
  max-width: 100%;
  max-height: 100%;
    z-index: 30;
  position: relative;
  float: left;
}


.top-articles {
  width:49%;
  padding-left: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 2em;
}

@media (max-width: 770px) {
  .top-articles {
    width: 90%;
    padding-left: 0;
    margin-top: 1.5em;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .top-articles h1 {
    text-align: center;
  }
  .top-articles-list {
    font-size: 14px;
  }
}

.article-votes-controls {
	border: none;
}

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

.community-image {
  min-height: 300px;
  background-image: url(/hc/theming_assets/01HZPG69H40E7HTMG4YP9QR1W6);
  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(43, 45, 54, 1);
  display: inline-block;
  width: 100%;
}

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

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

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

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

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

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

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

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

.recent-activity-item-comment span::before {
  color: rgba(39, 53, 83, 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: flex-end;
}

.category-content {
  flex: 1;
}

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

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

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

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

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

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

.section-tree-title a {
  color: rgba(43, 45, 54, 1);
}

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

.article-list {
  display: inline-block;
  list-style: disc;
  list-style-position: inside;
  text-align: left;
  column-count: 2;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  column-rule-style: solid;
  column-rule-width: 2px;
  column-rule-color:#dcddde;
  width: 100%;
  column-gap: 50px;
  margin: 0 auto 30px; /*36px auto 92px auto;*/
  vertical-align: top;
}

@media (max-width: 1370px) {
  .article-list {
    column-count: 2;
  }
}

@media (max-width: 767px) {
  .article-list {
    column-count: 1;
  }
}

.article-list-item {
  font-size: 18px;
  margin-bottom: 10px;
  color: #566068; 
}

.article-list-item a {
  color: rgba(43, 45, 54, 1);
}

.article-list-item a:hover {
  Text-decoration: underline;
  color: #e3203b;
}

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

.icon-star::before {
  color: rgba(39, 53, 83, 1);
  font-size: 18px;
}

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

.section-content {
  flex: 1;
  max-width: 1240px;
  margin: auto auto;
}

@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(43, 45, 54, 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;
}

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

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

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

@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: 30px;
  }
}

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

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

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

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

.article-title {
  text-align: left;
}

.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%;
  font-size: 38px / 48px;
}

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

.article-body {
  text-align: auto;
  font-size: 18px / 36px;
}

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

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

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

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

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

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

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

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

.article-body blockquote {
  border-left: 1px solid #ddd;
  color: #566068;
  font-style: italic;
  padding: 0 15px;
  font-size: 38px / 48px;
  
}

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

.article-content {
  line-height: 1.6;
  margin: 40px 0;
  word-wrap: break-word;
  font-size: 38px / 48px;
}

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

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

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

.article-comment-count .icon-comments {
  color: rgba(39, 53, 83, 1);
  content: "\1F4AC";
  display: inline-block;
  font-size: 18px;
  padding: 5px;
}

.article-sidebar {
  border-bottom: 1px solid #ddd;
  /*border-top: 1px solid #ddd;*/
  margin-bottom: 20px;
  padding: 0;
  width:25%;
  text-align: left;
}

@media (max-width: 1023px) {
  .article-sidebar {
    width: 50%;
  }
}

@media (max-width: 666px) {
  .article-sidebar {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .article-sidebar {
    border-right: 2px solid #f4f6f7;
    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(39, 53, 83, 1);
  color: rgba(39, 53, 83, 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(39, 53, 83, 1);
}

.article-vote:hover {
  background-color: #84B7EC;
}

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

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

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

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

.article-more-questions a {
  color: #0174d4;
}

.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(43, 45, 54, 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(39, 53, 83, 1);
  color: rgba(43, 45, 54, 1);
  text-decoration: none;
}

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

.sidenav-title {
  font-family: 'Inter', sans-serif;
  color: #6598cd;
  position: relative;
  font-size: 42px / 55px;
}

.sidenav-item {
  font-family: 'Inter', sans-serif;
  color: rgba(43, 45, 54, 1);
  display: block;
  font-weight: 300;
  margin-bottom: 10px;
  padding: 5px;
}

.sidenav-item.current-article, .sidenav-item:hover {
  color: #0174d4;
  text-decoration: underline;
}

.sidenav-item a[aria-selected="true"] {
  color: white;
}


.article-sidebar-item {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #e3203b;
}

.recent-articles h3, 
.related-articles h3
{
  font-size: 25px;
  color: #2B2D36;
  margin: 20px 0;
}

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

.article-subscribe {
  font-family: 'Inter', sans-serif;
  Font-size: 24px;
  line-height: 28.8px;
  letter-spacing: 2.4px;
  Height: 50px;
  min-width: 200px;
  border-radius: 30px;
  border-color: #e3203b;
  Color:#e3203b; 
  text-transform: uppercase;
  border-width: 2px;
  padding-top: 10px;
}

/***** 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(43, 45, 54, 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: #585c6f;
}

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

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

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

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

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

.share a:hover::before {
  color: rgba(39, 53, 83, 1);
}

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

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

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

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

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

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

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

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

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

.comment-callout a {
  color: rgba(39, 53, 83, 1);
}

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

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

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

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

.comment-wrapper.comment-official {
  border: 1px solid rgba(39, 53, 83, 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(39, 53, 83, 1);
}

.comment-body {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  font-family: 'Inter', 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: #2c83de;
}

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

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

.comment-body blockquote {
  border-left: 1px solid #ddd;
  color: #585c6f;
  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: #585c6f;
  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(39, 53, 83, 1);
}

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

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

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

.vote-voted::before {
  color: rgba(39, 53, 83, 1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.community-follow [role="button"]:hover::after, .community-follow [role="button"]:focus::after {
  border-color: rgba(43, 45, 54, 1);
  color: rgba(43, 45, 54, 1);
}

.community-follow [role="button"][aria-selected="true"] {
  background-color: rgba(39, 53, 83, 1);
  color: rgba(43, 45, 54, 1);
}

.community-follow [role="button"][aria-selected="true"]::after {
  border-left: 1px solid rgba(43, 45, 54, 1);
  color: rgba(43, 45, 54, 1);
}

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

.community-follow [role="button"]::after {
  border-left: 1px solid rgba(39, 53, 83, 1);
  content: attr(data-follower-count);
  color: rgba(39, 53, 83, 1);
  display: inline-block;
  font-family: 'Inter', 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(39, 53, 83, 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: rgba(132, 183, 236, 1);
  margin-bottom: 10px;
  margin-right: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.status-label-pinned, .status-label-featured, .status-label-official {
  background-color: rgba(39, 53, 83, 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-pending, .status-label-not-planned {
  background-color: #eee;
  color: #585c6f;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.post-content {
  font-family: 'Inter', 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: #2c83de;
}

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

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

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

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

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

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

.post-comment-count .icon-comments {
  color: rgba(39, 53, 83, 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 h5 {
  font-weight: 600;
}

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

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

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

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

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

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

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

.collapsible-nav-list li {
  color: rgba(43, 45, 54, 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: italic;
    padding: 15px 0;
  }
}

.collapsible-nav-list li a {
  color: rgba(43, 45, 54, 1);
  display: block;
}

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

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

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

.collapsible-nav-list li[aria-selected="true"] a {
  color: rgba(43, 45, 54, 1);
}

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

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

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

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

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

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

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

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

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

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

.collapsible-sidebar-title {
  margin-top: 30px;
}

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

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

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

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

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

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

.my-activities-sub-nav li[aria-selected="true"] {
  border-color: rgba(39, 53, 83, 1);
}

.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(39, 53, 83, 1);
  color: rgba(43, 45, 54, 1);
}

.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(39, 53, 83, 1);
  border-radius: 4px;
  color: rgba(43, 45, 54, 1);
  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: #06090e;
  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: #585c6f;
  font-size: 13px;
  font-weight: 300;
}

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

.no-activities {
  color: #585c6f;
}

/***** 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: #585c6f;
  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(39, 53, 83, 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(39, 53, 83, 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: #ebeff1;
    border: 0;
    font-size: 13px;
    flex: 0 0 auto;
    padding: 0 20px;
    width: 30%;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pagination * {
  display: inline-block;
}

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

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

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

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

.pagination li:hover:not(.pagination-current) span, .pagination li:hover:not(.pagination-current) a {
  color: rgba(43, 45, 54, 1);
  text-decoration: none;
}

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

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

.pagination-current {
  background-color: rgba(39, 53, 83, 1);
}

.pagination-current a, .pagination-current span {
  color: rgba(43, 45, 54, 1);
}

.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: #585c6f;
  font-size: 13px;
  font-weight: 300;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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(39, 53, 83, 1);
  border: 0;
  color: rgba(43, 45, 54, 1);
  line-height: normal;
  padding: 8px 20px;
  outline-color: rgba(39, 53, 83, 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: #585c6f;
  font-weight: 300;
  flex: 0 0 100px;
  margin-right: 10px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.profile-private-badge {
  flex-basis: 100%;
  border: solid 1px rgba(39, 53, 83, 1);
  border-radius: 4px;
  color: rgba(39, 53, 83, 1);
  padding: 5px 20px;
  font-size: 12px;
  text-align: center;
}

.profile-private-badge::after {
  content: "\1f512";
  margin-left: 5px;
  font-family: 'Inter', sans-serif;
  vertical-align: middle;
  line-height: 15px;
}

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

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

.profile-section {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.profile-contribution-list > .profile-contribution::before {
  left: 0;
  position: absolute;
  font-size: 16px;
  color: #ccc;
  font-family: 'Inter', sans-serif;
  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: 'Inter', sans-serif;
  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: #ebeff1;
}

@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: rgba(244, 246, 247, 1);
  background-position: 50% 50%;
  text-align: center;
  line-height: 40px;
  font-size: 16px;
  color: #ccc;
  font-family: 'Inter', sans-serif;
}

[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;
  margin: auto auto;
  text-align: left;
}

.search-results-subheading {
  text-align: center;
}

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

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

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

  
}

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

.search-result-description {
  margin-top: 15px;
  word-break: break-word;
  font-weight: 300;
  font-size: 12px;
}

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

.search-result-votes::before, .search-result-meta-count::before {
  color: rgba(39, 53, 83, 1);
}

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

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

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

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

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

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

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

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

.search-result-breadcrumbs li:last-child::after {
  content: "·";
  display: inline-block;
  margin: 0 5px;
}
*/
/* Don't display CJK results in italic */
/* Add a yellow background instead */
/*
html[lang|="zh"] .search-result-description em,
html[lang|="ko"] .search-result-description em,
html[lang|="ja"] .search-result-description em {
  font-style: normal;
  background: yellow;
}
*/

/***** Search results (NEW)*****/
.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[aria-selected="true"] {
  background-color: rgba(39, 53, 83, 1);
  color: white;
  text-decoration: none;
}

.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-result-title {
  font-size: 16px;
}

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

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

.search-result-votes::before, .search-result-meta-count::before {
  color: rgba(39, 53, 83, 1);
}

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

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

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

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

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

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

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

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

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

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

/* Use bold to highlight for the rest of supported non-latin languages */
html[lang|="ar"] .search-result-description em,
html[lang|="bg"] .search-result-description em,
html[lang|="el"] .search-result-description em,
html[lang|="he"] .search-result-description em,
html[lang|="hi"] .search-result-description em,
html[lang|="ko"] .search-result-description em,
html[lang|="ja"] .search-result-description em,
html[lang|="ru"] .search-result-description em,
html[lang|="th"] .search-result-description em {
  font-style: bold;
}
/* ADDED FONTS */

/* Modal */
.modal,
.modal-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.modal {
  z-index: 999;
}
.modal[aria-hidden='true'] {
  display: none;
}
.modal-overlay {
  background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 1rem;
  border-radius: 0.5rem;
}
.modal-header {
  display: flex;
  align-items: flex-start;
}
.modal-header h2 {
  flex: 1 1 auto;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 2.4px;
  margin-bottom: 0;
}
.modal-content ul {
  list-style: inherit;
  margin: inherit;
  padding: inherit;
}
.modal-warning {
  color: #ea1929;
}
.modal-options {
  display: flex;
  justify-content: space-around;
}
.modal-continue {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  line-height: 28.8px;
  letter-spacing: 2.4px;
  height: 50px;
  min-width: 200px;
  border-radius: 30px;
  border-color: black;
  color: #ea1929;
  text-transform: uppercase;
  border-width: 2px;
  background-color: #fff;
}
.modal-cancel {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  line-height: 28.8px;
  letter-spacing: 2.4px;
  height: 50px;
  min-width: 200px;
  border-radius: 0.3rem;
  color: #fff;
  text-transform: initial;
  background-color: #e3203b;
}
.close-button {
  flex: 0 0 auto;
  width: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
  cursor: pointer;
  border-radius: 0.25rem;
  background-color: lightgray;
  border: none;
}
.close-button:hover {
  background-color: darkgray;
}
.trigger {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  background-color: white;
  border: none;
}

/*** Footer ***/
.footer-wrapper {
    background-color: #273553;
    padding: 10rem 0 12rem;
    display: block;
}
.MuiContainer-root {
    width: 100%;
    display: block;
    box-sizing: border-box;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}
@media (max-width: 991px) {
	.MuiContainer-root {
    padding: 0!important;
	}
}
.MuiContainer-maxWidthLg {
    max-width: 1328px !important;
}
.footer-wrapper .layout-row {
    display: flex;
    flex-direction: row;
}
@media (max-width: 991px) {
	.footer-wrapper .layout-row {
    display: flex;
    flex-direction: column;
	}
}
.list-unstyled {
    padding-left: 0;
    list-style: none;
}
.layout-row {
    display: flex;
    flex-direction: row;
}
.footer-wrapper .copyright, 
.footer-wrapper a, 
.footer-wrapper li, 
.footer-wrapper p, 
.footer-wrapper span {
    color: #dddee1;
}
.footer-wrapper .footer-column, 
.footer-wrapper .footer-logo {
    width: 25%;
}
@media (max-width: 991px) {
	.footer-wrapper .footer-column {
    cursor: pointer;
    position: relative;
	}
}
@media (max-width: 991px) {
	.footer-wrapper .footer-column, 
  .footer-wrapper .footer-logo {
    width: 100%;
	}
}
@media (max-width: 991px) {
	.footer-wrapper .footer-column:after {
    top: 0;
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNCIgaGVpZ2h0PSIxNCI+PGcgZmlsbD0iI0REREVFMSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMCA2aDE0djJIMHoiLz48cGF0aCBkPSJNNiAwaDJ2MTRINnoiLz48L2c+PC9zdmc+) no-repeat 0 0;
    color: #fff;
    content: "";
    height: 1.4rem;
    position: absolute;
    right: 0;
    width: 1.4rem;
	}
}
@media (max-width: 991px) {
	.hidden-maxTablet {
    display: none!important;
	}
}
.footer-wrapper .footer-column p {
    color: #fff;
    font-family: inter-bold,sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 2.8rem;
}
@media (max-width: 991px) {
	.footer-wrapper .footer-column p {
    border-bottom: 1px solid #7f8290;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
	}
}
.footer-wrapper .footer-column ul {
    margin-top: 0;
}

@media (max-width: 991px) {
	.footer-wrapper .footer-column.opened .dropdown {
    display: block;
	}
	.footer-wrapper .footer-column.opened ul.dropdown {
    margin: 20px 0;
	}
  .footer-wrapper .dropdown {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 300ms ease-in-out;
    transition: max-height 300ms ease-in-out;
	}
}
@media (max-width: 991px) {
	.footer-wrapper .footer-column .dropdown {
    display: none;
	}
}
.footer-wrapper .copyright, 
.footer-wrapper a, 
.footer-wrapper li, 
.footer-wrapper p, 
.footer-wrapper span {
    color: #dddee1;
}
.footer-wrapper .copyright p, 
.footer-wrapper .footer-column a {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}
.footer-wrapper .copyright {
    border-top: 1px solid #7f8290;
    margin-top: 6rem;
    padding-top: 2.2rem;
}
@media (max-width: 991px) {
	.footer-wrapper .copyright {
    border-top: 0;
    margin-top: 0;
    padding-top: 1rem;
    width: 100%;
	}
}
.footer-wrapper .copyright p {
    margin: 0 3rem 0 0;
}
@media (max-width: 991px) {
	.footer-wrapper .copyright p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    order: 2;
	}
	.footer-wrapper .copyright ul {
    display: flex;
    flex-direction: row;
    margin-bottom: 2.2rem;
    order: 1;
  }
}
.footer-wrapper .secondary-menu {
    margin: 0;
}
.footer-wrapper .secondary-menu a {
    font-family: Inter;
    font-size: 1rem;
    margin-right: 2rem;
}
.footer-wrapper .secondary-menu li:not(:last-of-type):after {
    content: "";
    background-color: #dddee1;
    height: 80%;
    position: absolute;
    right: 0;
    top: .2rem;
    width: .2rem;
}
.footer-wrapper .secondary-menu li:not(:last-of-type) {
    position: relative;
    margin-right: 2rem;
}
@media (max-width: 991px) {
	.footer-wrapper {
    padding: 6rem 2rem;
	}
}
@media (min-width: 600px) {
	.MuiContainer-root {
		padding-left: 24px;
    padding-right: 24px;
	}
}
@media (max-width: 991px) {
	.footer-wrapper .secondary-menu a {
    font-size: 1.4rem;
	}
  .footer-wrapper .secondary-menu li:not(:last-of-type):after {
    width: .1rem;
	}
}

/*** Theming Styles ***/
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}
audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}
audio:not([controls]) {
    display: none;
    height: 0;
}
[hidden],
template {
    display: none;
}
a {
    background-color: transparent;
}
a:active,
a:hover {
    outline: 0;
}
abbr[title] {
    border-bottom: 1px dotted;
}
b,
strong {
    font-weight: bold;
}
dfn {
    font-style: italic;
}
mark {
    background: #ff0;
    color: #000;
}
small {
    font-size: 80%;
}
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sup {
    top: -0.5em;
}
sub {
    bottom: -0.25em;
}
img {
    border: 0;
}
svg:not(:root) {
    overflow: hidden;
}
figure {
    margin: 1em 40px;
}
hr {
    box-sizing: content-box;
    height: 0;
}
pre {
    overflow: auto;
}
code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}
button {
    overflow: visible;
}
button,
select {
    text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}
button[disabled],
html input[disabled] {
    cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}
input {
    line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}
input[type="search"] {
    -webkit-appearance: textfield;
    box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}
legend {
    border: 0;
    padding: 0;
}
textarea {
    overflow: auto;
}
optgroup {
    font-weight: bold;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
td,
th {
    padding: 0;
}
@font-face {
    font-family: "entypo";
    src: url(entypo-3abe7740fe6a52bc50b230991f869092.eot);
    src: url(entypo-3abe7740fe6a52bc50b230991f869092.eot?#iefix) format("embedded-opentype"), url(entypo-5adc1c49be0325a8cdac239d1b0b05ad.woff) format("woff"), url(entypo-d19e604cb2db8e8a56bd13031d6e2b32.ttf) format("truetype"),
        url(entypo-871383d0cf0ec0b749040df783006519.svg#entypo) format("svg");
    font-weight: normal;
    font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    @font-face {
        font-family: "entypo";
        src: url(entypo-871383d0cf0ec0b749040df783006519.svg#entypo) format("svg");
    }
}
@font-face {
    font-family: "copenhagen-icons";
    src: url(data:font/woff;base64,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)
        format("woff");
    font-weight: normal;
    font-style: normal;
}
.notification {
    border: 1px solid;
    display: table;
    font-family: sans-serif;
    font-size: 12px;
    padding: 13px 15px;
    -webkit-transition: height 0.2s;
    transition: height 0.2s;
    width: 100%;
    color: #555;
}
.notification a {
    color: #158ec2;
}
.notification-inner {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 980px;
}
.notification-icon,
.notification-text,
.notification-dismiss {
    display: table-cell;
    vertical-align: middle;
}
.notification-text {
    padding: 0 15px;
    width: 100%;
}
.notification + .notification {
    margin-bottom: -1px;
    position: relative;
    top: -1px;
}
.notification-error {
    background: #ffeded;
    border-color: #f7cbcb;
}
.notification-error .notification-icon::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cg fill='none' stroke='%23555555'%3E%3Ccircle cx='5.5' cy='6.5' r='5'/%3E%3Cpath stroke-linecap='round' d='M5.5 3.5v3'/%3E%3C/g%3E%3Ccircle cx='5.5' cy='9' r='1' fill='%23555555'/%3E%3C/svg%3E");
}
.notification-notice {
    background: #dbf3ff;
    border-color: #b5e0f5;
}
.notification-notice .notification-icon::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cg fill='none' stroke='%23555555'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M3.5 6l2 2L9 4.5'/%3E%3Ccircle cx='6' cy='6' r='5.5'/%3E%3C/g%3E%3C/svg%3E");
}
.notification-alert,
.notification-lock {
    color: #ad5e18;
    background: #fff8ed;
    border-color: #fcdba9;
}
.notification-alert .notification-icon::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23ad5e18' stroke-linecap='round' d='M5.06 1.27l-4.5 8.5c-.18.33.06.73.44.73h9c.38 0 .62-.4.44-.73l-4.5-8.5a.494.494 0 00-.88 0zM5.5 4v2'/%3E%3Ccircle cx='5.5' cy='8' r='.8' fill='%23ad5e18'/%3E%3C/svg%3E");
}
.notification-lock .notification-icon::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23ad5e18' d='M3.5 5.5V3a2.5 2.5 0 015 0v2.5'/%3E%3Crect width='10' height='7' x='1' y='5' fill='%23ad5e18' rx='1' ry='1'/%3E%3C/svg%3E");
}
.notification-icon::before {
    background-size: cover;
    content: "";
    display: inline-block;
    height: 14px;
    width: 14px;
    vertical-align: middle;
}
.notification-dismiss,
a.notification-dismiss {
    color: #555;
    cursor: pointer;
    opacity: 0.6;
    -webkit-transition: opacity 100ms ease;
    transition: opacity 100ms ease;
    text-decoration: none !important;
}
.notification-dismiss:hover {
    opacity: 1;
}
.notification-inline {
    border-radius: 4px;
    line-height: 14px;
    margin-top: 5px;
    padding: 5px;
    position: relative;
    text-align: left;
    vertical-align: middle;
}
[dir="rtl"] .notification-inline {
    text-align: right;
}
.notification-inline[aria-hidden="true"] {
    display: none;
}
.notification-inline.notification-error::before {
    border-radius: 50%;
    border: 1px solid #e35b66;
    color: #e35b66;
    content: "!";
    display: inline-block;
    font-family: sans-serif;
    font-size: 8px;
    font-weight: normal;
    height: 12px;
    line-height: 12px;
    margin: -2px 5px 0 0;
    text-align: center;
    vertical-align: middle;
    width: 12px;
}
[dir="rtl"] .notification-inline.notification-error::before {
    margin: 0 0 0 5px;
}
.notification-inline.notification-error {
    background-color: #fff0f1;
    border: 1px solid #e35b66;
    color: #cc3340;
}
.notification-inline.notification-large {
    padding: 13px 15px;
    margin-bottom: 25px;
}
.notification-left-aligned {
    text-align: left;
    padding-left: 0;
}
html[dir="rtl"] .notification-left-aligned {
    text-align: right;
    padding-left: auto;
    padding-right: 0;
}
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-toggle {
    display: inline-block;
    vertical-align: middle;
}
.dropdown-toggle:hover {
    text-decoration: none;
}
.dropdown-toggle > * {
    display: inline-block;
}
.dropdown-menu {
    background: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 3px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    display: none;
    font-size: 14px;
    font-style: normal;
    font-weight: normal;
    left: 0;
    margin-top: 1px;
    min-width: 170px;
    padding: 10px 0;
    position: absolute;
    text-align: left;
    z-index: 1000;
}
[dir="rtl"] .dropdown-menu {
    text-align: right;
}
.dropdown-menu[aria-expanded="true"] {
    display: block;
}
.dropdown-menu [role="separator"] {
    border-bottom: 1px solid #d8d8d8;
    color: #969696;
    display: block;
    font-weight: normal;
    font-size: 11px;
    padding: 5px 0;
    margin: 5px 20px 10px 20px;
}
[dir="ltr"] .dropdown-menu [role="menuitem"] {
    text-align: left;
}
[dir="rtl"] .dropdown-menu [role="menuitem"] {
    text-align: right;
}
.dropdown-menu [role="menuitem"] {
    color: #333;
    cursor: pointer;
    display: block;
    padding: 7px 40px 7px 20px;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    line-height: inherit;
    width: 100%;
}
[dir="rtl"] .dropdown-menu [role="menuitem"] {
    padding: 7px 20px 7px 40px;
}
.dropdown-menu [role="menuitem"]:hover,
.dropdown-menu [role="menuitem"]:focus {
    background: #f3f3f3;
    text-decoration: none;
    color: #333;
}
.dropdown-menu [role="menuitem"][aria-selected="true"] {
    background: #f3f3f3;
    cursor: default;
}
.dropdown-menu [role="menuitem"][aria-selected="true"]::after {
    content: "\2713";
    margin-left: 10px;
    font-family: "entypo";
}
[dir="rtl"] .dropdown-menu [role="menuitem"][aria-selected="true"]::after {
    margin-left: 0;
    margin-right: 10px;
    float: left;
}
.dropdown-menu [role="menuitem"][hidden],
.dropdown-menu [role="menuitem"][aria-hidden="true"] {
    display: none !important;
}
.dropdown-menu-caret {
    margin-top: 10px;
}
.dropdown-menu-caret::before,
.dropdown-menu-caret::after {
    content: "";
    display: inline-block;
    position: absolute;
}
.dropdown-menu-caret::before {
    top: -7px;
    left: 9px;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #d8d8d8;
    border-left: 7px solid transparent;
}
.dropdown-menu-caret::after {
    top: -6px;
    left: 10px;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    border-left: 6px solid transparent;
}
.dropdown-menu-end {
    left: auto;
    right: 0;
}
.dropdown-menu-end.dropdown-menu-caret::before {
    left: auto;
    right: 9px;
}
.dropdown-menu-end.dropdown-menu-caret::after {
    left: auto;
    right: 10px;
}
.dropdown-menu-top {
    bottom: 100%;
    margin-bottom: 1px;
}
[dir="rtl"] .dropdown-menu {
    left: auto;
    right: 0;
    text-align: right;
}
[dir="rtl"] .dropdown-menu-end {
    left: 0;
    right: auto;
}
[dir="rtl"] .dropdown-menu-end.dropdown-menu-caret::before {
    left: 9px;
    right: auto;
}
[dir="rtl"] .dropdown-menu-end.dropdown-menu-caret::after {
    left: 10px;
    right: auto;
}
[dir="rtl"] .dropdown-menu-caret::before {
    left: auto;
    right: 9px;
}
[dir="rtl"] .dropdown-menu-caret::after {
    left: auto;
    right: 10px;
}
.dropdown-toggle-icon {
    vertical-align: middle;
}
.dropdown-toggle {
    cursor: pointer;
}
.dropdown-toggle::after {
    color: #888;
    content: "\00a0\00a0\e75c";
    display: inline-block;
    font-family: "entypo";
    vertical-align: middle;
}
.upload-link::before {
    color: #888;
    content: "\1F4CE";
    font-family: "entypo";
    margin-right: 5px;
}
.upload-remove::before {
    content: "\00D7";
    font-family: "entypo";
}

/** New CSS from hirevue.com **/
.span6{
  width: 50%;
}
.how-to .columnL {
  border-right: 2px solid #fff;
  text-align: Left;
  padding-right: 25px;
}
.how-to .columnR {
  padding-left: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem; 
  line-height: 2em;
}
.how-to .columnR h2 {
 	text-align: center; 
}
@media (max-width: 767px){
	.span6{
  		width: 100%;
	}
  .how-to .columnR { 
  	margin-top:50px;
  }
}
a.link-item {
    color: #e3203b;
    display: inline-block;
    font-size: 1rem;
    letter-spacing: .5px;
    line-height: 1.56;
    position: relative;
}
a.link-item:hover {
    color: #e3203b;
    text-decoration: underline;
}
a:focus, 
a:hover {
    color: #273553;
    text-decoration: underline;
}
.text-component a.left-arrow {
    padding-right: 2rem;
    position: relative;
    transition: all .3s ease-in-out 0s;
}
.text-component a.link-item {
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    letter-spacing: .5px;
    text-decoration: none;
}
.videos {
  position: relative; 
  display: block; 
  max-width: 960px;
  z-index: 1;
  box-shadow: -10px -10px 50px 1px #CACDCF;
}
.videos:before {
    background-color: #84b7ec;
    bottom: -1rem;
    content: "";
    position: absolute;
    right: -1rem;
    z-index: -1;
    width: 98%;
    height: 98%;
}
.top-bullets {
    background-color: #F4F6F7;
    height: 2rem !important;
  	border: 1px solid #f6f6f6;
}
.top-bullets .bullet:first-of-type {
    margin-left: 1rem;
}
.top-bullets .bullet1 {
    background-color: red;
    border-radius: 100%;
    height: 1rem;
    margin: .4rem 0 0 .4rem;
    width: 1rem;
}
.top-bullets .bullet2 {
    background-color: yellow;
    border-radius: 100%;
    height: 1rem;
    margin: .4rem 0 0 .4rem;
    width: 1rem;
}
.top-bullets .bullet3 {
    background-color: green;
    border-radius: 100%;
    height: 1rem;
    margin: .4rem 0 0 .4rem;
    width: 1rem;
}
@media (min-width: 600px){
	.MuiContainer-root {
    padding-left: 24px;
    padding-right: 24px;
	}
}