@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #c1d2e7;
  background: rgb(15, 27, 41);
  text-align: left;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 600;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: 600;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #1c90dc;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: white;
  text-decoration: none;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):hover-focus {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):focus {
  outline: 0;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1rem;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #c1d2e7;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 1rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Daniel Eden
 */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}
.wow {
  visibility: hidden;
}

.pl {
  padding-left: 0.5rem;
}

.pr {
  padding-right: 0.5rem;
}

.ml {
  margin-left: 0.5rem;
}

.mr {
  margin-right: 0.5rem;
}

.mt {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mb {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.page--404 .quote {
  font-size: 2.8rem;
  text-align: center;
  font-style: italic;
}
.page--404 .author {
  font-size: 1.5rem;
  text-align: center;
  color: rgba(193, 210, 231, 0.5);
  margin-bottom: 3rem;
  margin-top: -1rem;
}
.page--404 .description {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 3rem;
}

#cms-adminbar ul.nav a {
  background: rgba(22, 114, 175, 0.2);
  color: #c1d2e7;
}
#cms-adminbar ul.nav a:hover {
  background: #1672af;
  color: #fff;
}
#cms-adminbar ul.nav > li.open ul {
  margin-left: 1rem;
}

.alert {
  margin-bottom: 1rem;
  padding: 0.75rem 1.25rem;
  font-weight: normal;
  border-width: 1px;
  border-radius: 0.4rem;
}

.alert--info {
  color: #1672af;
  background: rgba(22, 114, 175, 0.2);
}

.alert--danger {
  color: #ba4040;
  background: rgba(186, 64, 64, 0.2);
}

.avatar {
  border: 1px solid rgba(193, 210, 231, 0.2);
  position: relative;
  border-radius: 0.4rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  max-height: 13rem;
}
.avatar:after {
  content: "";
  box-shadow: inset 0 0 1px 2px rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.avatar .avatar__image {
  display: block;
  transition: all 0.2s ease-in-out;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  background-size: 100%;
}

.button {
  display: inline-block;
  position: relative;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  text-decoration: none;
  background-color: transparent;
  background-repeat: no-repeat;
  color: #c1d2e7;
  border-radius: 4rem;
  border: none;
  padding: 0.7rem 2rem 0.9rem 2rem;
  line-height: 1.6;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}
.button:hover {
  text-decoration: none;
  color: #1c90dc;
}
.button:hover svg path, .button:hover svg polygon, .button:hover svg rect, .button:hover svg circle {
  fill: #1c90dc;
}
.button:focus, .button.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(22, 114, 175, 0.25);
}
.button.disabled, .button:disabled {
  opacity: 0.65;
  color: #6c757d;
  cursor: wait;
}
.button svg {
  height: 0.9rem;
  position: relative;
  top: -0.1rem;
  width: auto;
  margin-right: 0.3rem;
}
.button svg path, .button svg polygon, .button svg rect, .button svg circle {
  fill: #c1d2e7;
}
.button--transparent {
  background-color: transparent;
  text-decoration: underline;
  box-shadow: none;
}
.button--transparent:hover {
  background-color: transparent;
  text-decoration: underline;
}
.button--primary {
  color: #c1d2e7;
  box-shadow: 0px 0px 0px 2px rgba(0, 0, 0, 0.3), 0px 0px 20px 10px rgba(22, 114, 175, 0.2), inset 0px 0px 0px 2px rgba(28, 144, 220, 0.2);
  background-image: linear-gradient(rgba(102, 204, 255, 0.07) 50%, transparent 50%), linear-gradient(#1672af, #0b3754);
}
.button--primary::before {
  content: "";
  border-radius: 999px;
  border-width: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 2px;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
  top: 50%;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
}
.button--primary:hover {
  color: #fff;
  background-color: #105482;
}
.button--primary:hover svg path, .button--primary:hover svg polygon, .button--primary:hover svg rect, .button--primary:hover svg circle {
  fill: #fff;
}
.button--primary:hover::before {
  border-color: rgba(22, 114, 175, 0.3);
}
.button--primary.disabled, .button--primary:disabled {
  opacity: 0.65;
  color: #fff;
}
.button--primary svg path, .button--primary svg polygon, .button--primary svg rect, .button--primary svg circle {
  fill: #fff;
}
.button--secondary {
  border: 1px solid rgba(193, 210, 231, 0.2);
  color: rgba(193, 210, 231, 0.6);
}
.button--secondary:hover {
  border-color: #e6edf5;
  color: #e6edf5;
}
.button--secondary:hover svg path, .button--secondary:hover svg polygon, .button--secondary:hover svg rect, .button--secondary:hover svg circle {
  fill: #e6edf5;
}
.button--secondary svg path, .button--secondary svg polygon, .button--secondary svg rect, .button--secondary svg circle {
  fill: rgba(193, 210, 231, 0.6);
}
.button--large {
  padding: 0.65rem 1.5rem 0.52rem 1.5rem;
  font-size: 130%;
  letter-spacing: 0.05rem;
}
.button--small {
  padding: 0.25rem 2rem 0.2rem 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.05rem;
}
.button--xsmall {
  padding: 0.25rem 1rem 0.2rem 1rem;
  font-size: 0.64rem;
  letter-spacing: 0.05rem;
}
.button--block {
  display: block;
  width: 100%;
}

.floating-buttons {
  position: fixed;
  bottom: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 2;
}

.button--floating {
  padding: 0.64rem 1.6rem;
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.5);
}
.button--floating svg {
  height: 0.8rem;
  top: -0.05rem;
}

.centered__wrapper {
  display: flex;
  flex-direction: column;
  height: 100vh;
  align-items: center;
  justify-content: center;
}
.centered__wrapper .background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.centered__wrapper .background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  filter: grayscale(0.2) opacity(0.3);
}
.centered__wrapper .brand {
  position: relative;
  z-index: 2;
}
.centered__wrapper .brand img {
  display: block;
  position: relative;
  margin: 0 auto;
  height: 5rem;
  left: -10px;
}
.centered__wrapper .inline-modal {
  background: #122030;
  position: relative;
  z-index: 2;
}
.centered__wrapper .inline-modal h1 {
  font-size: 2.8rem;
}
.centered__wrapper .brand {
  margin-bottom: 4rem;
  height: 50px;
  width: 100%;
}
.centered__wrapper .brand svg {
  width: 150px;
  height: 50px;
}
.centered__wrapper .brand svg path, .centered__wrapper .brand svg polygon {
  fill: #1672af;
}
.centered__wrapper .small {
  font-size: 80%;
  color: rgba(193, 210, 231, 0.5);
}
.centered__wrapper form {
  width: 100%;
}
.centered__wrapper .button {
  display: block;
  width: 100%;
}

.label--line {
  display: block;
  text-align: center;
  margin: 2rem 0;
  color: rgba(193, 210, 231, 0.5);
  position: relative;
}
.label--line::before {
  content: "";
  position: absolute;
  left: 0;
  height: 1px;
  width: 100%;
  top: 50%;
  background: rgba(193, 210, 231, 0.2);
  z-index: 1;
}
.label--line span {
  position: relative;
  background: #122030;
  padding: 0 0.5rem;
  z-index: 2;
}

@media (min-width: 576px) {
  .login__wrapper {
    background: transparent;
  }
  .login__wrapper .background  {
    display: none;
  }
  .inline-modal {
    box-shadow: 0 10px 70px rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
  }
}
.comments {
  margin-top: 3rem;
}

.comment {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(193, 210, 231, 0.1);
}

.comment__from {
  margin-bottom: 1rem;
}

.comments__form .form-group {
  margin-left: -1rem;
  margin-right: -1rem;
}

.cookie-consent__access-list {
  margin-bottom: 2rem;
}
.cookie-consent__access-list .row {
  margin-bottom: 1.5rem;
}
.cookie-consent__access-list .row:last-child {
  margin-bottom: 0;
}
.cookie-consent__access-list svg path,
.cookie-consent__access-list svg rect,
.cookie-consent__access-list svg polygon {
  fill: #1672af;
}

