/* ==========================================================================
   importer.css — Converted from Stylus (.styl) sources
   Sections: Variables, Global, Layout, Components, Pages, Animations, Dark Mode, Print
   ========================================================================== */

/* --- CSS Custom Properties (from variables.styl) --- */
:root {
  --yc-orange: #fd6721;
  --fb-blue: #3b5998;
  --fb-green: #43a735;
  --twitter-color: #00aced;
  --pocket-red: #ef4056;
  --pocket-red-pale: #f35b69;
  --brand-blue: #453dff;
  --gray: #555;
  --yellow: #ffff95;
  --pink: #fa709a;
  --cyan: #30cfd0;
  --dark-blue: #330867;
  --green1: #18c954;
  --green2: #38f9d7;
  --blue1: #fbc2eb;
  --blue2: #a6c1ee;
  --gray1: #fafafa;
  --gray2: #ebebeb;
  --gray3: #aaa;
  --speed: 0.3s;
  --page-width: 900px;
}

/* ==========================================================================
   Global element styles (from components.styl)
   ========================================================================== */

body {
  margin: 0;
  padding: 0;
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 18px;
  letter-spacing: 0.02rem;
  color: #333;
  background-color: #fff;
  background-size: cover;
  min-height: 100vh;
}

h1,
h2,
h3,
h4 {
  margin-bottom: 0;
}

a,
button,
input {
  transition: all var(--speed) ease;
}

a img {
  vertical-align: middle;
}

p {
  margin-top: 0;
}
p img {
  vertical-align: middle;
}

ul {
  margin-top: 0;
  padding-left: 1.5em;
}

script {
  display: none !important;
}

mark {
  padding: 0 0.5rem;
}

textarea,
input {
  font-size: 1em;
  font-weight: bold;
  padding: 0.35em 1em;
  border-radius: 4px;
  border: 2px solid #e1e1e1;
  transition: all var(--speed) ease;
  min-width: 10em;
}
textarea:focus,
input:focus {
  outline: none;
  border-color: var(--green1);
}
textarea::placeholder,
input::placeholder {
  color: #aaa;
}

hr {
  border: 1px solid var(--gray2);
}

.input-field label {
  display: inline-block;
  width: 150px;
}

pre {
  background-color: var(--gray2);
}

code {
  border-radius: 3px;
  background-color: var(--gray2);
}

iframe.content {
  border: none;
  min-width: 900px;
  min-height: 450px;
  border-radius: 3px;
}

/* ==========================================================================
   Layout (from layout.styl)
   ========================================================================== */

.container {
  max-width: var(--page-width);
  margin: 0 auto;
  transition: var(--speed) margin;
  padding: 0 0.5em;
}
@media (max-width: 768px) {
  .container {
    font-size: 0.8em;
    padding: 0 1.2em;
  }
}

footer,
header {
  position: relative;
  min-height: 2em;
  display: block;
  vertical-align: middle;
}
footer .container > *,
header .container > * {
  margin: 0.75em;
  margin-top: 0.5em;
}
footer a,
header a {
  color: var(--gray);
}
footer .fb-like.fb_iframe_widget,
header .fb-like.fb_iframe_widget {
  overflow-y: hidden;
  max-width: 100%;
}

header {
  padding: 0 0.5em;
  max-width: none;
}
header a {
  float: none;
}
header.menu {
  display: block;
  margin: 0 auto;
  max-width: var(--page-width);
  padding: 1em 0;
}
header.menu a {
  font-weight: bold;
  margin-left: 1em;
}
header.menu a.logo {
  opacity: 0.9;
  transition: var(--speed) opacity;
  font-weight: 900 !important;
  position: relative;
  margin: 0.5em 0;
}
header.menu a.logo:hover,
header.menu a.logo.hover {
  opacity: 1;
  color: black;
}
@media (max-width: 768px) {
  header.menu {
    margin: 0;
    float: none;
    text-align: left;
    padding: 1em 0.7em;
  }
  header.menu .pull-right {
    display: none;
  }
  header.menu a.logo {
    text-align: left;
  }
}
@media print {
  header.menu {
    padding: 0;
  }
}

header .menu-btn {
  display: none;
}
@media (max-width: 768px) {
  header .menu-btn {
    display: block;
    position: absolute;
    right: 0;
    top: -0.9em;
    margin: 0;
    padding: 1em;
    color: var(--gray3);
  }
  header {
    text-align: center;
  }
}

.hero h1 {
  margin: 1em 0 0.3em;
  max-width: 85%;
}
.hero h1 .date {
  display: block;
  font-size: 0.8em;
  color: gray;
}
.hero h1 .in-location {
  display: block;
  color: #363636;
}
@media (max-width: 768px) {
  .hero h1 {
    max-width: 100%;
    margin-top: 0;
  }
}

