/*$color-body: #777;
$color-background: white;
$color-accent: #ff6a00;
$color-accent-href: #180096;
$color-accent-href-hover: #bb0000;
$color-accent-bg: #292929;*/
.color-accent {
  color: #ff6a00;
}

.color-accent-2 {
  color: greenyellow;
}

.font-family-body {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
}

.font-family-body-bold {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 700;
}

.font-family-body-black {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 900;
}

.font-family-condensed {
  font-family: "Open Sans Condensed", sans-serif;
  font-weight: 700;
}

@keyframes blink {
  0% {
    color: greenyellow;
  }
  50% {
    color: #212121;
  }
  100% {
    color: greenyellow;
  }
}

@-webkit-keyframes blink {
  0% {
    color: greenyellow;
  }
  50% {
    color: #212121;
  }
  100% {
    color: greenyellow;
  }
}

.flash {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  /* Firefox */
  -webkit-animation: blink normal 1.5s infinite ease-in-out;
  /* Webkit */
  /* IE */
  animation: blink normal 1.5s infinite ease-in-out;
  /* Opera */
}

body {
  font-family: "Alegreya Sans", sans-serif;
  color: #e0e0e0;
  font-size: 16pt;
  line-height: 1.2em;
  background-color: #212121;
  margin: 0px;
}

body h1 {
  font-family: "Dosis", sans-serif;
  font-weight: 800;
  /*text-transform: uppercase;*/
  /*letter-spacing: 0.1em;*/
  font-size: 24pt;
  color: white;
}

body a {
  cursor: pointer;
  color: #fff900;
}

body a:hover {
  text-decoration: none;
  color: #fff900;
}

.page-site-bar, .page-site-bar-footer {
  position: fixed;
  top: 0px;
  z-index: 8000;
  width: 100vw;
  height: 2.3rem;
  /*font-family: $font-family-logo;*/
  font-size: 1.2rem;
  padding: 8px;
  padding-left: 50px;
  padding-right: 55px;
  color: white;
  background-color: #292929;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.4);
}

.page-site-bar-footer {
  top: inherit;
  bottom: 0px;
  font-size: 1.0rem;
  padding: 0px;
}

.page-site-bar-footer .copyright {
  padding: 8px;
}

.page-site-bar-footer .social-icons {
  padding: 8px;
  font-size: 20px;
  padding-right: 20px;
}

.page-site-bar-footer .social-icons a {
  margin: 10px;
  color: white;
}

.page-site-bar-spacer {
  height: 2.3rem;
}

.navbar-berger-logo {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  position: fixed;
  left: 16px;
  top: 7px;
  z-index: 10004;
  /* Stay on top - but behind panel */
  cursor: pointer;
}

.navbar-berger-menu {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  position: fixed;
  right: 16px;
  top: 4px;
  z-index: 10008;
  /* Stay on top - but behind panel */
  cursor: pointer;
  color: #ff6a00;
  font-size: 24px;
  padding-top: 3px;
}

.navbar-berger-popout {
  position: fixed;
  height: 100vh;
  width: 100%;
  /*@media (max-width: 500px) { // md
        width: 80%;
    }

    @media (max-width: 400px) { // md
        width: 90%;
    }*/
  top: 0;
  left: -110vw;
  z-index: 10005;
  /* Stay on top */
  background-color: #292929;
  color: #8e8e8e;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  /* 0.5 second transition effect to slide in the sidenav */
  -webkit-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.4);
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  overflow-y: auto;
}

.navbar-berger-popout.open {
  left: 0px;
}

.navbar-berger-popout .nav-item, .navbar-berger-popout .nav-heading {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  text-align: center;
  font-size: 14pt;
  padding: 6px 15px;
  color: #8e8e8e;
  /*margin-bottom: 2px;*/
  background-color: #242424;
}

.navbar-berger-popout .nav-item a, .navbar-berger-popout .nav-heading a {
  cursor: pointer;
  color: #ff6a00;
  /*&:hover {
                text-decoration: none;
                color: $color-accent;
            }*/
}

.navbar-berger-popout .nav-heading {
  color: #8e8e8e;
  font-size: 16pt;
  font-family: "Dosis", sans-serif;
  font-weight: 700;
  /*text-transform: uppercase;
        letter-spacing: 0.1em;*/
  margin-top: 20px;
  margin-bottom: 0px;
  background-color: #1f1f1f;
}