body > footer {
  background: #0e1925;
  color: rgba(193, 210, 231, 0.5);
  line-height: 2;
  padding: 2rem 0 0 0;
  text-align: center;
}
body > footer .footer--lower {
  background: #0b141e;
  padding: 3rem 0;
  margin-top: 2rem;
}
body > footer .heading {
  color: rgba(193, 210, 231, 0.6);
  font-weight: bold;
  display: block;
  margin: 1.5rem 0 1rem 0;
}
body > footer .button--secondary {
  background: transparent;
  color: rgba(193, 210, 231, 0.3);
  border: 1px solid rgba(193, 210, 231, 0.1);
  font-weight: normal;
}
body > footer .button--secondary:hover {
  color: #fff;
  border-color: #fff;
  background: transparent;
}
body > footer a {
  color: inherit;
}
body > footer a:hover {
  color: #fff;
  text-decoration: none;
}
body > footer ul li {
  margin: 0 0 0.25rem 0;
}
body > footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body > footer ul.list--inline li {
  display: inline-block;
  margin-right: 1rem;
}
body > footer ul.list--inline li a {
  display: inline-block;
  padding: 0.8rem 1rem;
  line-height: 1.6;
}
body > footer ul.list--inline li a.button {
  padding-left: 2rem;
  padding-right: 2rem;
}
body > footer ul.list--inline li a svg {
  height: 0.9rem;
  position: relative;
  top: -0.1rem;
  width: auto;
  margin-right: 0.3rem;
}
body > footer ul.list--inline li a svg path, body > footer ul.list--inline li a svg polygon, body > footer ul.list--inline li a svg rect, body > footer ul.list--inline li a svg circle {
  fill: rgba(193, 210, 231, 0.3);
}
body > footer ul.list--inline li a.link--social {
  background: #969BA0;
  border-radius: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  padding: 0;
}
body > footer ul.list--inline li a.link--social:hover {
  background: #fff;
}
body > footer hr {
  background: rgba(193, 210, 231, 0.1);
}
body > footer .status--fail svg path, body > footer .status--fail svg polygon, body > footer .status--fail svg rect, body > footer .status--fail svg circle {
  fill: rgba(136, 51, 51, 0.7) !important;
}

.affiliates {
  margin: 2rem 0 0 0;
  display: flex;
  justify-content: center;
  flex-direction: row;
}

.affiliates__link img {
  opacity: 0.2;
}
.affiliates__link:hover img {
  opacity: 0.6;
}

.footer__copyright {
  font-size: 0.8rem;
  padding: 2rem 0 0 0;
  line-height: 1.6;
}
.footer__copyright a {
  color: inherit;
}
.footer__copyright .small {
  color: rgba(193, 210, 231, 0.2);
  line-height: 1.4;
  margin-top: 1rem;
  font-size: 0.7rem;
}

@media (min-width: 576px) and (max-width: 880px) {
  body > footer .heading {
    margin: 0 0 1.5rem 0;
  }
  body > footer ul.list--inline li a.link--social {
    height: 40px;
    width: 40px;
  }
}
form fieldset {
  margin-left: -1rem;
  margin-right: -1rem;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(2.4rem + 2px);
  padding: 0.4rem 0;
  font-weight: normal;
  line-height: 1.6;
  color: #1672af;
  font-size: 1.1rem;
  background-color: transparent;
  background-clip: padding-box;
  border: none;
  border-bottom: 1px solid rgba(193, 210, 231, 0.1);
  transition: all 0.15s ease-in-out;
}
.form-control::placeholder {
  color: #ced4da;
  opacity: 1;
}
.form-control:focus {
  outline: none;
  border-color: #1672af;
  color: #c1d2e7;
}
.form-control:focus::placeholder {
  opacity: 0.3;
}

textarea {
  resize: none;
  min-height: 8rem;
}

.form-control--disabled {
  color: rgba(22, 114, 175, 0.4);
  border-color: rgba(193, 210, 231, 0.1);
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: rgba(193, 210, 231, 0.5);
  font-size: 0.8rem;
}

.form-group {
  position: relative;
  margin-bottom: 1rem;
  border-radius: 0.4rem;
  padding: 1rem;
}
.form-group label {
  display: block;
  margin-bottom: 0;
}
.form-group--required label:after {
  content: "*";
  margin-left: 0.5rem;
  color: rgba(22, 114, 175, 0.5);
  transform: scale(1.6);
  display: inline-block;
}

.form-group--opened label {
  transform: translateY(-1.3rem);
  opacity: 1;
  font-size: 0.8rem;
}

.form-group--focus {
  background: rgba(22, 114, 175, 0.1);
}

.forums__forum,
.forums__topic,
.forums__post {
  padding: 1rem 0;
}

.forums__forum:not(.forums__forum--unread),
.forums__topic:not(.forums__forum--unread),
.forums__post:not(.forums__post--unread) {
  border-bottom: 1px solid rgba(193, 210, 231, 0.05);
}

.forums__forum-title {
  margin-bottom: 0;
}

.forums__forum--unread,
.forums__post--unread {
  background-color: rgba(22, 114, 175, 0.1);
  border-radius: 0.4rem;
  margin-bottom: 0.25rem;
}
.forums__forum--unread .forums__topics__pagination,
.forums__post--unread .forums__topics__pagination {
  margin-bottom: 0;
}

.forums__forum__title {
  display: block;
  margin: 0;
  font-weight: 600;
  font-size: 1.25rem;
  color: inherit;
  margin-top: -0.5rem;
}

.forums__forum-description {
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: rgba(193, 210, 231, 0.5);
}

.forums__topics__header {
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-size: 0.8rem;
}

.forums__topic__title {
  margin: 0;
  font-weight: 600;
  color: inherit;
}

.forums__forum__description {
  font-size: 0.8rem;
  line-height: 140%;
  color: rgba(193, 210, 231, 0.5);
}

.forums__forum__metadata {
  font-size: 0.8rem;
  line-height: 140%;
  color: rgba(193, 210, 231, 0.5);
}

.forums__forum__topic {
  font-weight: 600;
}

.forums__topic__sticky {
  margin-right: 0.5rem;
  text-transform: uppercase;
  color: rgba(193, 210, 231, 0.5);
  font-size: 80%;
}

.forum__avatar {
  border-radius: 0.2rem;
}

.forums__topics__pagination {
  list-style: none;
  margin: 0.5rem 0 0.5rem 0;
  padding: 0;
  font-size: 0.64rem;
}
.forums__topics__pagination li {
  display: inline-block;
  margin: 0 0.25rem 0 0;
}
.forums__topics__pagination li a {
  padding: 0.25rem;
  background-color: rgba(22, 114, 175, 0.1);
  border-radius: 0.2rem;
}

.forum__icon {
  width: 1rem;
  height: 1rem;
}

.forums__header {
  padding-bottom: 1rem;
  margin-top: 3rem;
  border-bottom: 2px solid rgba(22, 114, 175, 0.2);
}

.forum__footer {
  margin-top: 2rem;
}

.forum__post__signature {
  font-size: 0.8rem;
  color: rgba(193, 210, 231, 0.5);
  margin: 1rem 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(193, 210, 231, 0.05);
}

.forum-latest {
  padding: 3rem 0;
}

.forum-latest__topic {
  position: relative;
}

.forum-latest__topic a {
  display: block;
  padding: 1rem 0;
}

.forum-latest__topic a:hover h4,
.forum-latest__topic a:hover p {
  color: white;
}

.forum-latest__topic svg {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1rem;
  height: 1rem;
  margin-top: -0.5rem;
}

.forum-latest__topic svg {
  fill: rgba(193, 210, 231, 0.1);
}

.forum-latest__topic__title {
  margin-bottom: 0.25rem;
  color: #c1d2e7;
}

