:root {
  --black1: #333;
  --black2: #444;

  --white: #fff;
  --white1: #eee;
  --white2: #c3c3c3;

  --primary: rgba(98, 194, 235, 1);
}
@font-face {
  font-family: "FontAwesome2";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("/media/fonts/fa-solid-900.woff2") format("woff2"),
    url("/media/fonts/fa-solid-900.ttf") format("truetype");
}
@font-face {
  font-family: "FontAwesomeBrands";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("/media/fonts/fa-brands-400.woff2") format("woff2"),
    url("/media/fonts/fa-brands-400.ttf") format("truetype");
}
@font-face {
  font-family: "Anton";
  src: url("/media/fonts/Anton-Regular.ttf");
}
@font-face {
  font-family: "Cairo";
  src: url("/media/fonts/Cairo-VariableFont_slnt,wght.ttf");
}
@font-face {
  font-family: "SourceSansPro";
  src: url("/media/fonts/SourceSansPro-Regular.ttf");
}

.fa2 {
  font-family: "FontAwesome2";
}
.faB {
  font-family: "FontAwesomeBrands";
}
.inbl {
  display: inline-block;
  box-sizing: border-box;
}

.col-s-10 {
  width: 10%;
}
.col-s-20 {
  width: 20%;
}
.col-s-25 {
  width: 25%;
}
.col-s-33 {
  width: 33.333%;
}
.col-s-40 {
  width: 40%;
}
.col-s-50 {
  width: 50%;
}
.col-s-66 {
  width: 66.666%;
}
.col-s-75 {
  width: 75%;
}
.col-s-80 {
  width: 80%;
}
.col-s-90 {
  width: 90%;
}
.col-s-100 {
  width: 100%;
}

@media all and (min-width: 800px) {
  .show-s {
    display: none;
  }
  .col-m-25 {
    width: 25%;
  }
  .col-m-30 {
    width: 30%;
  }
  .col-m-33 {
    width: 33.333%;
  }
  .col-m-40 {
    width: 40%;
  }
  .col-m-50 {
    width: 50%;
  }
  .col-m-66 {
    width: 66.666%;
  }
  .col-m-75 {
    width: 75%;
  }
  .col-m-100 {
    width: 100%;
  }
  .noMobile-padding-right {
    padding-right: 50px;
  }
}
@media all and (min-width: 1000px) {
  .col-l-10 {
    width: 10%;
  }
  .col-l-25 {
    width: 25%;
  }
  .col-l-33 {
    width: 33.333%;
  }
  .col-l-50 {
    width: 50%;
  }
  .col-l-75 {
    width: 75%;
  }
  .col-l-90 {
    width: 90%;
  }
  .col-l-100 {
    width: 100%;
  }
}

.bts_navi {
  position: relative;
  display: block;
  width: 100%;
  height: 80px;
  background-color: rgb(10, 10, 10);
  box-shadow: 0 1px 5px rgba(100, 100, 100, 0.1);
  box-sizing: border-box;
  z-index: 1001;
  border-bottom: 2px solid rgb(250, 250, 250);
}
.bts_navi:before {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 100%;
  opacity: 0.2;
  background-image: url(/media/bg_grunge.webp);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  z-index: 1001;
}

.bts_navi .content {
  position: relative;
  display: block;
  box-sizing: border-box;
  width: 99%;
  max-width: 1200px;
  margin: 0 auto;
  white-space: nowrap;
  height: 100%;
  line-height: 80px;
  z-index: 1001;
}

.bts_navi .header {
  float: left;
  box-sizing: border-box;
  vertical-align: top;
  margin-top: 15px;
}

@media all and (max-width: 800px) {
  .bts_navi .header {
    width: 100%;
    text-align: center;
  }
  .bts_navi .header .sub {
    text-align: center;
  }
}

.bts_navi .links {
  box-sizing: border-box;
  vertical-align: top;
  text-align: center;
}

.bts_navi .links a {
  font-size: 12pt;
  font-family: "Cairo";
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  margin: 0 9px;
  padding: 0 1px;
  border-radius: 2px;
  transition: transform 2s, color 1s;
  color: rgb(200, 200, 200);
}

.bts_navi .links a.active,
.bts_navi .links a:hover {
  border-bottom: 2px solid rgba(250, 250, 250, 0.9);
  color: rgb(250, 250, 250);
  transform: scale3d(1, 1, 1);
}
.bts_navi .mobileNaviShow {
  height: 100%;
}

.bts_navi .mobileLogo {
  display: inline-block;
  width: calc(100% - 75px);
  height: 100%;
  text-align: center;
  vertical-align: middle;
  margin-top: -10px;
}
.bts_navi .mobileLogo a:hover {
  border: 0;
}
.bts_navi .mobileLogo img {
  vertical-align: middle;
  height: 80%;
}
.bts_navi .mobileBars {
  display: inline-block;
  width: 75px;
  box-sizing: border-box;
  padding-right: 10px;
  vertical-align: middle;
}