.navbar-berger-popout .nav-hr {
  height: 1px;
  /*margin: 1vh 0px;*/
  margin-top: 10px;
  border-top: 1px solid #e65f00;
}

.navbar-spacer {
  height: 2.3rem;
}

.modal .modal-content {
  background-color: #212121;
  border: 1px solid #ff6a00;
  -webkit-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.8);
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.8);
  font-size: 12pt;
  line-height: 1.2em;
}

.modal .modal-header, .modal .modal-footer {
  border: 0px;
}

.modal .dialog-field-title {
  width: 50%;
  padding-right: 10px;
}

.modal #already-reserved {
  display: block;
  color: greenyellow;
  text-align: center;
  margin-top: 5px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  /* Firefox */
  -webkit-animation: blink normal 1.5s infinite ease-in-out;
  /* Webkit */
  /* IE */
  animation: blink normal 1.5s infinite ease-in-out;
  /* Opera */
}

.modal .note {
  color: greenyellow;
  margin-top: 15px;
}

.modal .note-2 {
  color: #ff6a00;
  margin-top: 15px;
}

.modal #dialog-image {
  width: 60%;
  max-width: 800px;
  border-radius: 10px;
  -webkit-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.6);
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.6);
  margin-bottom: 20px;
}

.content-reserve-cow {
  font-size: 14pt;
}

.content-reserve-cow .thumbnail img {
  margin: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.6);
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.6);
  display: inline-block;
}

.content-reserve-cow .thumbnail .reserved-thumbnail {
  margin: 3px;
  border: 1px solid #333;
  border-radius: 5px;
}

.content-reserve-cow .thumbnail .reserved-thumbnail img {
  border-radius: 0px;
}

.content-reserve-cow .thumbnail img.Reserved_1 {
  opacity: 0.1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
  filter: alpha(opacity=10);
}

.content-reserve-cow select {
  padding: 5px;
  color: #e0e0e0;
  background-color: #1a1a1a;
  border-radius: 5px;
}

.content-reserve-cow .select-title {
  padding: 5px;
  text-align: right;
}

.content-reserve-cow #total-count {
  padding: 5px;
}

.content-reserve-cow .color-select {
  width: 100%;
}

#discord-username {
  width: 70%;
  height: 31px;
}

#ok-btn {
  width: 25%;
}

.content-index {
  font-size: 14pt;
}

.content-index p {
  margin-bottom: 0.5em;
}

.content-index h1 {
  font-size: 18pt;
  font-family: "Dosis", sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
}

.content-index .index-panel {
  border: 1px solid #444;
  background-color: #0b0a10;
  -webkit-box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.2);
  padding: 0px;
  /*margin-bottom: 20px;*/
  cursor: pointer;
}

@media (max-width: 768px) {
  .content-index .index-panel {
    height: inherit;
  }
}

.content-index .index-panel .banner {
  width: 100%;
  height: 30vw;
  min-height: 100px;
  max-height: 250px;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-box-shadow: 2px 2px 15px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 2px 15px 2px rgba(0, 0, 0, 0.2);
  /*position: relative;*/
}

.content-index .index-panel h3 {
  /*margin: 15px;*/
  text-align: center;
  font-size: 14pt;
  font-family: "Dosis", sans-serif;
  font-weight: 700;
  /*position: absolute;
            bottom: 0;
            right: 0;
            left: 0;*/
  padding: 6px;
  margin: 0px;
  background-color: black;
}

.content-index .index-panel h3 a {
  color: white;
}

.content-index .index-panel .description {
  font-size: 12pt;
  line-height: 1.4em;
  margin-bottom: 5px;
  min-height: 80px;
  letter-spacing: 0.02em;
}

.content-index .index-panel .rotating-image {
  text-align: center;
}

.content-index .index-panel img {
  width: 90%;
  max-width: 200px;
  cursor: pointer;
}

.content-tags {
  /*.fabric-background-light {
        background-color: $color-fabric-light;
    }

    .fabric-background-dark {
        background-color: $color-fabric-dark;
    }

    .fabric-background-verydark {
        background-color: $color-fabric-verydark;
    }*/
}

.content-tags.container-fluid {
  padding: 0px;
}