.forum-latest__forum__title {
  margin: 0;
  font-size: 0.7rem;
  color: rgba(193, 210, 231, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.01rem;
}

.forum-latest__topic--unread .forum-latest__forum__title,
.forum-latest__topic--unread .forum-latest__topic__title {
  color: #1c90dc;
}

.forum-latest__topic--unread svg path {
  fill: #1c90dc;
}

.frame {
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  position: relative;
  border-radius: 0.4rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  max-height: 13rem;
  /*
  // Inner shadow
  &:after {
      content: '';
      box-shadow: inset 0 0 1px 2px rgba(0,0,0,0.6);
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
  }
  */
}
.frame img {
  transition: all 0.2s ease-in-out;
}

.row {
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin-left: -1rem;
  margin-right: -1rem;
}

.row--sm-gutter {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.row--sm-gutter .col--1 {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.row--sm-gutter .col--2 {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.row--sm-gutter .col--3 {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.row--sm-gutter .col--4 {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.row--sm-gutter .col--5 {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.row--sm-gutter .col--6 {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.row--sm-gutter .col--7 {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.row--sm-gutter .col--8 {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.row--sm-gutter .col--9 {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.row--sm-gutter .col--10 {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.row--sm-gutter .col--11 {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.row--sm-gutter .col--12 {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.row--no-gutter {
  margin-left: 0;
  margin-right: 0;
}
.row--no-gutter .col--1 {
  padding-right: 0;
  padding-left: 0;
}
.row--no-gutter .col--2 {
  padding-right: 0;
  padding-left: 0;
}
.row--no-gutter .col--3 {
  padding-right: 0;
  padding-left: 0;
}
.row--no-gutter .col--4 {
  padding-right: 0;
  padding-left: 0;
}
.row--no-gutter .col--5 {
  padding-right: 0;
  padding-left: 0;
}
.row--no-gutter .col--6 {
  padding-right: 0;
  padding-left: 0;
}
.row--no-gutter .col--7 {
  padding-right: 0;
  padding-left: 0;
}
.row--no-gutter .col--8 {
  padding-right: 0;
  padding-left: 0;
}
.row--no-gutter .col--9 {
  padding-right: 0;
  padding-left: 0;
}
.row--no-gutter .col--10 {
  padding-right: 0;
  padding-left: 0;
}
.row--no-gutter .col--11 {
  padding-right: 0;
  padding-left: 0;
}
.row--no-gutter .col--12 {
  padding-right: 0;
  padding-left: 0;
}

.col--center {
  justify-content: center;
}

.col--left {
  justify-content: flex-start;
}

.col--right {
  justify-content: flex-end;
}

/** Columns */
.col--1 {
  display: block;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-right: 1rem;
  padding-left: 1rem;
  flex-basis: 7.8333333333%;
  max-width: 8.3333333333%;
}

.col--2 {
  display: block;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-right: 1rem;
  padding-left: 1rem;
  flex-basis: 16.1666666667%;
  max-width: 16.6666666667%;
}

.col--3 {
  display: block;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-right: 1rem;
  padding-left: 1rem;
  flex-basis: 24.5%;
  max-width: 25%;
}

.col--4 {
  display: block;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-right: 1rem;
  padding-left: 1rem;
  flex-basis: 32.8333333333%;
  max-width: 33.3333333333%;
}

.col--5 {
  display: block;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-right: 1rem;
  padding-left: 1rem;
  flex-basis: 41.1666666667%;
  max-width: 41.6666666667%;
}

.col--6 {
  display: block;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-right: 1rem;
  padding-left: 1rem;
  flex-basis: 49.5%;
  max-width: 50%;
}

.col--7 {
  display: block;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-right: 1rem;
  padding-left: 1rem;
  flex-basis: 57.8333333333%;
  max-width: 58.3333333333%;
}

.col--8 {
  display: block;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-right: 1rem;
  padding-left: 1rem;
  flex-basis: 66.1666666667%;
  max-width: 66.6666666667%;
}

.col--9 {
  display: block;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-right: 1rem;
  padding-left: 1rem;
  flex-basis: 74.5%;
  max-width: 75%;
}

.col--10 {
  display: block;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-right: 1rem;
  padding-left: 1rem;
  flex-basis: 82.8333333333%;
  max-width: 83.3333333333%;
}

.col--11 {
  display: block;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-right: 1rem;
  padding-left: 1rem;
  flex-basis: 91.1666666667%;
  max-width: 91.6666666667%;
}

.col--12 {
  display: block;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-right: 1rem;
  padding-left: 1rem;
  flex-basis: 99.5%;
  max-width: 100%;
}

.row .line {
  width: 1px;
  margin-left: -1px;
  display: block;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  background: #EBEFF0;
}

.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container--fluid {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.container--very-narrow {
  max-width: 600px;
}

.container--narrow {
  max-width: 800px;
}

.container--wide {
  max-width: 1400px;
}

@media (min-width: 880px) {
  .col--md--1 {
    max-width: 8.3333333333%;
  }
  .col--md--2 {
    max-width: 16.6666666667%;
  }
  .col--md--3 {
    max-width: 25%;
  }
  .col--md--4 {
    max-width: 33.3333333333%;
  }
  .col--md--5 {
    max-width: 41.6666666667%;
  }
  .col--md--6 {
    max-width: 50%;
  }
  .col--md--7 {
    max-width: 58.3333333333%;
  }
  .col--md--8 {
    max-width: 66.6666666667%;
  }
  .col--md--9 {
    max-width: 75%;
  }
  .col--md--10 {
    max-width: 83.3333333333%;
  }
  .col--md--11 {
    max-width: 91.6666666667%;
  }
  .col--md--12 {
    max-width: 100%;
  }
  .col--md--order--1 {
    order: 1;
  }
  .col--md--order--2 {
    order: 2;
  }
  .col--md--order--3 {
    order: 3;
  }
  .col--md--order--4 {
    order: 4;
  }
  .col--md--order--5 {
    order: 5;
  }
  .col--md--order--6 {
    order: 6;
  }
  .col--md--order--7 {
    order: 7;
  }
  .col--md--order--8 {
    order: 8;
  }
  .col--md--order--9 {
    order: 9;
  }
  .col--md--order--10 {
    order: 10;
  }
  .col--md--order--11 {
    order: 11;
  }
  .col--md--order--12 {
    order: 12;
  }
  .section__upper {
    margin-bottom: 4rem;
  }
}
@media (min-width: 576px) and (max-width: 880px) {
  .col--sm--1 {
    max-width: 8.3333333333%;
  }
  .col--sm--2 {
    max-width: 16.6666666667%;
  }
  .col--sm--3 {
    max-width: 25%;
  }
  .col--sm--4 {
    max-width: 33.3333333333%;
  }
  .col--sm--5 {
    max-width: 41.6666666667%;
  }
  .col--sm--6 {
    max-width: 50%;
  }
  .col--sm--7 {
    max-width: 58.3333333333%;
  }
  .col--sm--8 {
    max-width: 66.6666666667%;
  }
  .col--sm--9 {
    max-width: 75%;
  }
  .col--sm--10 {
    max-width: 83.3333333333%;
  }
  .col--sm--11 {
    max-width: 91.6666666667%;
  }
  .col--sm--12 {
    max-width: 100%;
  }
  .col--sm--order-1 {
    order: 1;
  }
  .col--sm--order-2 {
    order: 2;
  }
  .col--sm--order-3 {
    order: 3;
  }
  .col--sm--order-4 {
    order: 4;
  }
  .col--sm--order-5 {
    order: 5;
  }
  .col--sm--order-6 {
    order: 6;
  }
  .col--sm--order-7 {
    order: 7;
  }
  .col--sm--order-8 {
    order: 8;
  }
  .col--sm--order-9 {
    order: 9;
  }
  .col--sm--order-10 {
    order: 10;
  }
  .col--sm--order-11 {
    order: 11;
  }
  .col--sm--order-12 {
    order: 12;
  }
  .col--sm--left {
    justify-content: flex-start;
  }
  .col--sm--center {
    justify-content: center;
  }
  .col--sm--right {
    justify-content: flex-end;
  }
  body > main > .content {
    padding: 0 0 4rem 0;
  }
  body > main > .content > .container {
    padding-left: 0;
    padding-right: 0;
  }
  .row .line {
    width: 100%;
    height: 1px;
    margin: 2rem 0;
  }
}
body > header {
  display: flex;
  flex-direction: column;
  position: relative;
}

.header--minimal {
  height: 80px;
}

.header--gray {
  background-color: #EBEFF0;
  background: linear-gradient(#fefefe, #f9f9f9);
}

.header__background {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.header__background > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}
.header__background:after {
  content: "";
  position: absolute;
  z-index: 101;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(to bottom, rgba(22, 114, 175, 0) 70%, #0f1b29 100%);
}

@media (min-width: 880px) {
  .header--with-image {
    height: 70vh;
    max-height: 700px;
  }
}
@media (min-width: 576px) and (max-width: 880px) {
  .header--with-image {
    height: 70vh;
    max-height: 600px;
  }
}
@media (max-width: 576px) {
  .header--with-image {
    height: 70vh;
    max-height: 500px;
  }
}
.icon--circle {
  display: flex;
  border-radius: 6rem;
  background: rgba(22, 114, 175, 0.2);
  padding: 1rem;
}

.img-responsive {
  width: 100%;
  height: inherit;
}

.jumbotron-wrapper {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.jumbotron h1 {
  font-size: 4rem;
  letter-spacing: -0.02rem;
  margin-bottom: 0rem;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}
.jumbotron h2 {
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}
.jumbotron .lead {
  max-width: 40rem;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  font-size: 1.25rem;
}
.jumbotron .arrow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1rem;
}
.jumbotron .arrow svg {
  display: block;
  margin: 0 auto;
  width: 1.5rem;
}
.jumbotron .arrow svg path {
  fill: rgba(193, 210, 231, 0.7);
}
.jumbotron--inverse h1, .jumbotron--inverse h2, .jumbotron--inverse p {
  color: #fff;
}
.jumbotron--inverse .arrow svg path {
  fill: #fff;
}

@media (min-width: 880px) {
  .jumbotron h1 {
    font-size: 4.8rem;
  }
}
@media (min-width: 576px) and (max-width: 880px) {
  .jumbotron h1 {
    font-size: 3.8rem;
  }
  .jumbotron .lead {
    font-size: 1.05rem;
  }
}
@media (max-width: 576px) {
  .jumbotron h1 {
    font-size: 3rem;
    line-height: 0.9;
    margin-bottom: 1rem;
  }
  .jumbotron .lead {
    font-size: 1rem;
  }
}
body > main {
  display: flex;
  flex-direction: column;
  flex: auto;
  margin-bottom: 3rem;
}
body > main h1.text--center {
  margin-top: 2rem;
}
body > main h1.text--center:after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  max-width: 200px;
  background: rgba(193, 210, 231, 0.2);
  margin: 1rem auto 2rem auto;
}

body.modal-active {
  overflow: hidden;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  height: 100vh;
  width: 100vw;
  z-index: 1040;
  padding: 1rem;
}
.modal .modal__wrapper {
  max-width: 600px;
}

.modal--large .modal__wrapper {
  max-width: 800px;
}

.inline-modal {
  display: flex;
  padding: 2rem;
  width: 100%;
}

.modal__overlay {
  background: rgba(8, 15, 22, 0.5);
  -webkit-backdrop-filter: saturate(80%) blur(15px);
  backdrop-filter: saturate(80%) blur(15px);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
}

.modal--open {
  display: flex;
  align-items: center;
}

.modal__wrapper {
  display: flex;
  width: 100%;
  margin: 2rem auto;
  position: relative;
}

.modal__dialog {
  display: flex;
  flex-direction: column;
  background: #122030;
  box-shadow: 0 10px 70px rgba(0, 0, 0, 0.15);
  border-radius: 0.5rem;
  z-index: 1050;
  color: #c1d2e7;
  border-radius: 1rem;
  width: 100%;
  padding: 2rem 2rem;
  overflow: hidden;
}

.modal__dialog--no-padding {
  padding: 0;
}

.row .modal--pt {
  padding-top: 2rem;
}
.row .modal--pr {
  padding-right: 3rem;
}
.row .modal--pb {
  padding-bottom: 2rem;
}
.row .modal--pl {
  padding-left: 3rem;
}

.modal__content {
  width: 100%;
}

.modal__footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(193, 210, 231, 0.1);
}

.modal__title {
  font-size: 2.1rem;
  font-weight: bold;
}

.modal__title--large {
  font-size: 2.8rem;
}

.decorative-image {
  height: 100%;
  width: 100%;
}
.decorative-image img {
  object-fit: cover;
  object-position: center center;
}

.modal__close {
  position: absolute;
  color: white;
  top: -2.5rem;
  right: 0;
  cursor: pointer;
  font-size: 1.1rem;
  z-index: 1051;
}
.modal__close svg {
  position: relative;
  margin-right: 0.5rem;
  width: 0.8rem;
  height: 0.8rem;
  top: -0.09rem;
}
.modal__close svg path {
  fill: rgba(255, 255, 255, 0.5);
}
.modal__close:hover {
  color: #fff;
}
.modal__close:hover svg path {
  fill: #fff;
}

@media (min-width: 576px) {
  .modal {
    padding: 2rem;
  }
  .inline-modal {
    max-width: 30rem;
  }
  .inline-modal--wide {
    max-width: 40rem;
  }
  .modal__dialog {
    padding: 3rem 4rem;
  }
  .modal__dialog--no-padding {
    padding: 0;
  }
  .modal__content {
    display: flex;
    flex-direction: column;
  }
  .modal__footer {
    display: flex;
  }
  .modal__footer .button {
    margin: 0 0.25rem;
  }
}
@media (max-width: 576px) {
  .modal__dialog {
    height: 80vh;
    overflow-y: scroll;
  }
  .modal__footer {
    flex-direction: column;
  }
  .modal__footer .button {
    margin: 0 0 0.5rem 0;
    text-align: center;
    width: 100%;
  }
  .modal__footer .button:last-child {
    margin-bottom: 0;
  }
}
html.fullscreen {
  height: 100vh;
}

.rivendell-music-content {
  margin-top: 2rem;
}
.rivendell-music-content h2 {
  margin-top: 1rem;
}
.rivendell-music-content h3 {
  font-size: 2.1rem;
}
.rivendell-music-content header {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(193, 210, 231, 0.1);
}

.album {
  display: flex;
  flex-direction: column;
}
.album:hover .album__title {
  color: white;
}
.album:hover .album__artwork {
  transform: scale(1.05);
}

.album__type {
  text-transform: uppercase;
  font-weight: normal;
  color: rgba(193, 210, 231, 0.5);
  font-size: 0.8rem;
}
.album__type + h1 {
  margin-top: -0.5rem;
}

.album__artwork {
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.2);
  position: relative;
  border-radius: 0.4rem;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
  /*
  // Inner shadow
  &:after {
      content: '';
      box-shadow: inset 0 0 1px 2px rgba(0,0,0,0.6);
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
  }
  */
}
.album__artwork img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.artist__albums__album {
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 0.4rem;
  background-color: rgba(255, 255, 255, 0.02);
  transition: background-color 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  height: calc(100% - 1rem);
}
.artist__albums__album:hover {
  background-color: rgba(255, 255, 255, 0.06);
}

.album__title {
  font-size: 0.9rem;
  color: rgba(193, 210, 231, 0.5);
  margin: 0.5rem 0 0 0;
  transition: color 0.2s ease-in-out;
  font-weight: bold;
  color: #c1d2e7;
}

.album__year {
  font-size: 0.8rem;
  color: rgba(193, 210, 231, 0.5);
}

.album__tracks {
  padding: 0 1rem;
}
.album__tracks .row {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(193, 210, 231, 0.1);
}
.album__tracks a:last-child .row {
  border-bottom: none;
}
.album__tracks .rating-values {
  margin-top: 0.25rem;
}
.album__tracks .rating-values .stars .rate svg {
  height: 1rem;
  width: 1rem;
}

.album__tracks__title {
  text-transform: uppercase;
  color: rgba(193, 210, 231, 0.5);
  font-size: 0.8rem;
}

.now-playing {
  margin-bottom: 4rem;
}
.now-playing h3 {
  text-transform: uppercase;
  font-size: 0.8rem;
  color: rgba(193, 210, 231, 0.5);
  letter-spacing: 0.1rem;
  font-family: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
}

.now-playing__track {
  font-size: 2.73rem;
}
.now-playing__track a {
  color: inherit;
}

.now-playing__artist {
  font-size: 1.4rem;
  margin-top: -0.5rem;
}

.nav__site {
  box-sizing: border-box;
  position: relative;
  z-index: 3;
  height: 80px;
  color: #fff;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(15, 27, 41, 0));
}
.nav__site .brand {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: left;
}
.nav__site .brand svg path, .nav__site .brand svg polygon, .nav__site .brand svg rect, .nav__site .brand svg circle {
  fill: #c1d2e7;
}
.nav__site .brand img {
  height: 100%;
  box-sizing: border-box;
  padding: 0.5rem 0;
}
.nav__site ul.nav__main {
  box-sizing: border-box;
  height: 80px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}
.nav__site ul.nav__main .nav__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  align-items: center;
  margin: 0;
  box-sizing: border-box;
  position: relative;
}
.nav__site ul.nav__main .nav__item--opened .nav__submenu {
  display: block;
}
.nav__site ul.nav__main .nav__item--submenu-enabled .nav__link--with-submenu span > svg {
  width: 0.4rem;
  height: 100%;
  transform: rotate(90deg);
  margin-left: 0.5rem;
}
.nav__site ul.nav__main .nav__item--submenu-enabled .nav__link--with-submenu span > svg circle,
.nav__site ul.nav__main .nav__item--submenu-enabled .nav__link--with-submenu span > svg path,
.nav__site ul.nav__main .nav__item--submenu-enabled .nav__link--with-submenu span > svg polygon,
.nav__site ul.nav__main .nav__item--submenu-enabled .nav__link--with-submenu span > svg rect {
  fill: rgba(193, 210, 231, 0.7);
}
.nav__site ul.nav__main .nav__item .nav__text,
.nav__site ul.nav__main .nav__item .nav__link {
  color: rgba(193, 210, 231, 0.7);
  height: 100%;
  padding: 1rem 1rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.2s ease;
}
.nav__site ul.nav__main .nav__item .nav__text span,
.nav__site ul.nav__main .nav__item .nav__link span {
  white-space: nowrap;
}
.nav__site ul.nav__main .nav__item .nav__text a,
.nav__site ul.nav__main .nav__item .nav__link a {
  transition: all 0.2s ease;
  color: rgba(193, 210, 231, 0.7);
}
.nav__site ul.nav__main .nav__item .nav__text > svg,
.nav__site ul.nav__main .nav__item .nav__link > svg {
  width: 1rem;
  height: 1rem;
  position: relative;
  top: -0.05rem;
  color: rgba(230, 237, 245, 0.7);
  margin-right: 0.5rem;
}
.nav__site ul.nav__main .nav__item .nav__link:hover,
.nav__site ul.nav__main .nav__item .nav__text a:hover {
  text-decoration: none;
  color: #fff;
}
.nav__site .nav__item .avatar {
  width: 30px;
  height: 30px;
  background-color: #000;
  display: inline-block;
  margin-left: 1rem;
}
.nav__site.nav__site--fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /*
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  background-color: rgba(0,0,0,0.8);

  border-bottom: 1px solid #111;
  */
}

.nav__link__button {
  color: rgba(193, 210, 231, 0.7);
  padding: 1rem 0;
  text-align: center;
}
.nav__link__button:hover {
  color: #fff;
}
.nav__link__button:hover circle,
.nav__link__button:hover path,
.nav__link__button:hover polygon,
.nav__link__button:hover rect {
  fill: #fff;
}
.nav__link__button svg {
  height: 0.8rem;
  width: 0.8rem;
  position: relative;
  top: -0.15rem;
  margin-right: 0.3rem;
}
.nav__link__button svg circle path,
.nav__link__button svg polygon,
.nav__link__button svg rect {
  fill: rgba(193, 210, 231, 0.7);
}
.nav__link__button .button {
  padding: 0.8rem 1.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.nav__toggle .icon {
  background: #fff;
}
.nav__toggle .icon:before, .nav__toggle .icon:after {
  background: #fff;
}

.nav__submenu {
  list-style-type: none;
  display: none;
  padding: 0;
  width: 100%;
}

.nav__submenu__item {
  margin: 0;
  position: relative;
}
.nav__submenu__item > a {
  display: block;
  padding: 1rem 4rem 1rem 4rem;
  transition: all 0.15s ease;
  border-radius: 0.5rem;
}
.nav__submenu__item > a:hover {
  text-decoration: none;
  background: rgba(22, 114, 175, 0.2);
}
.nav__submenu__item > a:hover .submenu__item__title {
  color: #fff;
}
.nav__submenu__item > a:hover .submenu__item__description {
  color: rgba(255, 255, 255, 0.6);
}
.nav__submenu__item > a:hover .submenu__item__content__icon svg path,
.nav__submenu__item > a:hover .submenu__item__content__icon svg polygon,
.nav__submenu__item > a:hover .submenu__item__content__icon svg rect {
  fill: rgba(193, 210, 231, 0.7);
}
.nav__submenu__item > a .submenu__item__content__icon svg {
  width: 1.5rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 1rem;
}
.nav__submenu__item > a .submenu__item__content__icon svg path,
.nav__submenu__item > a .submenu__item__content__icon svg polygon,
.nav__submenu__item > a .submenu__item__content__icon svg rect,
.nav__submenu__item > a .submenu__item__content__icon svg circle {
  fill: rgba(193, 210, 231, 0.3);
}

.submenu__item__title {
  font-weight: bold;
  color: #c1d2e7;
  display: block;
}

.submenu__item__description {
  color: rgba(193, 210, 231, 0.3);
  display: block;
  font-size: 0.9rem;
}

@media (min-width: 880px) {
  .nav__toggle {
    display: none;
  }
  .main-nav ul.nav .nav__item {
    cursor: pointer;
  }
  .main-nav ul.nav .nav__item svg {
    display: none;
  }
  .main-nav ul.nav .nav__item svg.caret-down {
    display: inline-block;
  }
  .main-nav ul.nav .nav__item.active a span:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #1672af;
  }
  .main-nav ul.nav .nav__item .nav__link:hover {
    color: #fff;
  }
}
@media (min-width: 576px) {
  .nav__submenu__overlay {
    background: rgba(15, 27, 41, 0.7);
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
  }
  .nav__submenu {
    background: #122030;
    box-shadow: 0 10px 70px rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
    list-style-type: none;
    position: absolute;
    top: 80px;
    right: -1rem;
    padding: 1rem 1rem;
    z-index: 1000;
    width: 400px;
    display: none;
  }
}
@media (max-width: 879.98px) {
  .main-nav {
    background: #fff;
    box-shadow: 0 -4px 14px 0 rgba(0, 0, 0, 0.05);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1030;
    padding-bottom: 20px;
  }
  .main-nav .nav-container {
    height: 80px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    transition: height 0.2s ease;
    -webkit-transition: height 0.2s ease;
  }
  .main-nav .nav-container.nav-container--3-items ul.nav .nav__item {
    width: 33.33333%;
  }
  .main-nav .nav-container.nav-container--4-items ul.nav .nav__item {
    width: 25%;
  }
  .main-nav .nav-container.nav-container--5-items ul.nav .nav__item {
    width: 20%;
  }
  .main-nav ul.nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start;
  }
  .main-nav ul.nav .nav__item {
    flex-direction: row;
    flex-wrap: wrap;
    min-height: 80px;
    width: 16.6666666667%;
    text-align: center;
    font-size: 0.7rem;
    font-weight: normal;
    text-transform: none;
  }
  .main-nav ul.nav .nav__item .nav__link {
    padding: 0.75rem 0 0;
  }
  .main-nav ul.nav .nav__item .nav__link span {
    line-height: 40px;
  }
  .main-nav ul.nav .nav__item .nav__link span:after {
    height: 0 !important;
  }
  .main-nav ul.nav .nav__item svg {
    display: block;
    margin: 0 auto;
    width: 20px;
    height: 20px;
  }
  .main-nav ul.nav .nav__item span {
    line-height: 25px;
  }
  .main-nav .nav__item svg .gfx--fill {
    fill: rgba(193, 210, 231, 0.7);
    stroke: none;
  }
  .main-nav .nav__item svg .gfx--stroke {
    stroke: rgba(193, 210, 231, 0.7);
  }
  .main-nav .nav__item.active svg .gfx--fill {
    fill: #1672af;
    stroke: none;
  }
  .main-nav .nav__item.active svg .gfx--stroke {
    stroke: #1672af;
  }
  .main-nav--secondary {
    position: relative;
    box-shadow: none;
    padding-bottom: inherit;
  }
  .main-nav--secondary .content {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .main-nav--secondary .row > div:first-child {
    padding-left: 1rem;
  }
  .main-nav--secondary .row > div:last-child .nav__link {
    padding: 0 1rem 0 0;
    display: block;
    color: #1672af;
    font-weight: 600;
    font-size: 0.8rem;
  }
  .main-nav--secondary .row > div:last-child .nav__link span {
    line-height: 60px;
  }
  .main-nav--secondary .row > div:last-child .nav__link svg {
    width: 12px;
    height: 12px;
    display: inline-block;
    margin: -3px -15px 0 0.5rem;
  }
  .main-nav--secondary ul.nav {
    height: 60px;
  }
  .main-nav--secondary ul.nav .version {
    min-height: auto;
    height: 60px;
    width: 120px;
  }
  .main-nav--secondary .offer-header {
    font-size: 1rem;
    text-transform: uppercase;
    margin: 0;
  }
  .main-nav--secondary .details {
    font-size: 0.72rem;
  }
  .main-nav--secondary ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .main-nav--secondary ul > li {
    display: inline-block;
    margin: 0;
  }
  .main-nav--secondary ul > li:after {
    content: "|";
    display: inline-block;
    margin: 0 0.333rem 0 0.667rem;
  }
  .main-nav--secondary ul > li:last-child:after {
    content: "";
  }
}
@media (max-width: 576px) {
  .nav--opened {
    overflow: hidden;
  }
  .nav__toggle {
    z-index: 1001;
  }
  .nav__site ul.nav__main {
    display: none;
    position: fixed;
    flex-direction: column;
    background-color: rgba(15, 27, 41, 0.8);
    -webkit-backdrop-filter: saturate(70%) blur(20px);
    backdrop-filter: saturate(70%) blur(20px);
    height: inherit;
    border-radius: 0;
    box-shadow: none;
    padding-top: 7rem;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
  }
  .nav__site ul.nav__main--mobile-opened {
    display: block;
  }
  .nav__site ul.nav__main .nav__item {
    padding: 0;
    height: inherit;
  }
  .nav__site ul.nav__main .nav__item:after {
    content: "";
    display: block;
    position: relative;
    width: 60vw;
    height: 1px;
    background: rgba(193, 210, 231, 0.1);
    margin: 0 auto;
  }
  .nav__site ul.nav__main .nav__item .avatar {
    margin-right: 0.5rem;
  }
  .nav__site ul.nav__main .nav__item .nav__text a,
.nav__site ul.nav__main .nav__item .nav__text span,
.nav__site ul.nav__main .nav__item .nav__link a,
.nav__site ul.nav__main .nav__item .nav__link span {
    display: block;
    text-align: center;
  }
  .nav__site ul.nav__main .nav__item .nav__link__button {
    width: 100%;
  }
  .nav__site ul.nav__main .nav__item .caret-down {
    margin-left: 0.3rem;
  }
  .nav__site ul.nav__main .nav__item--end-item {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .nav__site ul.nav__main .nav__item--end-item:after {
    display: none;
  }
  .nav__site ul.nav__main .nav__item--end-item .nav__link__button > span {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .nav__toggle {
    display: flex;
    height: 80px;
    align-items: center;
    justify-content: flex-end;
  }
  .nav__toggle .icon {
    position: relative;
    width: 18px;
    height: 2px;
    background-color: rgba(193, 210, 231, 0.7);
    margin-left: 1rem;
    top: 1px;
  }
  .nav__toggle .icon:before, .nav__toggle .icon:after {
    content: "";
    position: absolute;
    display: block;
    width: 18px;
    height: 2px;
    background-color: rgba(193, 210, 231, 0.7);
  }
  .nav__toggle .icon:before {
    top: -7px;
  }
  .nav__toggle .icon:after {
    top: 7px;
  }
  .nav__toggle--opened .icon {
    background: none;
  }
  .nav__toggle--opened .icon:before {
    transform: rotate(45deg);
    top: 0;
  }
  .nav__toggle--opened .icon:after {
    transform: rotate(-45deg);
    top: 0;
  }
  .nav__submenu__item a {
    padding: 0.667rem 0;
    text-align: center;
  }
  .nav__submenu__item a:hover {
    background: none;
    color: rgba(193, 210, 231, 0.7);
  }
  .nav__submenu__item a svg {
    display: none;
  }
  .submenu__item__title {
    font-weight: normal;
    font-size: 0.8rem;
  }
  .submenu__item__description {
    display: none;
  }
  .nav__link__button > span {
    display: block;
    width: 100%;
  }
}
.news__list-item {
  margin-bottom: 2rem;
}

.news__list-item__link {
  color: inherit;
}
.news__list-item__link:hover {
  color: inherit;
}
.news__list-item__link:hover .news__list-item__image img {
  transform: scale(1.05);
}

.news__list-item__category {
  padding: 1rem 0;
  font-size: 0.7rem;
  color: rgba(193, 210, 231, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.01rem;
}

/*
.news__list-item__image {
    margin-bottom: $spacer;
    border: 1px solid transparentize($body--color, .8);
    position: relative;
    border-radius: $border-radius;
    overflow: hidden;

    display: flex;
    align-items: center;
    max-height: 13rem;

    // Inner shadow
    &:after {
        content: '';
        box-shadow: inset 0 0 1px 2px rgba(0,0,0,0.6);
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    img {
        transition: all .2s ease-in-out;
    }
}
*/
.news__list-item__header {
  font-size: 1.7rem;
}

.news__list-item__date {
  color: rgba(193, 210, 231, 0.5);
  font-size: 0.8rem;
  margin-bottom: 0;
}

/**
 * Single blog post
 */
.news__post__header__background {
  background: #000;
  overflow: hidden;
  position: absolute;
  top: 0px;
  left: 0px;
  display: flex;
  width: 100%;
  height: 66%;
}

.news__post__header__background_image {
  object-fit: cover;
  width: calc(100% + 2rem);
  height: calc(100% + 2rem);
  margin: -1rem;
  filter: blur(10px);
  opacity: 0.8;
}

.news__post__header__image {
  position: relative;
  margin-top: 2rem;
  margin-bottom: 2rem;
  height: 70vh;
  max-height: 700px;
  overflow: hidden;
}
.news__post__header__image .container {
  max-width: 1120px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.news__post__header__image img {
  border-radius: 0.5rem;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.news__post__header__image__caption {
  position: relative;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-style: italic;
  color: rgba(193, 210, 231, 0.5);
}
.news__post__header__image__caption .container {
  max-width: 1120px;
}

.news__post__header__image + .news__post__header__image__caption {
  margin-top: -1rem;
  margin-bottom: 3rem;
}

.news__post__title + .news__post__details {
  margin: -0.5rem 0 2rem 0;
}

.news__post__subject {
  color: #1672af;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.news__post__details {
  color: rgba(193, 210, 231, 0.5);
}

.news__post__published {
  margin-right: 1rem;
  position: relative;
}
.news__post__published:after {
  content: "";
  width: 1px;
  height: 100%;
  background: rgba(193, 210, 231, 0.2);
  display: block;
  position: absolute;
  right: -1rem;
  top: 0;
}

.news__post__categories {
  margin-left: 1rem;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.news__post__category__tag {
  margin-right: 0.5rem;
}
.news__post__category__tag:last-child {
  margin-right: 0;
}

.news__post__byline {
  border-top: 1px solid #e9ecef;
  margin-top: 4rem;
  padding-top: 4rem;
}

.news__post__byline__image {
  border-radius: 100%;
  width: 4rem;
  height: 4rem;
}

.news__post__byline__name {
  display: block;
  font-weight: bold;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin: 1rem 0;
}

@media (max-width: 880px) {
  .news__post__header__image {
    height: 40vh;
    max-height: 40vh;
  }
}
@media (max-width: 576px) {
  .news__post--listitem img {
    max-width: inherit;
  }
  .news__post--listitem h2 {
    margin-top: 1rem;
  }
  .news__post__byline {
    margin-bottom: 4rem;
  }
  .news__post {
    margin-top: -80px;
  }
  .news__post__header__image {
    margin-top: 0;
  }
  .news__post__header__image .container {
    padding: 0;
  }
  .news__post__header__image img {
    border-radius: 0;
  }
}
@media (min-width: 880px) {
  .visible--mobile {
    display: none !important;
  }
}
@media (max-width: 879.98px) {
  .visible--mobile {
    display: block !important;
  }
  .hidden--mobile {
    display: none !important;
  }
}
.pagination {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination > li {
  display: inline-block;
  margin: 0 0.5rem;
}
.pagination > li > a,
.pagination > li > span {
  display: block;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  font-size: 0.8rem;
  border-radius: 4rem;
}
.pagination > li > a svg,
.pagination > li > span svg {
  height: 0.8rem;
  width: 0.8rem;
}
.pagination > li > a svg path,
.pagination > li > span svg path {
  fill: #1672af;
}
.pagination > li a:hover {
  background-color: rgba(22, 114, 175, 0.2);
  color: #1672af;
}
.pagination > li.active {
  border-radius: 4rem;
  background-color: #1672af;
  color: rgb(15, 27, 41);
  cursor: default;
}
.pagination > li.disabled span {
  color: rgba(193, 210, 231, 0.5);
}

body.player--active {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-image: none;
}
body.player--active > footer {
  display: none;
}
body.player--active .nav__site {
  background: none;
}

body.player--lórien {
  background-color: #023;
}

body.player--the_green_dragon {
  background-color: #020;
}

.rivendell-player {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.rivendell-player .container {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: space-between;
  height: 100%;
  padding: 0;
}
.rivendell-player .text--warning {
  color: #ba4040;
  background: rgba(186, 64, 64, 0.2);
  border-radius: 0.5rem;
  padding: 1rem;
}
.rivendell-player button {
  color: #c1d2e7;
  background-color: #1672af;
}
.rivendell-player button svg {
  -webkit-filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.7));
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.7));
  margin: 0;
}
.rivendell-player .button--icon-only {
  background-color: transparent;
  padding: 0.8rem;
  border: 2px solid rgba(193, 210, 231, 0.1);
  height: 50px;
  width: 50px;
}
.rivendell-player .button--icon-only svg {
  position: relative;
  top: -4px;
}
.rivendell-player .button--icon-only:active, .rivendell-player .button--icon-only:hover {
  border-color: rgba(193, 210, 231, 0.1);
  background-color: rgba(22, 114, 175, 0.2);
}
.rivendell-player .button--icon-only:active svg circle,
.rivendell-player .button--icon-only:active svg path,
.rivendell-player .button--icon-only:active svg polygon,
.rivendell-player .button--icon-only:active svg rect, .rivendell-player .button--icon-only:hover svg circle,
.rivendell-player .button--icon-only:hover svg path,
.rivendell-player .button--icon-only:hover svg polygon,
.rivendell-player .button--icon-only:hover svg rect {
  fill: #c1d2e7;
}
.rivendell-player .toggle-play {
  position: relative;
  border-radius: 100%;
  height: 6rem;
  width: 6rem;
  cursor: pointer;
  border: 0;
  transition: all 0.2s ease-in-out;
}
.rivendell-player .toggle-play:focus {
  outline: transparent;
}
.rivendell-player .toggle-play svg {
  width: 2rem;
  height: 2rem;
  margin-top: 0.6rem;
  position: relative;
}
.rivendell-player .toggle-play svg.icon--play {
  margin-left: 0.3rem;
}
.rivendell-player .toggle-play svg.icon--stop {
  width: 1.7rem;
  height: 1.7rem;
  margin-left: 0.1rem;
}
.rivendell-player .toggle-play svg circle,
.rivendell-player .toggle-play svg path,
.rivendell-player .toggle-play svg polygon,
.rivendell-player .toggle-play svg rect {
  fill: #c1d2e7;
}
.rivendell-player .toggle-play--buffering {
  font-size: 0.8rem;
}
.rivendell-player .toggle-play--buffering svg.icon--stop {
  display: none;
}
.rivendell-player .toggle-play--buffering svg.icon--play {
  opacity: 0.2;
}
.rivendell-player .toggle-play--buffering:after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: rotating 2s linear infinite;
  z-index: 10;
  border: 2px solid #5fbfff;
  border-top-color: transparent;
  border-radius: 100%;
  box-shadow: 0 0 1rem #0076c5;
}
.rivendell-player .toggle-play--playing svg.icon--play {
  display: none;
}
.rivendell-player .toggle-play--stopped svg.icon--stop {
  display: none;
}
.rivendell-player .toggle-play--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  border: 1px solid #ba4040;
  background: transparent;
}
.rivendell-player .toggle-play--disabled svg circle,
.rivendell-player .toggle-play--disabled svg path,
.rivendell-player .toggle-play--disabled svg polygon,
.rivendell-player .toggle-play--disabled svg rect {
  fill: #ba4040;
}
.rivendell-player .hints,
.rivendell-player #rivendell--connection-status {
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  margin: 0;
  position: absolute;
  z-index: 1060;
}
.rivendell-player .hints {
  bottom: 1rem;
  left: 1rem;
}
.rivendell-player #rivendell--connection-status {
  bottom: 1rem;
  right: 1rem;
  display: none;
}
.rivendell-player #rivendell--connection-status svg {
  height: 1.7rem;
  width: 1.7rem;
  margin-right: 1rem;
}
.rivendell-player #rivendell--connection-status.connection--online {
  display: block;
}
.rivendell-player #rivendell--connection-status.connection--online .online-text {
  display: block;
}
.rivendell-player #rivendell--connection-status.connection--offline {
  display: block;
}
.rivendell-player #rivendell--connection-status.connection--offline .offline-text {
  display: block;
}
.rivendell-player #rivendell--connection-status .offline-text {
  display: none;
}
.rivendell-player #rivendell--connection-status .offline-text svg circle,
.rivendell-player #rivendell--connection-status .offline-text svg path,
.rivendell-player #rivendell--connection-status .offline-text svg polygon,
.rivendell-player #rivendell--connection-status .offline-text svg rect {
  fill: #ba4040;
}
.rivendell-player #rivendell--connection-status .online-text {
  display: none;
}
.rivendell-player #rivendell--connection-status .online-text svg circle,
.rivendell-player #rivendell--connection-status .online-text svg path,
.rivendell-player #rivendell--connection-status .online-text svg polygon,
.rivendell-player #rivendell--connection-status .online-text svg rect {
  fill: #28a745;
}
.rivendell-player .hints__header {
  font-size: 1rem;
  font-weight: bold;
}
.rivendell-player .hints__keyboard-shortcuts {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.8rem;
}
.rivendell-player .hints__keyboard-shortcuts > li {
  margin: 0.5rem 0;
  padding: 0;
}
.rivendell-player .hints__keyboard-shortcuts .keyboard-shortcut {
  background-color: rgba(193, 210, 231, 0.05);
  border: 1px solid rgba(193, 210, 231, 0.15);
  border-bottom-width: 2px;
  padding: 0 0.5rem;
  border-radius: 0.2rem;
  margin-right: 0.5rem;
  text-transform: uppercase;
  min-width: 28px;
  text-align: center;
  display: inline-block;
}
.rivendell-player .hints__keyboard-shortcuts .keyboard-shortcut svg circle,
.rivendell-player .hints__keyboard-shortcuts .keyboard-shortcut svg path,
.rivendell-player .hints__keyboard-shortcuts .keyboard-shortcut svg polygon,
.rivendell-player .hints__keyboard-shortcuts .keyboard-shortcut svg rect {
  fill: #c1d2e7;
}

.rivendell-player--pwa {
  padding: 0;
}

#rivendell--controls {
  margin: 0;
  padding: 2rem 0;
}
#rivendell--controls .row > * {
  align-items: center;
  display: flex;
}
#rivendell--controls .row > *.text--right {
  justify-content: flex-end;
}
#rivendell--controls .row > *.text--center {
  justify-content: center;
}
#rivendell--controls .row > *.text--left {
  justify-content: flex-start;
}