.hero nav.job-categories ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .hero nav.job-categories ul {
    overflow-x: scroll;
    overflow-y: hidden;
    padding-bottom: 0.4em;
  }
}
.hero nav.job-categories ul li {
  margin: 0;
  display: inline-block;
  vertical-align: top;
  text-transform: capitalize;
}
.hero nav.job-categories ul li a {
  position: relative;
  font-weight: 600;
  text-align: center;
  display: block;
  transform: scale(1);
  top: 0;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .hero nav.job-categories ul li a {
    padding: 0 0.6em;
  }
}
.hero nav.job-categories ul li a:hover span {
  color: #000;
  transform: scale(1.1);
  top: -0.2em;
}
.hero nav.job-categories ul li a span {
  display: block;
  height: 1.5em;
}
.hero nav.job-categories ul li a span.name {
  color: #777;
}

footer {
  background: #fafafa;
  font-size: 16px;
  margin-top: 4em;
  padding: 1em;
  line-height: 1.6;
}
footer .post-a-job {
  line-height: 1.6;
  font-weight: bold;
  display: inline-block;
}
footer .twitter-follow-button-rendered {
  float: right;
  margin-top: 2px;
  display: none;
}
@media (max-width: 768px) {
  footer .twitter-follow-button-rendered {
    float: none;
    display: block;
  }
}
footer .copyright {
  color: #8a8a8a;
}
@media (max-width: 768px) {
  footer .copyright {
    float: none;
    text-align: left;
  }
  footer .container > * {
    float: none !important;
    display: block;
  }
  footer a.pull-right {
    display: inline-block;
  }
}
footer .partners a {
  border: none;
  font-weight: bold;
}
footer nav {
  font-size: 14px;
}
footer nav h3 {
  font-size: 1em;
}
footer nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
footer nav ul li {
  margin: 0.4em 0;
}
footer nav .column {
  width: 20%;
  display: inline-block;
  vertical-align: top;
}
@media print {
  footer {
    display: none;
  }
}

a.by-ksaitor {
  display: block;
  position: fixed;
  left: -1px;
  bottom: -1px;
  color: black;
  padding: 0.5em 1em;
  border-top-right-radius: 4px;
  border: 1px solid #ebebeb;
}
a.by-ksaitor > span {
  vertical-align: middle;
}
a.by-ksaitor .pic {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  border-radius: 100%;
  background-image: url("https://res.cloudinary.com/cryptojobslist/image/fetch/q_auto,fl_lossy,f_auto/https://pbs.twimg.com/profile_images/1016555391210151937/Klsm1aQX_400x400.jpg");
  background-size: cover;
  margin-left: 0.5em;
  margin-right: -0.1em;
}
a.by-ksaitor:hover {
  opacity: 1;
  color: black;
  background-color: var(--green1);
}
@media (max-width: 768px) {
  a.by-ksaitor {
    opacity: 1;
    position: relative;
    text-align: center;
    font-size: 0.7em;
  }
}
@media print {
  a.by-ksaitor {
    display: none;
  }
}

a.telegram-group {
  position: fixed;
  border-radius: 100%;
  background-image: url("https://res.cloudinary.com/cryptojobslist/image/fetch/q_auto,fl_lossy,f_auto/http://cryptojobslist.com/images/telegram-logo.png");
  background-size: cover;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 100px;
  box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.175);
  transition: transform var(--speed);
  transform: scale(1);
  margin: 0;
  z-index: 1;
}
a.telegram-group:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  a.telegram-group {
    right: 20px;
    width: 50px;
    height: 50px;
  }
}
@media print {
  a.telegram-group {
    display: none;
  }
}

.spread-the-word-note {
  text-align: center;
  margin-top: 0.5em;
  color: #aaa;
}

.typed-cursor {
  display: none !important;
  color: red;
  background: red;
}

.donate-with-crypto span {
  font-weight: bold;
}

div.brand-color-top,
div.brand-color-bottom {
  background-color: var(--green1);
  display: block;
  width: 100%;
  height: 0.25em;
}
div.brand-color-bottom {
  height: 3em;
}

.twitter-follow-floating-top {
  position: fixed;
  top: 1em;
  right: 1em;
  z-index: 1;
}
@media (max-width: 1280px) {
  .twitter-follow-floating-top {
    display: none;
  }
}
@media print {
  .twitter-follow-floating-top {
    display: none;
  }
}

/* ==========================================================================
   Components (from components.styl)
   ========================================================================== */

.gradient {
  background: linear-gradient(to right, var(--green1), var(--green2));
}

.logo {
  font-weight: 900;
  text-decoration: none;
  color: black;
}
.logo img {
  margin-bottom: -0.2em;
  margin-right: -0.2em;
  margin-top: -0.35em;
}
@media (max-width: 768px) {
  .logo {
    margin: 0;
  }
}
@media print {
  .logo img {
    margin: 0;
  }
}

.cta {
  display: inline-block;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
  color: white;
  background-color: #0f7a33;
  border: none;
  border-radius: 3px;
  padding: 0 1em;
  margin: 1em 0;
  max-height: 55px;
  line-height: 55px;
}
.cta:hover {
  background-color: #094d20;
  color: white;
}
.cta.gray {
  background-color: #bbb;
}
.cta.gray:hover {
  background-color: #888;
  color: white;
}