.content-tags .banner {
  width: 100%;
  height: 30vw;
  min-height: 100px;
  max-height: 250px;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-box-shadow: 2px 2px 15px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 2px 15px 2px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.content-tags .description {
  margin: 12px 0px;
  letter-spacing: 0.02em;
}

.content-tags .disclaimer {
  font-size: 12pt;
  text-align: center;
}

.content-tags .note {
  font-size: 12pt;
  margin: 12px 0px;
}

.content-tags .howto {
  font-size: 12pt;
  text-align: right;
  margin: 12px;
}

.content-tags .related {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #404040;
  padding-top: 20px;
  font-size: 14pt;
  font-weight: 500;
}

.content-tags .related a {
  font-weight: 700;
}

.content-guardian {
  font-size: 13pt;
  font-family: 500;
}

.content-guardian h2 {
  font-size: 16pt;
  color: #ff6a00;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.content-guardian .requirement {
  font-size: 12pt;
  margin-left: 10px;
  color: greenyellow;
}

.content-detail .background {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
}

.content-detail .background.light {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #212121), color-stop(50%, #d6d6d6));
  background: linear-gradient(90deg, #212121 50%, #d6d6d6 50%);
}

.content-detail .background.dark {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #212121), color-stop(50%, #50487d));
  background: linear-gradient(90deg, #212121 50%, #50487d 50%);
}

.content-detail .background.verydark {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #212121), color-stop(50%, #0b0a10));
  background: linear-gradient(90deg, #212121 50%, #0b0a10 50%);
}

.content-detail h1 {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.content-detail .policy {
  text-align: center;
  margin: 10px 50px;
}

.content-detail .policy h3 {
  font-size: 14pt;
  color: #ff6a00;
  font-family: "Dosis", sans-serif;
  padding-right: 30px;
}

.content-detail .policy a {
  line-height: 0.5em;
  font-size: 11pt;
  overflow-wrap: break-word;
}

.content-detail .wallet-support {
  font-size: 14pt;
}

.content-detail .nft-spec {
  font-size: 13pt;
  font-family: "Open Sans Condensed", sans-serif;
  font-weight: 700;
}

.content-detail .nft-spec .nft-edition {
  color: #ff6a00;
  font-family: "Dosis", sans-serif;
  padding-right: 30px;
}

.content-detail .nft-spec .field-title {
  font-weight: 700;
  padding-right: 20px;
  vertical-align: top;
}

.content-detail .nft-spec .field-content, .content-detail .nft-spec ol li, .content-detail .nft-spec ul li {
  font-weight: 300;
  vertical-align: top;
}

.content-detail .nft-spec ol li, .content-detail .nft-spec ul li {
  list-style-type: decimal-leading-zero;
  padding-left: 10px;
  margin-bottom: 5px;
  color: #7a7a7a;
}

.content-detail .nft-spec ol li.active, .content-detail .nft-spec ul li.active {
  color: #e0e0e0;
}

.content-detail .nft-spec ol li.done, .content-detail .nft-spec ul li.done {
  color: greenyellow;
}

.content-detail .nft-spec .note {
  color: #828282;
  font-size: 10pt !important;
  line-height: 1.4em !important;
  margin: 0px !important;
}

.content-detail .panel-content {
  padding: 30px;
}

.content-detail .panel-content .linkback-category {
  display: block;
  margin-top: 50px;
  padding: 20px;
  border: 1px solid #404040;
  border-left: 0px;
  border-right: 0px;
  text-align: center;
  text-transform: uppercase;
  font-size: 11pt;
  font-family: "Open Sans Condensed", sans-serif;
  font-weight: 700;
}

.content-detail .panel-content .description {
  margin-top: 20px;
}

.content-detail .panel-content .customize-colors {
  margin: 20px;
  text-align: center;
  text-transform: uppercase;
  font-size: 11pt;
  font-family: "Open Sans Condensed", sans-serif;
  font-weight: 700;
}

.content-detail .panel-content .customize-colors img {
  margin: 10px;
  width: 80%;
  max-width: 400px;
}

.content-detail .panel-content .note {
  font-size: 11pt;
  margin: 5%;
  line-height: 1.2em;
}

.content-detail .panel-content .external-links {
  text-align: center;
  margin: 20px;
  margin-top: 30px;
}

.content-detail .fabric-background-light {
  background-color: #d6d6d6;
}

.content-detail .fabric-background-dark {
  background-color: #50487d;
}

.content-detail .fabric-background-verydark {
  background-color: #0b0a10;
}

.content-detail .panel-image {
  text-align: center;
}

.content-detail .panel-image .fixed-pos {
  padding: 20px;
}

@media (min-width: 768px) {
  .content-detail .panel-image .fixed-pos {
    position: fixed;
    width: 50%;
  }
}

.content-detail .panel-image img {
  width: 80%;
  max-width: 400px;
}

.content-detail .panel-image img.productshot {
  -webkit-box-shadow: 2px 2px 15px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 15px 2px rgba(0, 0, 0, 0.1);
  border: 1px solid #aaaaaa;
}

.content-detail .panel-image img.nft {
  width: 100%;
  margin-bottom: 20px;
}

.store-links {
  line-height: 1.3em;
}

.store-links .panel {
  background-color: #dcdcdc;
  display: inline-block;
  border-radius: 50%;
  margin: 5px;
  width: 50px;
  height: 50px;
}

.store-links .panel.small {
  margin: 1px;
  width: 36px;
  height: 36px;
}

.store-links a {
  position: absolute;
  width: 50px;
  height: 50px;
  text-align: center;
  color: #696969;
}

.store-links a.small {
  width: 36px;
  height: 36px;
}

.store-links a:hover {
  color: black;
  background-color: #bbb;
}

.store-links a i {
  font-size: 30px;
  margin-top: 18%;
}

.store-links a i.small {
  font-size: 1.6em;
}

.store-links a i.fa-box-open {
  font-size: 1.1em;
  margin-top: 28%;
}

.store-links a i.fa-box-open.small {
  font-size: 1.4em;
}

.store-links a i.fa-tablet-alt {
  font-size: 1.2em;
  margin-top: 25%;
}

.store-links a i.fa-tablet-alt.small {
  font-size: 1.4em;
}

.store-links a i.fa-paint-brush {
  font-size: 1.2em;
  margin-top: 25%;
}

.store-links a i.fa-paint-brush.small {
  font-size: 1.4em;
}

.store-link-images img {
  margin: 5px;
  width: 30px;
  opacity: 0.9;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  filter: alpha(opacity=90);
}

.store-link-images img:hover {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
}

.store-link-images img.large {
  width: 50px;
}

.slideshow-panel {
  position: relative;
}

.slideshow-panel img {
  background-color: #f7f7f7;
  width: 100%;
  max-width: 150px;
  margin: 0px 0px 60px 10px;
  /*@include border-radius-sides(0px, 0px, 5px, 5px);*/
  -webkit-box-shadow: 2px 2px 15px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 15px 2px rgba(0, 0, 0, 0.1);
  border: 1px solid #aaaaaa;
  position: relative;
}

.slideshow-panel h2 {
  font-weight: 700;
  font-size: 16pt;
  margin: 0px;
  margin-bottom: 16px;
}

.product-panel-square, .product-panel-square-more {
  position: relative;
  margin: 10px auto;
  -webkit-box-shadow: 2px 2px 15px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 15px 2px rgba(0, 0, 0, 0.1);
  border: 1px solid #aaaaaa;
  width: 100%;
  max-width: 400px;
  cursor: pointer;
}

.product-panel-square.background-fill, .background-fill.product-panel-square-more {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.product-panel-square.background-shrink, .background-shrink.product-panel-square-more {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 80%;
}

.product-panel-square.light, .light.product-panel-square-more {
  background-color: #d6d6d6;
}

.product-panel-square.dark, .dark.product-panel-square-more {
  background-color: #50487d;
}

.product-panel-square.verydark, .verydark.product-panel-square-more {
  background-color: #0b0a10;
}

.product-panel-square img.info, .product-panel-square-more img.info {
  position: absolute;
  top: 0;
  right: 0;
}

.product-panel-square .overlay-bottom, .product-panel-square-more .overlay-bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin: 0px;
}

.product-panel-square .shop-links, .product-panel-square-more .shop-links {
  background-color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.product-panel-square h2, .product-panel-square-more h2 {
  margin: 0px;
  padding: 8px;
  font-weight: 700;
  font-size: 12pt;
  color: white;
  background-color: rgba(0, 0, 0, 0.85);
}

.product-panel-square .show-more, .product-panel-square-more .show-more {
  font-size: 12pt;
  cursor: pointer;
  text-align: right;
  margin-left: 10px;
  margin-top: 10px;
}

.product-panel-square .detail-link, .product-panel-square-more .detail-link {
  text-align: right;
  font-size: 12pt;
}

.product-panel-square-more {
  text-align: center;
  cursor: auto;
  padding: 15px;
}

.product-panel-square-more .title {
  font-weight: 700;
  font-size: 18pt;
  margin-top: 0px;
  margin-bottom: 10px;
}

.product-panel-square-more .subscribe {
  font-size: 18pt;
  margin-top: 20%;
}

#mc_embed_signup {
  /*background-color: rgba(0, 0, 0, 0.7);*/
}

#mc_embed_signup form {
  display: block;
  position: relative;
  text-align: left;
  padding: 5px;
}

#mc_embed_signup h2 {
  font-weight: bold;
  padding: 0;
  margin: 15px 0;
  font-size: 1.4em;
}

#mc_embed_signup input {
  border: 1px solid #999;
  -webkit-appearance: none;
}

#mc_embed_signup input[type=checkbox] {
  -webkit-appearance: checkbox;
}

#mc_embed_signup input[type=radio] {
  -webkit-appearance: radio;
}