#rivendell--play-history {
  background-color: rgba(15, 27, 41, 0.8);
  -webkit-backdrop-filter: saturate(70%) blur(20px);
  backdrop-filter: saturate(70%) blur(20px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  display: none;
}
#rivendell--play-history.opened {
  display: block;
}
#rivendell--play-history .container {
  padding: 1rem;
  height: 100%;
}
#rivendell--play-history .container > div {
  height: 100%;
  overflow-y: scroll;
}
#rivendell--play-history .row {
  padding: 0.5rem 0;
}
#rivendell--play-history .row:after {
  content: "";
  display: block;
  position: relative;
  width: calc(100vw - 2rem);
  top: 0.5rem;
  height: 1px;
  background: rgba(193, 210, 231, 0.1);
  margin: 0 auto;
}
#rivendell--play-history .toggle {
  position: absolute;
  width: 18px;
  height: 2px;
  background-color: transparent;
  top: 2rem;
  right: 2rem;
}
#rivendell--play-history .toggle .icon {
  background: transparent;
  position: relative;
  width: 18px;
  height: 2px;
  top: 1px;
}
#rivendell--play-history .toggle .icon:before, #rivendell--play-history .toggle .icon:after {
  content: "";
  background: #fff;
  position: absolute;
  display: block;
  width: 18px;
  height: 2px;
  background-color: rgba(193, 210, 231, 0.7);
}
#rivendell--play-history .toggle .icon:before {
  transform: rotate(45deg);
  top: 0;
}
#rivendell--play-history .toggle .icon:after {
  transform: rotate(-45deg);
  top: 0;
}