.metamask-donate-btn {
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  border-bottom: none;
  transition: transform var(--speed);
  transform: scale(1);
}
.metamask-donate-btn:hover {
  transform: scale(1.1);
}

.post-a-job {
  background-color: var(--brand-blue);
  border: none;
  border-radius: 3px;
  padding: 0.1em 1em 0.2em;
  color: white;
  font-weight: normal;
  position: relative;
  z-index: 2;
}
.post-a-job:hover {
  background-color: #1a10cc;
  color: white;
}
.post-a-job.floating-top {
  position: absolute;
  right: 14em;
  top: 1em;
}

.btn.link {
  border-bottom: 2px solid var(--green1);
}
.btn.fb-login,
.btn.twitter-login {
  padding: 0.5em 1.5em;
  display: inline-block;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
  color: white;
  border: none;
  border-radius: 3px;
  max-height: 55px;
  line-height: 55px;
}
.btn.fb-login:hover,
.btn.twitter-login:hover {
  color: white;
}
@media (max-width: 768px) {
  .btn.fb-login,
  .btn.twitter-login {
    text-align: center;
    display: block;
  }
}
.btn.fb-login {
  background-color: var(--fb-blue);
}
.btn.fb-login:hover {
  background-color: #1e2d4d;
}
.btn.twitter-login {
  background-color: var(--twitter-color);
}
.btn.twitter-login:hover {
  background-color: #006d96;
}

.avatar {
  width: 3em;
  height: 3em;
  border-radius: 50%;
  display: inline-block;
  overflow: hidden;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-bottom: 0.4em;
}

.hover-scale {
  position: relative;
  transform: scale(1);
  transition: transform var(--speed);
  z-index: 10;
}
.hover-scale:hover {
  transform: scale(3);
}

.loading {
  display: inline-block;
  border-radius: 50%;
  width: 1em;
  height: 1em;
  border: 0.25em solid var(--gray2);
  border-top-color: var(--green1);
  animation: spin 0.6s infinite linear;
}

.login-block {
  margin-top: 1em;
  display: block;
}
@media (max-width: 768px) {
  .login-block p {
    text-align: center;
  }
}

.pull-right {
  float: right;
}

.clearfix:after {
  content: ".";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}

.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-muted {
  color: var(--gray3);
}
.text-center {
  text-align: center;
}
.text-thin {
  font-weight: 200;
}
.text-brand-green {
  color: var(--green1);
}
.text-brand-yc {
  color: var(--yc-orange);
}
.text-small {
  font-size: 0.7em;
}
.text-large {
  font-size: 1.5em;
}
.text-60ch {
  max-width: 60ch;
}

.hide {
  display: none !important;
}
.hide-mobile {
  /* shown by default, hidden on mobile */
}
@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}

.hide-desktop,
.mobile-only {
  display: none;
}
@media (max-width: 768px) {
  .hide-desktop,
  .mobile-only {
    display: inherit !important;
  }
}

.desktop-only {
  display: block;
}
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
}

.hide-print {
  /* shown by default */
}
@media print {
  .hide-print {
    display: none;
  }
}

.print-only {
  display: none;
}
@media print {
  .print-only {
    display: inherit !important;
  }
}

/* Label mixin — individual classes */
.jobLocation {
  text-transform: uppercase;
  border-radius: 3px;
  display: inline-block;
  padding: 0 8px;
  font-size: 0.6em;
  background: rgba(153, 153, 153, 0.1);
  color: #999;
  letter-spacing: 1px;
  line-height: 1.6;
}

.filled,
.recruiter {
  text-transform: uppercase;
  border-radius: 3px;
  display: inline-block;
  padding: 0 8px;
  font-size: 0.6em;
  letter-spacing: 1px;
  line-height: 1.6;
}
.filled {
  background: rgba(0, 128, 0, 0.1);
  color: green;
}
.recruiter {
  background: rgba(255, 165, 0, 0.1);
  color: orange;
}

.lazyload,
.lazyloading {
  opacity: 0;
}
.lazyloaded {
  transition: opacity 300ms;
  opacity: 1;
}

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

/* ==========================================================================
   Page: Jobs (from pages/jobs.styl)
   ========================================================================== */