#mc_embed_signup input:focus {
  border-color: #333;
}

#mc_embed_signup input.email {
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 12pt;
  display: block;
  text-align: center;
  padding: 0 0.4em;
  margin: 4px auto;
  min-height: 32px;
  width: 80%;
  max-width: 400px;
  min-width: 130px;
  border-radius: 3px;
}

#mc_embed_signup input.button {
  display: block;
  margin: 15px auto;
  width: 80%;
  max-width: 400px;
  color: white;
  text-transform: uppercase;
  background-color: #a21252;
}

#mc_embed_signup .button {
  clear: both;
  background-color: #aaa;
  border: 0 none;
  border-radius: 4px;
  letter-spacing: .03em;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  height: 32px;
  line-height: 32px;
  margin: 0 5px 10px 0;
  padding: 0;
  text-align: center;
  text-decoration: none;
  vertical-align: top;
  white-space: nowrap;
  width: auto;
  -webkit-transition: all 0.23s ease-in-out 0s;
  transition: all 0.23s ease-in-out 0s;
}

#mc_embed_signup .button:hover {
  background-color: #777;
}

#mc_embed_signup .small-meta {
  font-size: 11px;
}

#mc_embed_signup .nowrap {
  white-space: nowrap;
}

#mc_embed_signup .clear {
  clear: none;
  display: inline;
}