@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes pulsating {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
#rivendell--current-track {
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}
#rivendell--current-track a:hover {
  color: #e6edf5;
}

@media (min-width: 576px) {
  #rivendell--current-track {
    padding-top: 5rem;
  }
}
.rivendell-player__background-image {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  z-index: -1;
  transform: scale(2);
  filter: blur(15px);
  opacity: 0.8;
}
.rivendell-player__background-image:after {
  content: "";
  position: absolute;
  background: linear-gradient(rgba(15, 27, 41, 0) 40%, #0f1b29 70%);
  width: 100%;
  height: 100%;
  top: 0;
}

.rivendell-player__channel {
  text-transform: uppercase;
  font-size: 0.8rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.5;
  letter-spacing: 0.1rem;
}

.rivendell-player__image {
  display: flex;
  height: 40vh;
  max-height: 30vh;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
}
.rivendell-player__image div {
  position: relative;
  border-radius: 0.8rem;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 0 70px rgba(0, 0, 0, 0.15);
  /*     // Inner shadow
     &:after {
       content: "";
       box-shadow: inset 0 0 1px 2px rgba(0, 0, 0, 0.6);
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       bottom: 0;
     }
  */
}
.rivendell-player__image img {
  max-width: 80vw;
  height: 100%;
  box-shadow: 0 10px 70px rgba(0, 0, 0, 0.15);
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.rivendell-player__track {
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.rivendell-player__track a {
  color: #c1d2e7;
}

.rivendell-player__rating {
  font-size: 0.72rem;
  color: rgba(193, 210, 231, 0.6);
}

.rivendell-player__artist {
  font-size: 1.89rem;
}
.rivendell-player__artist a {
  color: rgba(193, 210, 231, 0.6);
}

.rivendell-player__album a {
  color: rgba(193, 210, 231, 0.6);
}

.rivendell-player__progress-wrapper {
  width: 100%;
  padding: 1rem 2rem;
  margin-top: auto;
}

.rivendell-player__progress {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.2);
  width: 100%;
  border-radius: 0.2rem;
}

.rivendell-player__progress__bar {
  background: linear-gradient(0.25turn, #0b3754, #1672af, #71bced);
  width: 0;
  height: 4px;
  transition: width 4s;
  border-radius: 0.2rem;
  position: relative;
}
.rivendell-player__progress__bar:after {
  content: "";
  display: block;
  height: 10px;
  width: 10px;
  background: #71bced;
  box-shadow: 0 0 12px #1672af;
  border: 2px solid #cbe7f9;
  position: absolute;
  right: 0;
  top: -3px;
  border-radius: 100%;
}

@media (max-width: 576px) {
  .player--active .nav__site .col--8 {
    max-width: 100%;
  }
  .player--active .nav__site .brand {
    justify-content: center;
  }
  .rivendell-player {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding-top: 80px;
  }
  .rivendell-player--pwa {
    padding-top: 0;
  }
  .rivendell-player--pwa .rivendell-player__channel {
    padding-top: 2rem;
  }
  .rivendell-player__image {
    max-height: inherit;
  }
  .rivendell-player__image div {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
    height: 100%;
  }
  .rivendell-player__track,
.rivendell-player__artist,
.rivendell-player__album {
    padding: 0 0.5rem;
    text-shadow: 0 1px 2px #000;
  }
  .rivendell-player__track {
    font-size: 1.6rem;
    line-height: 1.2;
  }
  .rivendell-player__artist {
    font-size: 1.26rem;
  }
  .rivendell-player__album {
    font-size: 1rem;
  }
  .toggle-play {
    width: 5rem;
    height: 5rem;
  }
  #bliss-admin-menu-wrapper {
    display: none;
  }
  .nav__toggle {
    position: absolute;
    top: 0;
    right: 0;
    padding-right: 2rem;
  }
  #rivendell--connection-status {
    left: 1rem;
  }
}
.rating-average-container {
  display: block;
  margin-top: 1rem;
}

.rating-values .stars {
  display: flex;
  flex-direction: row;
}
.rating-values .stars .rate {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.25rem;
}
.rating-values .stars .rate svg {
  display: block;
  height: 1.5rem;
  width: 1.5rem;
}
.rating-values .stars .rate svg path {
  fill: rgba(22, 114, 175, 0.2);
}
.rating-values .stars .rate-selected svg path {
  fill: #1672af;
}
.rating-values .stars .rate-set svg path {
  fill: rgba(22, 114, 175, 0.5);
}

.search__form {
  margin-bottom: 4rem;
}

.search__item {
  margin-bottom: 1rem;
}

.support-component {
  background-color: rgba(22, 114, 175, 0.05);
  padding: 3rem 0;
  margin-bottom: -3rem;
}
.support-component .button {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}
.support-component .buttons {
  margin-top: 2rem;
}
.support-component .image--chest {
  max-width: 15rem;
}

@media (min-width: 576px) {
  .support-component .image--chest {
    margin-top: 2rem;
  }
}
@media (max-width: 576px) {
  .support-component .image--chest {
    margin-bottom: 2rem;
  }
}
.table {
  width: 100%;
}
.table .row {
  flex-wrap: wrap;
}
.table .row > div {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.table header,
.table .table__header {
  margin-top: 2rem;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: rgba(193, 210, 231, 0.5);
  letter-spacing: 0.1rem;
  border-bottom: 1px solid rgba(193, 210, 231, 0.1);
}
.table header svg,
.table .table__header svg {
  height: 1rem;
}
.table header svg path,
.table header svg polygon,
.table header svg rect,
.table .table__header svg path,
.table .table__header svg polygon,
.table .table__header svg rect {
  fill: rgba(193, 210, 231, 0.5);
}

.table--condensed .row {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

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

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

.text--right {
  text-align: right;
}

.text--small {
  font-size: 0.8rem;
}

h1, h2, h3 {
  font-family: "Almendra", "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
}

h1, h2, h3, h4, h5 {
  color: white;
  line-height: 1.1;
  margin-bottom: 1rem;
}
h1 a, h2 a, h3 a, h4 a, h5 a {
  color: inherit;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover {
  color: inherit;
}

h1 {
  font-size: 4rem;
  line-height: 1;
}

h2 {
  font-size: 2.1rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1rem;
}

.header--sub {
  text-transform: uppercase;
  font-family: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  font-weight: normal;
  color: rgba(193, 210, 231, 0.5);
  margin-bottom: 0.5rem;
}

.lead {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.label--indent {
  padding-left: 1rem;
}

.value {
  font-weight: bold;
}

.strikethrough {
  text-decoration: line-through;
}

em {
  font-style: italic;
}

hr {
  border: none;
  height: 1px;
  background: rgba(193, 210, 231, 0.5);
  margin: 2rem 0;
}

.fine-print {
  color: rgba(119, 157, 203, 0.5);
  font-size: 0.8rem;
}
.fine-print p:last-child {
  margin-bottom: 0;
}

.post-text {
  margin-top: 2rem;
}
.post-text p:last-child {
  margin-bottom: 0;
}

ul li {
  margin-bottom: 1rem;
}

.text--muted {
  color: rgba(193, 210, 231, 0.5);
}

*::selection {
  background: #1672af;
  color: #fff;
}

@media (min-width: 880px) {
  .text--md--left {
    text-align: left;
  }
  .text--md--right {
    text-align: right;
  }
  .text--md--center {
    text-align: center;
  }
}
@media (min-width: 576px) and (max-width: 880px) {
  h1 {
    font-size: 2.8rem;
  }
  h2 {
    font-size: 1.47rem;
  }
  h3 {
    font-size: 0.875rem;
  }
  .lead {
    font-size: 1.2rem;
  }
  .text--sm--left {
    text-align: left;
  }
  .text--sm--right {
    text-align: right;
  }
  .text--sm--center {
    text-align: center;
  }
}
@media (max-width: 576px) {
  body {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  h1 {
    font-size: 2.4rem;
  }
  h2 {
    font-size: 1.89rem;
  }
  h3 {
    font-size: 1rem;
  }
  .lead {
    font-size: 1.1rem;
  }
  .text--xs--left {
    text-align: left;
  }
  .text--xs--right {
    text-align: right;
  }
  .text--xs--center {
    text-align: center;
  }
}
html {
  background: #0b141e;
}

body {
  background-image: url(/site-content/themes/rivendell-2k21/dist/images/e4776bfe0926cb40aa91706029203b3f-background--stars.jpg);
  background-repeat: repeat-x;
  background-size: 55%;
  -webkit-font-smoothing: antialiased;
  overflow: overlay;
}
body::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background-color: transparent;
}
body::-webkit-scrollbar-thumb {
  width: 4px;
  height: 4px;
  background-color: rgba(22, 114, 175, 0.4);
  border-radius: 0.5rem;
}

@media (max-width: 576px) {
  body {
    background-size: 100%;
  }
}