.bts_navi .mobileBars span {
  padding: 10px;
  font-size: 18pt;
  line-height: 18pt;
  color: white;
  cursor: pointer;
  border: 2px solid white;
  border-radius: 5px;
}

.mobileNavi {
  display: block;
  position: fixed;
  box-sizing: border-box;
  top: 80px;
  left: 0;
  width: 100vw;
  height: calc(100vh - 80px);
  background-color: rgb(20, 20, 20);
  color: white;
  z-index: 1000;
  text-align: center;
  padding: 10px 0;
  overflow-y: scroll;
  transform: translate(0, calc(-100% - 80px));
  transition: transform 500ms;
}

.mobileNavi a {
  display: block;
  box-sizing: border-box;
  width: 90%;
  font-size: 16pt;
  line-height: 16pt;
  padding: 20px 5px;
  border: 2px solid rgb(200, 200, 200);
  margin: 10px auto;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Cairo";
  transition: all 0.5s;
  color: rgb(200, 200, 200);
}

.mobileNavi a.active,
.bts_navi .mobileNavi a:hover {
  color: rgb(20, 20, 20);
  background-color: rgb(200, 200, 200);
}

@media all and (min-width: 550px) {
  .mobileNaviShow {
    display: none;
  }
}
@media all and (max-width: 549px) {
  .mobileNaviHide {
    display: none;
  }
}

/* -------------------------------------------------------------------------------------------------------------------------------*/
/* --- SHOP FOOTER --------------------------------------------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------------------------------------------------------------*/

.bts_footer {
  position: relative;
  width: 100%;
  min-height: 200px;
  padding: 0;
  padding-top: 10px;
  background-color: rgb(10, 10, 10);
  color: #eee;
  font-family: "SourceSansPro";
  z-index: 10;
}
.bts_footer:before {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.25;
  background-image: url(/media/bg_grunge.webp);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  z-index: 1;
}
@media all and (max-width: 800px) {
  .bts_footer:before {
    background-size: 200%;
    opacity: 0.2;
  }
}

.bts_footer .content {
  position: relative;
  z-index: 10;
  display: block;
  width: 99%;
  max-width: 1200px;
  padding: 20px 0 5px 0;
  margin: 0 auto;
}

.bts_footer .copyright {
  display: block;
  width: 99%;
  text-align: center;
  color: white;
  font-family: "Cairo";
  letter-spacing: 1px;
  font-size: 8pt;
  overflow: hidden;
}

.bts_footer #followUs a {
  text-decoration: none;
  font-size: 20pt;
}

.bts_footer .avatarBox {
  display: block;
  margin: 0 auto;
  width: 100%;
}

.bts_footer .avatarBox .avatarCol {
  display: inline-block;
  box-sizing: border-box;
  text-align: center;
  font-size: 15pt;
  vertical-align: middle;
  margin-top: 30px;
  margin-bottom: 20px;
}
.bts_footer .avatarBox .avatarCol .followIcon {
  color: white;
  font-size: 14pt;
  padding: 0 8px;
}

.bts_footer .avatarBox img.avatar {
  max-height: 200px;
  max-width: 100%;
}

@keyframes shake {
  10%,
  90% {
    transform: translate3d(0, -1px, 0);
    color: rgb(200, 200, 200);
  }

  20%,
  80% {
    transform: translate3d(0, 4px, 0);
    color: rgb(200, 150, 150);
  }

  30%,
  50%,
  70% {
    transform: translate3d(0, -2px, 0);
    color: rgb(200, 200, 200);
  }

  40%,
  60% {
    transform: translate3d(0, 6px, 0);
    color: rgb(200, 100, 100);
  }
}

.apply-shake {
  animation: shake 1.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

/* -------------------------------------------------------------------------------------------------------------------------------*/
/* --- SHOP ----------------------------------------------------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------------------------------------------------------------*/

.cookieConsent {
  position: fixed;
  bottom: 10px;
  right: 0;
  display: inline-block;
  padding: 0 10px;
  box-sizing: border-box;
  z-index: 10001;
}
.cookieConsent .inner {
  display: block;
  width: 100%;
  box-sizing: border-box;
  background-color: rgba(3, 233, 244, 0.75);
  padding: 15px;
  color: #333;
  backdrop-filter: blur(5px);
  border-radius: 5px;
  font-size: 10pt;
}

.cookieConsent .inner a {
  color: rgba(30, 30, 30, 1);
  text-decoration: underline;
  transition: color 0.25s;
  font-weight: bold;
}
.cookieConsent .inner a:hover {
  color: rgba(20, 20, 20, 0.5);
  text-decoration: underline;
}

.cookieOkButton {
  display: inline-block;
  box-sizing: border-box;
  border: 2px solid rgb(50, 50, 50);
  background: rgba(250, 250, 250, 0.6);
  color: rgb(20, 20, 20);
  padding: 5px 10px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  margin-top: 10px;
}

.cookieOkButton:hover,
.cookieOkButton.active {
  background: rgba(250, 250, 250, 0.9);
  color: rgb(20, 20, 20);
}
