/*$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: #f9ff05;
}

.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: #141414;
  }
  100% {
    color: greenyellow;
  }
}
.flash {
  transition: all 0.5s ease-in-out; /* Firefox */ /* 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: #141414;
  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;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.4);
}

.page-site-bar-footer {
  top: inherit;
  bottom: 0px;
  font-size: 1rem;
  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;
  color: #f9ff05;
  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: #f9ff05;
  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;
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
  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: #f9ff05;
  /*&: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 #e5eb00;
}

.navbar-spacer {
  height: 2.3rem;
}

.modal .modal-content {
  background-color: #141414;
  border: 1px solid #f9ff05;
  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;
  transition: all 0.5s ease-in-out; /* Firefox */ /* Webkit */ /* IE */
  animation: blink normal 1.5s infinite ease-in-out; /* Opera */
}
.modal .note {
  color: greenyellow;
  margin-top: 15px;
}
.modal .note-2 {
  color: #f9ff05;
  margin-top: 15px;
}
.modal #dialog-image {
  width: 60%;
  max-width: 800px;
  border-radius: 10px;
  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;
  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;
  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 .status {
  text-align: center;
  position: relative;
  bottom: 0px;
  width: 100%;
  margin: 0px;
  padding-top: 4px;
  background-color: #272727;
}
.content-index .index-panel .status.sold-out {
  background-color: #800026;
}
.content-index .index-panel .status.minting {
  background-color: #00572e;
}
.content-index .index-panel .status.minting-soon {
  background-color: #002168;
}
.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;
  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.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;
  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: #f9ff05;
  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: linear-gradient(90deg, #141414 50%, #d6d6d6 50%);
}
.content-detail .background.dark {
  background: linear-gradient(90deg, #141414 50%, #50487d 50%);
}
.content-detail .background.verydark {
  background: linear-gradient(90deg, #141414 50%, #0b0a10 50%);
}
.content-detail h1 {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.content-detail .policy {
  text-align: center;
  margin: 10px 50px;
}
.content-detail .policy h3 {
  font-size: 14pt;
  color: #f9ff05;
  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: #f9ff05;
  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 .disclaimer {
  color: #8b8b8b;
  font-size: 12pt;
  margin: 10px;
  line-height: 1.2em;
}
.content-detail .panel-content .disclaimer b {
  color: #f9ff05;
}
.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 {
  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);*/
  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;
  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%;
}

.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: #d6d6d6;
  margin: 10px 10px;
  font-size: 30px;
}
.share-icons i:hover {
  text-decoration: none;
  color: greenyellow;
}

.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;
  box-shadow: 0 15px 10px black;
  transform: rotate(-3deg);
}
.page-lift:after {
  transform: rotate(3deg);
  right: 10px;
  left: auto;
}

.dropshadow {
  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 */