@font-face {
  font-family: "Neon 80s";
  src: url("../assets/neon-webfont.woff2") format("woff2"),
    url("../assets/neon-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

html {
  overflow-x: hidden;
}

body {
  background: #fffeef;
  color: #444;
  font: 16px "Open Sans", sans-serif;
  position: relative;
  overflow-x: hidden;
}
body.disable-scroll {
  overflow: hidden !important;
}
body.has-playerBar {
  padding-bottom: 75px;
}

body:before,
body:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  pointer-events: none;
}

body:before {
  background: url("../images/bg-artifacts-left.png") 0 0 repeat-y;
  left: 0;
  width: 202px;
}

body:after {
  background: url("../images/bg-artifacts-right.png") 0 0 repeat-y;
  right: 0;
  width: 206px;
}

body.path-frontpage {
  background: #fffeef url("../images/bg-frontpage.png") 50% -100px no-repeat;
}

body.path-frontpage .page {
  padding-top: 100px;
}

@media screen and (max-width: 568px) {
  body:before,
  body:after {
    display: none;
  }
  body.path-frontpage .page {
    padding-top: 40px;
  }
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Neon 80s";
  font-weight: normal;
  margin: 0;
}
h1 {
  font-size: 42px;
}
h2 {
  font-size: 48px;
  line-height: 1.35;
}
h3 {
  font-size: 34px;
  line-height: 1.35;
}
h4 {
  font-size: 26px;
  line-height: 1.5;
}

#user-login,
#user-pass {
  margin: 15px auto;
  width: 350px;
}

.alert {
  background: #d7ecf6;
  border: 1px solid #97c9e1;
  color: #5c8dab;
  font-size: 12px;
  margin: 10px 0;
  padding: 10px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.alert p {
  padding: 0;
}
.alert.success {
  background: #e3ebc4;
  border: 1px solid #c2d283;
  color: #8fa437;
}

/* Page Meta */
.page-meta {
  background: #42275e;
  color: #fff;
  margin-top: -20px;
}
.page-meta .container {
  align-items: center;
  display: flex;
  padding: 40px 20px 30px;
}

/* Page */
.page {
  background: url("../images/bg-artifacts-body.png") 50% 0 no-repeat;
  min-height: 500px;
  padding: 30px 0;
}
.page-content {
  width: 100%;
}
.page.page--has-sidebar .page-content {
  width: calc(100% - 220px);
}

.sidebar {
  min-width: 220px;
  width: 220px;
}
.sidebar-second {
  margin-left: 40px;
}
.sidebar .block {
  margin-bottom: 30px;
}

img.align-left,
img.align-right {
  margin-top: 10px;
  margin-bottom: 10px;
}
img.align-left {
  margin-right: 10px;
}
img.align-right {
  margin-left: 10px;
}

.modalWrap {
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  justify-content: center;
  width: 100vw;
  z-index: 11000;
}
.modalWrap.is-open {
  display: flex;
}
.modalWrap .modal-close {
  background: none;
  cursor: pointer;
  border: 0;
  padding: 0;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 200;
}
.modalWrap .modal-close svg {
  fill: #d0d0d0;
}
.modalWrap .modal-content {
  position: relative;
  z-index: 100;
}

.featuredContent {
  margin-top: -30px;
}

.menu--social {
  display: flex;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.menu--social li:not(:first-child) {
  margin-left: 30px;
}

.menu--social a {
  opacity: 0.5;
  transition: opacity 0.2s ease-in-out;
}
.menu--social a:hover {
  opacity: 0.8;
}

.menu--social .icon {
  fill: #222222;
  height: 20px;
  width: 20px;
}

body.path-frontpage .menu--social .icon {
  fill: #fff;
}

.webform-confirmation__message {
  background: rgba(0, 209, 0, 0.17);
  border-radius: 4px;
  color: #124e12;
  font-family: "Neon 80s";
  font-size: 18px;
  padding: 20px;
  text-align: center;
}

.webform-confirmation__back a {
  color: #8a8a8a;
  font-family: "Neon 80s";
  font-size: 14px;
  text-decoration: none;
}

.webform-confirmation__back a:hover {
}

/* Buttons */
.btn-filled {
  align-items: center;
  background: #e2ab15;
  border: 0;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  padding: 15px 60px;
  justify-content: center;
  text-shadow: rgba(0, 0, 0, 0.15) 0 1px 1px;
  text-transform: uppercase;
  transition: background 0.2s ease-in-out;
}
.btn-filled:hover {
  background: #fbbe16;
}

/* Helper */
.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap; /* added line */
}

@media screen and (max-width: 1406px) {
  body.path-frontpage {
    background: #fffeef url("../images/bg-frontpage-mobile.png") 50% 0 no-repeat;
    background-size: 100% auto;
  }
}

@media screen and (max-width: 568px) {
  .featuredContent {
    margin-top: -15px;
  }
}