.landing-page {
  max-width: var(--page-width);
}
.landing-page h1 {
  color: black;
  line-height: 1.2;
  font-weight: 800;
  font-size: 3em;
}
.landing-page h1 small {
  font-size: 0.6em;
}
@media (max-width: 768px) {
  .landing-page h1 {
    font-size: 10vw;
  }
}
.landing-page h1 + p {
  font-size: 1.2em;
  margin-bottom: 1em;
}
.landing-page .hero img {
  width: 7em;
}
.landing-page .hero .remote-edition {
  letter-spacing: 0.2em;
}
.landing-page .more {
  text-align: center;
}
.landing-page .company-logos {
  display: block;
  margin: 0 -4em;
  text-align: center;
}
.landing-page .company-logos img {
  width: 100%;
}
.landing-page .company-logos p {
  margin-top: -1.5em;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .landing-page .company-logos {
    margin: 0;
  }
  .landing-page .company-logos p {
    text-align: center;
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .landing-page p {
    text-align: left;
  }
  .landing-page .login-block p {
    text-align: center;
  }
}

script + .subscribe {
  display: none;
}

.subscribe {
  text-align: center;
  margin: 2em 0;
}
.subscribe:first-child {
  display: none;
}
@media (max-width: 768px) {
  .subscribe {
    text-align: center;
  }
  .subscribe p {
    text-align: center;
  }
}
.subscribe p.note {
  margin-bottom: 0.5em;
  display: block;
  height: 1.5em;
}
.subscribe p.note .newsletterFrequency-btn {
  border-bottom: 1px;
  font-weight: bold;
}
.subscribe label {
  font-size: 0.8em;
}
.subscribe input,
.subscribe button {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 25px;
  display: inline-block;
  border: none;
  border-radius: 3px;
  padding: 0.5em 1em;
  vertical-align: top;
}
.subscribe input:active,
.subscribe input:focus,
.subscribe button:active,
.subscribe button:focus {
  outline: none;
}
@media (max-width: 768px) {
  .subscribe input,
  .subscribe button {
    border: 3px solid var(--green1) !important;
    border-radius: 3px !important;
    max-width: 90%;
    margin: 0 auto;
    display: inline-block;
    width: 80%;
  }
}
.subscribe input {
  text-align: center;
  -webkit-appearance: none;
  border: 3px solid var(--green1);
  border-right: none;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  height: 25px;
  padding: 0.5em;
}
.subscribe input::placeholder {
  text-align: center;
}
.subscribe input:invalid {
  color: orange;
}
.subscribe button {
  cursor: pointer;
  text-decoration: none;
  color: white;
  background-color: var(--green1);
  border: 3px solid var(--green1);
  border-left: none;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  height: 55px;
  margin-left: -3px;
}
.subscribe button:hover {
  background-color: #4de27d;
}
@media (max-width: 768px) {
  .subscribe button {
    margin-top: 0.5em;
    width: auto;
  }
}
.subscribe .success {
  color: var(--green1);
}
.subscribe small {
  display: block;
  margin-top: 1em;
  font-size: 0.8em;
}

.controls {
  margin: 1.5em 0 1em;
  position: relative;
  text-align: left;
}
@media (max-width: 768px) {
  .controls {
    margin: 1em 0 1em;
  }
}
.controls > * {
  vertical-align: top;
  position: relative;
  display: inline-block;
}
@media (max-width: 768px) {
  .controls > * {
    width: 100%;
    text-align: center;
  }
}
.controls .search-input,
.controls .location-input {
  width: 18em;
  position: relative;
  padding-left: 2em;
  text-transform: capitalize;
}
.controls .magnifying-glass {
  position: absolute;
  z-index: 9;
  top: 0.5em;
  left: 0.6em;
}
.controls a.post-a-job {
  position: absolute;
  right: 0;
  background: #b30000;
  color: white;
  padding: 0.5em 0.7em;
  border-radius: 3px;
}
.controls a.post-a-job:hover {
  background: #e60000;
}
@media (max-width: 768px) {
  .controls a.post-a-job {
    display: none;
  }
}
.controls .future-price {
  position: absolute;
  right: 15px;
  top: -30px;
}
@media (max-width: 768px) {
  .controls .future-price {
    display: none;
  }
}
.controls .location.search {
  float: right;
}
.controls .location.search .location-input {
  width: 13em;
}
.controls .location.search .remote-only {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  margin-left: 0.6em;
  display: block;
  cursor: pointer;
  color: #777;
  border: none;
}
.controls .location.search .remote-only b {
  margin-left: 0.2em;
}
.controls .location.search .remote-only:hover,
.controls .location.search .remote-only.active {
  color: black;
}
.controls .location.search .remote-only input[type="checkbox"] {
  position: relative;
  top: 0.4em;
  float: right;
}
@media (max-width: 768px) {
  .controls .location.search {
    margin: 0.5em 0 1em;
  }
  .controls .location.search input.location-input {
    width: 18em;
  }
  .controls .location.search .remote-only input[type="checkbox"] {
    float: none !important;
    margin-left: 1em;
    top: 0 !important;
  }
}

.featured-on {
  margin: 1em 0;
  text-align: center;
}
.featured-on a {
  display: inline-block;
  margin: 0 1em 0.5em;
  vertical-align: middle;
  transition:
    transform var(--speed),
    filter var(--speed),
    opacity var(--speed);
  transform: scale(1);
  filter: grayscale(100%);
  opacity: 0.5;
}
.featured-on a:hover {
  transform: scale(1.05);
  filter: grayscale(0%);
  opacity: 1;
}
.featured-on img {
  max-height: 4em;
}
@media (max-width: 768px) {
  .featured-on img {
    max-height: 2em;
    max-width: 90%;
    margin: 0.5em;
  }
}
.featured-on .cryptoaquarium {
  font-weight: bold;
  text-align: left;
  color: #283f73;
  line-height: 1;
}
.featured-on .cryptoaquarium span {
  font-size: 1.45em;
  vertical-align: top;
  display: inline-block;
  margin-top: 0.25em;
  margin-left: 0.2em;
}
.featured-on .cryptoaquarium img {
  border-radius: 3px;
}
.featured-on .cryptoaquarium:hover {
  color: #283f73;
}
.featured-on .smaller-img img {
  max-height: 3em;
}

.job-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 1em;
}
@media (max-width: 768px) {
  .job-list {
    font-size: 0.9em;
  }
}
.job-list li {
  padding: 0;
  border-bottom: 1px solid #ebebeb;
  position: relative;
  font-size: 1.1em;
}
.job-list li:last-child {
  border-bottom: none;
}
.job-list li a {
  display: block;
  padding: 1em 0.8em;
}
.job-list li a:hover {
  background-color: rgba(24, 201, 84, 0.15);
  color: inherit;
}
.job-list li a.featured {
  background-color: #ffff9575;
}
.job-list li a.featured:hover {
  background-color: yellow;
}
.job-list li a.expired {
  filter: grayscale(100%);
  opacity: 0.8;
}
.job-list li a.expired.filled-job {
  opacity: 1;
  filter: grayscale(0%);
}
@media (max-width: 768px) {
  .job-list li a {
    padding: 1em 0.25em;
  }
}
.job-list li a > * {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .job-list li a > * {
    max-width: 75%;
  }
}
.job-list .company-picture {
  width: 60px;
  height: 60px;
  border-radius: 3px;
  overflow: hidden;
  margin-right: 0.5em;
}
.job-list .company-picture img {
  max-height: 60px;
  max-width: 60px;
  text-indent: 100%;
  color: white;
}
.job-list .company-n-title {
  display: block;
  max-width: 60ch;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .job-list .company-n-title {
    display: flex;
    flex-direction: column-reverse;
  }
}
.job-list .companyName {
  margin-right: 0.5em;
  font-weight: bolder;
}
@media (max-width: 768px) {
  .job-list .companyName {
    font-weight: normal;
  }
}
.job-list .jobTitle {
  color: #000099;
  font-weight: normal;
  border-bottom: 1px solid rgba(0, 0, 153, 0.5);
  max-width: 43ch;
}
@media (max-width: 768px) {
  .job-list .jobTitle {
    display: block;
    border: none;
  }
}
.job-list .jobLocation {
  display: inline-block;
  font-size: 0.6em;
  max-width: 30ch;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  vertical-align: middle;
}
.job-list .filled,
.job-list .recruiter {
  margin-right: 0.8em;
  display: inline-block;
  font-size: 0.6em;
}
.job-list .author-picture {
  display: inline-block;
  position: relative;
  margin-right: 10px;
  overflow: hidden;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  float: right;
}
.job-list .author-picture img {
  max-width: 41px;
  max-height: 41px;
}
@media (max-width: 768px) {
  .job-list .author-picture {
    display: none;
  }
}
.job-list .createdAt {
  margin-top: 5px;
  vertical-align: top;
  float: right;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .job-list .createdAt {
    display: none;
  }
}
.job-list .views {
  margin-left: 1em;
}
.job-list .label,
.job-list .views,
.job-list .applications,
.job-list .comments,
.job-list .salary {
  display: inline-block;
  text-transform: uppercase;
  border-radius: 3px;
  padding: 0 8px;
  font-size: 0.6em;
  background: rgba(102, 127, 191, 0.1);
  color: #667fbf;
  letter-spacing: 0;
  vertical-align: middle;
  max-width: 25ch;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.job-list .comments i {
  margin-right: 1ch;
}

/* ==========================================================================
   Page: Job detail (from pages/job.styl)
   ========================================================================== */

.job {
  margin-top: 3em;
  position: relative;
}
@media (max-width: 768px) {
  .job {
    margin-top: 1.5em;
  }
}
.job > div {
  position: relative;
}
.job .hero .featured {
  font-weight: bold;
  position: absolute;
  top: -1.5em;
}
@media print {
  .job .hero .featured {
    position: fixed;
    top: 0;
    right: 0;
  }
}
.job h1 {
  margin: 0;
  color: black;
  line-height: 1.2;
  font-weight: 800;
  font-size: 3em;
  max-width: 80%;
  display: inline-block;
}
@media (max-width: 768px) {
  .job h1 {
    font-size: 2em;
    max-width: 100%;
  }
}
@media print {
  .job h1 {
    max-width: 70%;
  }
}
.job .createdAt {
  color: #aaa;
  font-weight: 500;
}
.job .meta {
  display: block;
  width: 70%;
  margin-bottom: 1em;
}
.job .logo-n-qr {
  position: absolute;
  right: 0;
  top: 1em;
}
@media print {
  .job .logo-n-qr {
    top: 0;
  }
}
.job .companyLogo {
  display: inline-block;
  max-width: 7em;
  max-height: 7em;
  text-indent: 100%;
  color: white;
}
@media (max-width: 768px) {
  .job .companyLogo {
    display: none;
  }
}
.job .qrCode {
  display: none;
}
@media print {
  .job .qrCode {
    display: inline-block;
    max-width: 7em;
    max-height: 7em;
    margin-left: 1em;
  }
}
.job .companyName {
  margin: 0;
}
.job .companyName .company-links {
  margin-left: 0.5em;
}
.job .companyName .company-links a {
  color: #ccc;
}
.job .companyName .company-links a:hover {
  color: var(--green1);
}
.job .jobLocation {
  margin: 0;
}
.job .jobLocation a {
  border: none;
}
.job .lastActive {
  font-size: 18px;
  color: #333;
  margin-bottom: 1em;
}
.job .author {
  width: 90px;
  position: absolute;
  left: -110px;
  text-align: center;
  word-wrap: break-word;
  font-size: 0.7em;
  line-height: 1.2;
}
.job .author > *,
.job .author div span {
  display: block;
  margin-bottom: 0.5em;
}
.job .author .author-pic {
  width: 90px;
  height: 90px;
  border-radius: 90px;
  overflow: hidden;
}
.job .author .author-pic img {
  max-width: 90px;
  max-height: 90px;
}
@media (max-width: 768px) {
  .job .author {
    position: relative;
    left: 0;
    text-align: left;
    width: 100%;
    font-size: 1.1em;
    margin-bottom: 1em;
  }
  .job .author div {
    display: inline-block;
    vertical-align: middle;
    margin-right: 1em;
  }
  .job .author span {
    display: block;
  }
  .job .author .author-pic {
    transform: scale(0.8);
  }
  .job .author span.total-views {
    float: right;
    margin-top: 2em;
  }
}
.job .companyAbout {
  max-width: 60ch;
  font-size: 1.2em;
  padding: 2vh 0;
  padding-top: 0;
  color: #555;
}
.job .companyAbout .video {
  text-align: center;
}
.job .companyAbout .video iframe {
  width: 100%;
  height: 410px;
}
.job .description {
  max-width: 60ch;
  font-size: 1em;
  padding: 2vh 2vw;
  padding-top: 0;
}
.job .applicationProcess {
  border-radius: 3px;
  background: #fafafa;
  padding: 0.5em 1em;
  margin: 1em 0;
}
.job .applicationProcess h4 {
  margin: 0;
}
.job .cta.disabled {
  background-color: #999;
  cursor: not-allowed;
}
@media (max-width: 768px) {
  .job .cta {
    display: block;
    text-align: center;
  }
}
.job .refer-a-friend {
  display: inline-block;
  float: right;
}
.job .refer-a-friend input {
  text-align: center;
  font-weight: normal;
  width: 3em;
  display: inline-block;
}
.job .refer-a-friend p {
  margin-bottom: -0.8em;
  color: #aaa;
  font-size: 0.7em;
  padding-right: 6.5em;
}
.job .refer-a-friend .cta.invite {
  line-height: 2.2em;
  color: var(--green1);
  background: white;
  border: 2px solid var(--green1);
  margin-right: -0.5em;
  padding-left: 0.55em;
  padding-right: 0.75em;
  border: none;
}
.job .refer-a-friend .cta.invite:hover {
  background: var(--green1);
  color: white;
}
.job .refer-a-friend textarea {
  width: 25.2em;
  margin-top: -0.7em;
}
.job .stats {
  position: absolute;
  right: 0;
  bottom: 1.5em;
}
@media (max-width: 768px) {
  .job .stats {
    position: relative;
    text-align: center;
    bottom: 0.5em;
  }
}
.job .stats span {
  margin-left: 1em;
}
.job .subscribe {
  position: relative;
  background-color: white;
  padding-top: 2em;
}
@media print {
  .job #disqus_thread,
  .job .job-list,
  .job .subscribe,
  .job .spread-the-word-note,
  .job hr,
  .job .view-all-jobs,
  .job .lastActive,
  .job .apply-for-position,
  .job .stats {
    display: none;
  }
  .job .companyAbout,
  .job .description {
    max-width: 100%;
    padding: 0;
    margin: 0;
  }
  .job .description {
    padding: 0 2em;
  }
  .job .companyLogo {
    display: inline-block;
    top: -1em;
  }
}

/* ==========================================================================
   Page: Companies (from pages/companies.styl)
   ========================================================================== */

ul.companies {
  padding: 0;
}
ul.companies .company {
  display: inline-block;
}
ul.companies .company a {
  display: block;
  margin: 1em 0.5em;
  padding: 1em;
  border: 1px solid #ebebeb;
  border-radius: 3px;
  transition: border 0.3s;
}
ul.companies .company a:hover {
  border: 1px solid #ccc;
}
ul.companies .company a > * {
  display: inline-block;
  vertical-align: middle;
}
ul.companies .company a.featured {
  background-color: #ffff9575;
}
ul.companies .company a.featured:hover {
  color: black;
  background-color: yellow;
}
ul.companies .company .company-picture {
  width: 100px;
  height: 100px;
  border-radius: 3px;
  overflow: hidden;
  margin-right: 1em;
}
ul.companies .company .company-picture img {
  max-height: 100px;
  max-width: 100px;
}
ul.companies .company h2 {
  margin: 0;
}

div.company {
  display: block;
  position: relative;
}
div.company h1 {
  font-weight: 900;
  color: black;
  font-size: 3em;
  margin-top: 1em;
  line-height: 1.2;
}
@media (max-width: 768px) {
  div.company h1 {
    margin-top: 0;
    max-width: 80%;
  }
}
div.company .companyLogo {
  display: inline-block;
  max-width: 10em;
  max-height: 10em;
  position: absolute;
  right: 0;
  top: 2em;
  text-indent: 100%;
  color: white;
}
@media (max-width: 768px) {
  div.company .companyLogo {
    top: 0;
  }
}
div.company > p {
  max-width: 80%;
}
div.company .job-lists {
  margin-top: 7em;
}

.activeRecently {
  color: var(--green1);
}
.activeWithinAWeek {
  color: orange;
}
.inactive {
  color: grey;
}

/* ==========================================================================
   Page: Blog (from pages/blog.styl)
   ========================================================================== */

.blog-view {
  display: block;
}
.blog-view .article-list {
  text-align: left;
  margin-top: 4em;
  margin-bottom: 2em;
}
.blog-view .article-list .article {
  display: block;
  margin-bottom: 4em;
}
.blog-view .article-list .article h2 {
  margin: 0;
  font-weight: 800;
  font-size: 2em;
  line-height: 1.3;
}
.blog-view .article-list .article img {
  display: none;
}
.blog-view .article-list .article .continue-reading {
  background-color: white;
  border: 1px solid #bbb;
  color: #555;
  border-radius: 100px;
  padding: 0.2em 1.5em 0.35em;
  margin: 1em 0 2em;
  transition:
    background-color var(--speed),
    color var(--speed);
}
.blog-view .article-list .article:hover .continue-reading {
  background-color: var(--green1);
  color: white;
  border-color: var(--green1);
}

.blog-post.container {
  max-width: 740px;
  padding: 0 20px;
  margin-bottom: 5vh;
}
.blog-post h1 {
  font-weight: 800;
  font-size: 2.2em;
  color: black;
  margin: 0.6em 0 0.4em;
}
.blog-post h2 {
  font-size: 1.5em;
}
.blog-post .createdAt {
  color: #aaa;
  font-family: sans-serif;
  font-size: 0.8em;
  margin-top: 2em;
  margin-bottom: -1em;
  display: block;
}
.blog-post .author {
  display: inline-block;
  word-wrap: break-word;
  line-height: 1.2;
  margin-top: 1.5em;
  min-width: 45%;
}
.blog-post .author > * {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: 0.5em;
}
.blog-post .author .meta {
  margin: 0;
}
.blog-post .author .meta > * {
  display: block;
}
.blog-post .author .meta .authorName {
  color: black;
}
.blog-post .author .author-pic {
  margin-right: 0.5em;
  width: 60px;
  height: 60px;
  border-radius: 60px;
  overflow: hidden;
}
.blog-post .author .author-pic img {
  max-width: 60px;
  max-height: 60px;
}
.blog-post article {
  font-size: 21px;
}
@media (max-width: 768px) {
  .blog-post article {
    font-size: 16px;
  }
}
.blog-post article img {
  width: 110%;
  margin: 1em -5%;
}
.blog-post article .width30 img {
  margin-left: 1em;
  width: 30%;
}
.blog-post article .margin-top-3 {
  margin-top: 3em;
}
.blog-post article .image-galery {
  text-align: center;
}
.blog-post article .image-galery img {
  max-height: 3em;
  display: inline-block;
  width: inherit;
  margin: 0.5em;
  vertical-align: top;
}
.blog-post article .image-galery br {
  display: none;
}
.blog-post article blockquote {
  font-style: italic;
}
.blog-post.footer-gray {
  background-color: #f5f5f5;
  padding: 1em 0 1em;
  margin-bottom: -3em;
}
.blog-post.footer-gray .author {
  margin: 1em 0;
}
.blog-post .a2a_kit {
  top: 40%;
  margin-left: -6em;
  background-color: transparent;
}
.blog-post .a2a_kit .a2a_svg {
  transition: opacity 0.24s;
  opacity: 0.5;
  border-radius: 100px;
}
.blog-post .a2a_kit svg {
  transition: transform 0.24s;
  transform: scale(0.7);
}
.blog-post .a2a_kit a:hover svg {
  transform: scale(1);
}
.blog-post .a2a_kit a:hover .a2a_svg {
  opacity: 1;
}
@media (max-width: 768px) {
  .blog-post .a2a_kit {
    position: relative;
    margin: 0;
    text-align: center;
  }
  .blog-post .a2a_kit a {
    display: inline-block;
  }
  .blog-post .a2a_kit .a2a_svg {
    opacity: 0.7;
  }
}

/* ==========================================================================
   Page: Apply (from pages/apply-for-a-job.styl)
   ========================================================================== */

.applyFor {
  min-height: 110vh;
}
@media (max-width: 768px) {
  .applyFor {
    min-height: 180vh;
  }
}
.applyFor .companyLogo {
  position: absolute;
  right: 0;
  top: 0;
}
.applyFor form {
  border-radius: 0.4em;
  margin: 2em auto 4em;
  text-align: center;
}
.applyFor form h3 {
  text-align: left;
  padding-left: 5px;
}
.applyFor form label {
  display: inline-block;
  width: 18%;
  text-align: right;
  vertical-align: top;
  padding-right: 5px;
  padding-top: 0.35em;
}
@media (max-width: 768px) {
  .applyFor form label {
    width: 100%;
    text-align: left;
    padding: 0.35em 1em;
  }
}
.applyFor form input,
.applyFor form textarea {
  display: inline-block;
  width: 65%;
  margin-bottom: 0.5em;
}
@media (max-width: 768px) {
  .applyFor form input,
  .applyFor form textarea {
    width: 90%;
  }
}
.applyFor form button {
  font-size: 24px;
  margin-right: 4em;
  float: right;
}
@media (max-width: 768px) {
  .applyFor form button {
    margin: 0;
    float: none;
    width: 100%;
    text-align: center;
  }
}
.applyFor form .videoLink {
  display: inline-block;
  position: relative;
  top: -10px;
}
.applyFor form .recruitersCanContact * {
  cursor: pointer;
  padding: 0;
}
.applyFor form .recruitersCanContact input[type="checkbox"] {
  width: 1em;
  margin-left: 20%;
}
@media (max-width: 768px) {
  .applyFor form .recruitersCanContact input[type="checkbox"] {
    min-width: 1em;
    margin-left: 0;
  }
}
.applyFor form .recruitersCanContact label {
  width: 65%;
  text-align: left;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .applyFor form .recruitersCanContact label {
    width: 75%;
  }
}

.job.application-submitted img {
  width: 100%;
}
.job.application-submitted h3 {
  font-size: 3em;
  margin: 0;
}

/* ==========================================================================
   Page: Subscribe (from pages/subscribe.styl)
   ========================================================================== */

.subscribe-view .subscribers {
  display: block;
  margin-top: 5em;
}
.subscribe-view .subscribers ul,
.subscribe-view .subscribers li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.subscribe-view .subscribers .picture {
  display: inline-block;
  margin: 0.2em;
  width: 2em;
  height: 2em;
  overflow: hidden;
  border-radius: 20em;
  transform: scale(1);
  transition: transform var(--speed);
  z-index: 1;
  position: relative;
}
.subscribe-view .subscribers .picture img {
  max-height: 2.02em;
  max-width: 2.02em;
}
.subscribe-view .subscribers .picture:hover {
  z-index: 99;
  transform: scale(2);
  box-shadow: 0 0 10px 5px white;
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0px var(--cyan);
  }
  45%,
  55% {
    box-shadow: 0 0 30px var(--cyan);
  }
  100% {
    box-shadow: 0 0 0px var(--cyan);
  }
}