#mc_embed_signup label {
  color: white;
  font-size: 12pt;
  text-align: center;
  display: block;
  font-size: 16px;
  padding: 10px 30px;
  font-weight: bold;
  margin-bottom: 0px;
  line-height: 1.2em;
}

#mc_embed_signup .mc-field-group.input-group ul {
  margin: 0 auto;
  padding: 0px;
  list-style: none;
}

#mc_embed_signup .mc-field-group.input-group ul li {
  display: inline-block;
  padding: 0px;
  margin-left: 30px;
}

@media (min-width: 380px) {
  #mc_embed_signup .mc-field-group.input-group ul li:first-child {
    margin-left: 0px;
  }
}

#mc_embed_signup .mc-field-group.input-group label {
  display: inline;
  padding-left: 10px;
  padding-right: 0px;
  position: relative;
  top: -2px;
}

#mc_embed_signup .mc-field-group.input-group input {
  display: inline;
}

.share-icons {
  text-align: center;
  border-bottom: 1px solid #404040;
}

.share-icons .share-text {
  font-size: 14pt;
  text-align: center;
  text-transform: uppercase;
  font-size: 11pt;
  font-family: "Open Sans Condensed", sans-serif;
  font-weight: 700;
}

.share-icons i {
  cursor: pointer;
  color: #fff900;
  margin: 10px 10px;
  font-size: 30px;
}

.share-icons i:hover {
  text-decoration: none;
  color: #fff900;
}

.page-lift {
  position: relative;
}

.page-lift:before, .page-lift:after {
  z-index: -1;
  position: absolute;
  content: "";
  bottom: 15px;
  left: 10px;
  width: 50%;
  top: 80%;
  max-width: 300px;
  background: black;
  -webkit-box-shadow: 0 15px 10px black;
          box-shadow: 0 15px 10px black;
  -webkit-transform: rotate(-3deg);
          transform: rotate(-3deg);
}

.page-lift:after {
  -webkit-transform: rotate(3deg);
          transform: rotate(3deg);
  right: 10px;
  left: auto;
}

.dropshadow {
  -webkit-box-shadow: 2px 2px 15px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 15px 2px rgba(0, 0, 0, 0.1);
}

.static-background {
  z-index: -1000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.static-background .tint-dark {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
}

.static-background .tint-darkest {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
}

.fill-background {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
/*# sourceMappingURL=site.css.map */