/* stylelint-disable order/properties-alphabetical-order */
/* stylelint-enable */
@font-face {
  font-family: "GT-America";
  src: url("../../../../assets/fonts/GT-America-Standard-Regular.eot");
  src: url("../../../../assets/fonts/GT-America-Standard-Regular.eot?#iefix") format("embedded-opentype"), url("../../../../assets/fonts/GT-America-Standard-Regular.woff2") format("woff2"), url("../../../../assets/fonts/GT-America-Standard-Regular.woff") format("woff"), url("../../../../assets/fonts/GT-America-Standard-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
.footer {
  width: calc(100% - 60px);
  float: left;
  margin-left: 30px;
  flex-shrink: 0;
  margin-top: 60px;
  padding-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .footer {
    display: flex;
    justify-content: space-between;
  }
}
.footer span {
  margin-left: 10px;
}

.nav {
  width: calc(100% - 60px);
  float: left;
  margin-left: 30px;
  display: flex;
  font-size: 18px;
  justify-content: space-between;
  line-height: 1;
  margin-top: 20px;
}
@media only screen and (min-width: 768px) {
  .nav {
    font-size: 24px;
  }
}

.nav section > * {
  margin-left: 1rem;
}

.nav-jobs {
  -webkit-animation: rainbow-color 6s infinite alternate;
          animation: rainbow-color 6s infinite alternate;
}

@-webkit-keyframes rainbow-background {
  0% {
    background-color: #fd8800;
  }
  25% {
    background-color: #fd008f;
  }
  50% {
    background-color: #9700fd;
  }
  75% {
    background-color: #05c7e6;
  }
  100% {
    background-color: #4bd58d;
  }
}

@keyframes rainbow-background {
  0% {
    background-color: #fd8800;
  }
  25% {
    background-color: #fd008f;
  }
  50% {
    background-color: #9700fd;
  }
  75% {
    background-color: #05c7e6;
  }
  100% {
    background-color: #4bd58d;
  }
}
@-webkit-keyframes rainbow-color {
  0% {
    color: #fd8800;
  }
  25% {
    color: #fd008f;
  }
  50% {
    color: #9700fd;
  }
  75% {
    color: #05c7e6;
  }
  100% {
    color: #4bd58d;
  }
}
@keyframes rainbow-color {
  0% {
    color: #fd8800;
  }
  25% {
    color: #fd008f;
  }
  50% {
    color: #9700fd;
  }
  75% {
    color: #05c7e6;
  }
  100% {
    color: #4bd58d;
  }
}
@-webkit-keyframes pulse {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes pulse {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
html, body {
  height: 100%;
}

body {
  width: calc(100%);
  float: left;
  margin-left: 0;
  background: #fff;
  color: #111;
  display: flex;
  flex-direction: column;
  font-family: "GT-America", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  transition: 3s background-color ease, color 3s ease;
}

body.is-night,
body.is-weekend {
  background-color: #213FD9;
  color: #f9f9f9;
}
body.is-night .item-link,
body.is-night .is-archived,
body.is-night .item-extra,
body.is-weekend .item-link,
body.is-weekend .is-archived,
body.is-weekend .item-extra {
  color: #B2B4B8;
}
body.is-night .news:before,
body.is-weekend .news:before {
  background-color: #fff !important;
}
body.is-night .news span,
body.is-weekend .news span {
  color: #B2B4B8;
}

.main {
  width: calc(100% - 60px);
  float: left;
  margin-left: 30px;
  flex: 1 0 auto;
}
h1, h2, h3 {
  font-weight: 400;
}

a,
a:visited {
  color: inherit;
  text-decoration: none;
}