/* ==========================================================================
   Dark mode (from dark-mode.styl) — class-based, not media query
   ========================================================================== */

.dark-mode-btn {
  position: fixed;
  display: none;
  top: 15px;
  right: 0;
  width: 35px;
  height: 35px;
  cursor: pointer;
  text-align: center;
  line-height: 2em;
  border-radius: 2em;
}
.dark-mode-btn:hover {
  background-color: #1e2835;
}
@media (max-width: 768px) {
  .dark-mode-btn {
    display: none;
  }
}

body.dark-mode {
  color: #fff;
  background-color: #1e2835;
}
body.dark-mode a,
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4 {
  color: #fff;
}
body.dark-mode input,
body.dark-mode textarea,
body.dark-mode .subscribe,
body.dark-mode footer,
body.dark-mode .dark-mode-btn:hover,
body.dark-mode .blog-post.footer-gray {
  color: #fff;
  background-color: #1e2835;
}
body.dark-mode footer a,
body.dark-mode header a {
  color: #fff;
}
body.dark-mode a.logo,
body.dark-mode .company-logos img,
body.dark-mode .featured-on img {
  filter: invert(100%);
}
body.dark-mode a.logo:hover,
body.dark-mode .company-logos img:hover,
body.dark-mode .featured-on img:hover {
  filter: invert(100%) !important;
  opacity: 1;
}
body.dark-mode .landing-page .hero h1 a {
  color: black;
  filter: invert(100%);
}
body.dark-mode a.post-a-job {
  color: white;
}
body.dark-mode .job-list .jobTitle {
  filter: invert(100%);
}
body.dark-mode .job-list .featured .jobTitle,
body.dark-mode .job-list .featured .companyName {
  color: black;
  filter: invert(0);
}
body.dark-mode .by-ksaitor {
  color: white;
}
body.dark-mode code {
  color: #1e2835;
  padding: 1px 6px;
}
body.dark-mode #disqus_thread {
  background-color: white;
  padding: 1em 2em;
  margin-top: 1em;
  border-radius: 4px;
}
