@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/montserrat-v25-latin-regular.woff2") format("woff2"), url("../fonts/montserrat-v25-latin-regular.woff") format("woff");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/montserrat-v25-latin-600.woff2") format("woff2"), url("../fonts/montserrat-v25-latin-600.woff") format("woff");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/Montserrat-Black.woff2") format("woff2"), url("../fonts/Montserrat-Black.woff") format("woff");
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Montserrat";
}

.frame {
  width: 1440px;
  margin: 0px auto;
}

body, html {
  height: 100%;
  width: 100%;
  position: relative;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}

body {
  background: #000000;
}
body.page-active {
  padding-top: 100px;
}
body.page-active nav {
  background: #000000;
}

a {
  outline: none;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}

.btn, .btn-black {
  font-weight: 900;
  font-size: 0.8rem;
  border-width: 3px;
  border-style: solid;
  padding: 18px 25px;
  display: inline-flex;
  border-radius: 30px;
  margin-top: 80px;
}

.btn-black {
  border-color: #000000;
  color: #000000;
}
.btn-black:hover {
  background: #000000;
  color: #fcb66c;
}

.btn-font {
  font-size: 0.9em;
  font-weight: 700;
  text-transform: uppercase;
}

@keyframes BOUNCE {
  0%, 100% {
    transform: translateY(2px);
  }
  50% {
    transform: translateY(-5px);
  }
}
@-webkit-keyframes BOUNCE {
  0%, 100% {
    transform: translateY(2px);
  }
  50% {
    transform: translateY(-5px);
  }
}
@keyframes LOADER {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media only screen and (max-width: 1700px) {
  .frame {
    width: 100%;
    padding: 0px 150px;
  }
}
@media only screen and (max-width: 1440px) {
  body.page-active {
    margin-top: 80px;
  }
  .btn, .btn-black {
    font-size: 0.6rem;
    border-width: 2px;
    padding: 15px 25px;
    margin-top: 60px;
  }
}
@media only screen and (max-width: 1220px) {
  body.page-active {
    margin-top: 70px;
  }
}
@media only screen and (max-width: 1024px) {
  .frame {
    padding: 0px 100px;
  }
}
@media only screen and (max-width: 750px) {
  .frame {
    padding: 0px 60px;
  }
}
@media only screen and (max-width: 500px) {
  .frame {
    padding: 0px 30px;
  }
}
#cookie-alert {
  position: fixed;
  background: #000000;
  color: #ffffff;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding: 50px 40px;
  z-index: 9999;
  text-align: center;
  transition: all 0.3s ease-in-out;
  display: none;
}
#cookie-alert span {
  display: inline-block;
  width: 200px;
  font-weight: 700;
  background: #8f663b;
  color: #ffffff;
  border: solid 2px #8f663b;
  padding: 15px 0px;
  margin-top: 30px;
  font-size: 0.8em;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.2s ease-in-out;
}
#cookie-alert span:hover {
  background: none;
  color: #8f663b;
}
#cookie-alert p {
  text-align: center;
  line-height: 160%;
  font-size: 0.8em;
}
#cookie-alert p a:link, #cookie-alert p a:active, #cookie-alert p a:visited {
  color: #8f663b;
  font-weight: 700;
  position: relative;
}
#cookie-alert p a:link:after, #cookie-alert p a:active:after, #cookie-alert p a:visited:after {
  display: block;
  content: "";
  height: 2px;
  background: #8f663b;
  width: 0%;
  position: absolute;
  bottom: -5px;
  left: 0px;
  transition: all 0.3s ease-in-out;
}
#cookie-alert p a:link:hover:after, #cookie-alert p a:active:hover:after, #cookie-alert p a:visited:hover:after {
  width: 100%;
}

@media only screen and (max-width: 950px) {
  #cookie-alert {
    padding: 40px 40px;
  }
  #cookie-alert br {
    display: none;
  }
  #cookie-alert span {
    padding: 15px 0px;
    font-size: 0.8em;
    width: 150px;
  }
  #cookie-alert p {
    font-size: 0.8em;
  }
}
@media only screen and (max-width: 450px) {
  #cookie-alert {
    padding: 40px 10px;
  }
  #cookie-alert span {
    padding: 12px 0px;
    font-size: 0.6em;
    width: 120px;
  }
  #cookie-alert p {
    font-size: 0.6em;
  }
}
form input, form select, form button, form textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  border-radius: 30px;
}
form button {
  cursor: pointer;
}
form option {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
form input, form select, form button {
  padding: 20px;
  font-weight: 400;
  width: 100%;
  font-size: 0.8rem;
  border: solid 2px #8d929b;
  margin-bottom: 10px;
  transition: all 0.2s ease-in-out;
}
form input[type=submit], form select[type=submit], form button[type=submit] {
  margin-top: 30px;
  width: 300px;
  background: #000000;
  border: none;
  color: #fcb66c;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}
form input[type=submit]:hover, form select[type=submit]:hover, form button[type=submit]:hover {
  background: #fcb66c;
  color: #000000;
}
form input:focus {
  border: solid 2px #000000;
  -webkit-box-shadow: 0px 0px 0px 1px #000000;
  box-shadow: 0px 0px 0px 1px #000000;
}

.nav {
  background: rgba(0, 0, 0, 0.6039215686);
  text-transform: uppercase;
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 8000;
}
.nav .frame {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav .nav-logo {
  z-index: 3000;
  opacity: 0;
  transform: translateX(-200px);
  transition: all 0.3s ease-in-out;
}
.nav .nav-logo img {
  width: 300px;
}
.nav .nav-logo.active {
  transform: translateX(0px);
  opacity: 1;
}
.nav .nav-links {
  opacity: 0;
  transform: translateX(200px);
  transition: all 0.3s ease-in-out;
}
.nav .nav-links.active {
  transform: translateX(0px);
  opacity: 1;
  pointer-events: all;
}
.nav .nav-links a {
  display: inline-block;
  color: #ffffff;
  padding: 45px 25px;
  font-size: 0.8em;
  font-weight: 900;
}
.nav .nav-links a:hover, .nav .nav-links a.active {
  color: #fcb66c;
}

@media only screen and (max-width: 1440px) {
  .nav .nav-links a {
    padding: 40px 18px;
  }
  .nav .nav-logo img {
    width: 260px;
  }
}
@media only screen and (max-width: 1220px) {
  .nav .nav-links a {
    padding: 40px 12px;
    font-size: 0.65rem;
  }
  .nav .nav-logo img {
    width: 220px;
  }
}
@media only screen and (max-width: 1024px) {
  .nav {
    padding: 30px 0px;
  }
  .nav .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
    pointer-events: none;
  }
  .nav .nav-links a {
    display: block;
    padding: 12px;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 500px) {
  .nav .nav-logo img {
    width: 190px;
  }
}
#rsp-btn {
  z-index: 9000;
  cursor: pointer;
  display: none;
  transition: all 0.2s ease-in-out;
  flex-direction: column;
  align-items: flex-end;
}
#rsp-btn.active {
  transform: rotate(90deg);
}
#rsp-btn:hover span:nth-child(1) {
  transform: translateX(10px);
}
#rsp-btn:hover span:nth-child(2) {
  transform: translateX(-10px);
}
#rsp-btn:hover span:nth-child(3) {
  transform: translateX(-5px);
}
#rsp-btn span {
  display: block;
  height: 4px;
  background: #fcb66c;
  margin: 5px 0px;
  transition: all 0.2s ease-in-out;
}
#rsp-btn span:nth-child(1) {
  width: 50px;
}
#rsp-btn span:nth-child(2) {
  width: 40px;
}
#rsp-btn span:nth-child(3) {
  width: 30px;
}

@media only screen and (max-width: 920px) {
  #rsp-btn {
    display: flex;
  }
}
@media only screen and (max-width: 680px) {
  #rsp-btn {
    top: 34px;
    right: 20px;
  }
  #rsp-btn span {
    height: 4px;
    margin: 4px 0px;
  }
  #rsp-btn span:nth-child(1) {
    width: 45px;
  }
  #rsp-btn span:nth-child(2) {
    width: 35px;
  }
  #rsp-btn span:nth-child(3) {
    width: 30px;
  }
}
.instagram {
  background: #000000;
}
.instagram h1 {
  color: #ffffff;
}
.instagram .instagram-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 10px;
}
.instagram .instagram-grid a:nth-child(-n+3) {
  display: block;
}
.instagram .instagram-grid a {
  height: 420px;
  display: none;
}
.instagram .instagram-grid a:hover {
  opacity: 0.4;
}
.instagram .instagram-grid a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media only screen and (max-width: 1440px) {
  .instagram .instagram-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media only screen and (max-width: 1050px) {
  .instagram .instagram-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 650px) {
  .instagram .instagram-grid {
    grid-template-columns: 1fr;
  }
}
.header {
  background: #000000;
  position: relative;
  height: 950px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header img {
  height: 100%;
  width: 100%;
  inset: 0;
  position: absolute;
  object-fit: cover;
}

.header-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  z-index: 2;
  bottom: 100px;
  width: 100%;
  padding: 20px 10%;
}
.header-grid aside {
  border-left: solid 1px #ffffff;
  padding-left: 20px;
}
.header-grid .header-date {
  text-shadow: rgba(11, 22, 32, 0.4431372549) 0px 0 30px;
}
.header-grid .header-date h4 {
  color: #fcb66c;
  font-size: 5rem;
  line-height: 90%;
}
.header-grid .header-date p {
  font-size: 2rem;
  color: #ffffff;
  font-weight: 600;
  margin-left: 3px;
}
.header-grid .header-date small {
  display: flex;
  color: #ffffff;
  margin-top: 4px;
  gap: 3px;
  align-items: center;
}
.header-grid .header-buttons {
  display: flex;
  gap: 20px;
}

.header-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -25rem;
  text-shadow: rgba(11, 22, 32, 0.4431372549) 0px 0 30px;
}
.header-content span {
  color: #ffffff;
  font-size: clamp(1.5rem, 1.1656rem + 1.5287vw, 3rem);
  letter-spacing: 10px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 120%;
}
.header-content h1 {
  font-size: clamp(4rem, 2.6624rem + 6.1146vw, 10rem);
  text-transform: uppercase;
  color: #fcb66c;
  line-height: 90%;
}
.header-content h2 {
  background: #12151b;
  display: flex;
  flex-grow: 0;
  color: #e44747;
  padding: 10px 20px;
  margin-bottom: 8px;
  letter-spacing: 5px;
}

@media only screen and (max-width: 1280px) {
  .header-grid .header-buttons {
    display: flex;
    gap: 10px;
    flex-direction: column;
  }
  .header-grid .header-buttons a {
    justify-content: center;
  }
}
@media only screen and (max-width: 920px) {
  .header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100svh;
    background: red;
  }
  .header-content {
    margin-top: 0px;
  }
  .header-grid {
    flex-direction: column;
    position: relative;
    bottom: auto;
  }
  .header-grid .header-date {
    text-align: center;
    width: 100%;
  }
  .header-grid .header-date h4 {
    font-size: 3rem;
  }
  .header-grid .header-date p {
    font-size: 1.5rem;
  }
  .header-grid aside {
    border-left: none;
    border-bottom: solid 1px #ffffff;
    border-top: solid 1px #ffffff;
    padding-left: 0px;
    padding: 30px 0px;
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media only screen and (max-width: 490px) {
  .header-grid .header-date p {
    font-size: 1.2rem;
  }
  .header-content h2 {
    font-size: 1rem;
    letter-spacing: 2px;
  }
}
.page-content {
  margin-top: 50px;
}

.content {
  transition: all 0.3s ease-in-out 0.3s;
  opacity: 1;
  padding: 110px 0px;
  text-transform: uppercase;
}
.content.white {
  background: #ffffff;
}
.content p {
  font-size: 1.2em;
  line-height: 160%;
}
.content h1 {
  font-size: 1.8em;
  font-weight: 900;
  margin-bottom: 80px;
  text-align: center;
  z-index: 200;
  position: relative;
}
.content h1 span {
  color: #8f663b;
  margin-left: 18px;
  padding: 10px 18px;
  border-left: 1px solid #8f663b;
}

@media only screen and (max-width: 1280px) {
  .content h1 {
    font-size: 1.8em;
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 980px) {
  .content {
    padding: 90px 0px;
  }
}
@media only screen and (max-width: 780px) {
  .content {
    padding: 60px 0px;
  }
  .content h1 {
    font-size: 1.3em;
    margin-bottom: 60px;
  }
  .content h1 span {
    margin-left: 12px;
    padding: 8px 12px;
  }
}
.post {
  margin-bottom: 40px;
}
.post span {
  color: #999;
  letter-spacing: 4px;
  font-size: 0.9em;
}
.post h2 {
  color: #000000;
  font-size: 1.4em;
  margin-bottom: 10px;
}
.post h3 {
  font-size: 1em;
  margin-bottom: 5px;
  line-height: 130%;
}
.post p, .post ul li {
  color: #4e515f;
  text-transform: none;
  font-size: 1em;
  line-height: 180%;
}
.post p img, .post ul li img {
  width: 100%;
  height: auto;
}
.post p strong, .post ul li strong {
  font-size: 1em;
}
.post p a:link, .post p a:active, .post p a:visited, .post ul li a:link, .post ul li a:active, .post ul li a:visited {
  font-weight: 900;
  color: #000000;
}
.post p a:link:hover, .post p a:active:hover, .post p a:visited:hover, .post ul li a:link:hover, .post ul li a:active:hover, .post ul li a:visited:hover {
  color: #fcb66c;
}
.post ul {
  padding: 10px 0px 10px 12px;
}

@media only screen and (max-width: 980px) {
  .post p {
    font-size: 0.9rem;
  }
  .post h2 {
    font-size: 1.2em;
  }
}
.konzert + .konzert {
  margin-top: 20px;
  border-top: dashed 1px #000000;
  padding-top: 20px;
}

.konzert {
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.konzert .konzert-details {
  display: block;
  line-height: 120%;
}
.konzert .konzert-details .date {
  font-size: 1.1em;
  color: #fcb66c;
  background: #12151b;
  padding: 4px 8px;
  display: inline-flex;
}
.konzert .konzert-details .location {
  color: #000000;
  font-size: 0.9em;
}
.konzert .konzert-btn {
  font-size: 0.58em;
  padding: 10px 15px;
  border-radius: 20px;
  color: #fcb66c;
  background: #000000;
  font-weight: 900;
  border: solid 2px #000000;
}
.konzert .konzert-btn:hover {
  background: #fcb66c;
  color: #000000;
  border-color: #fcb66c;
}

.history {
  background: #000000;
}
.history h1 {
  color: #ffffff;
}
.history .history-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
}
.history a {
  color: #ffffff;
  border: solid 2px #fcb66c;
  padding: 10px;
  border-radius: 30px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 900;
}
.history a:hover {
  background: #fcb66c;
  color: #000000;
}

@media only screen and (max-width: 1280px) {
  .history a {
    font-size: 0.8rem;
  }
}
@media only screen and (max-width: 750px) {
  .konzert .konzert-details .date {
    font-size: 1rem;
  }
  .konzert .konzert-details .location {
    font-size: 0.8rem;
  }
}
@media only screen and (max-width: 640px) {
  .history .history-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media only screen and (max-width: 400px) {
  .history a {
    font-size: 0.7rem;
  }
  .konzert .konzert-details .date {
    font-size: 0.9rem;
  }
  .konzert .konzert-details .location {
    font-size: 0.7rem;
  }
}
.bio .bio-text {
  margin-top: 120px;
}
.bio .bio-text h2 {
  text-align: center;
}
.bio .bio-band {
  margin-bottom: 80px;
}
.bio .bio-band .bio-band-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
}
.bio .bio-band .bio-band-grid .bio-band-img {
  background: #000000;
  border-radius: 30px;
  overflow: hidden;
}
.bio .bio-band .bio-band-grid .bio-band-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.bio .bio-band .bio-band-grid .bio-band-members div + div {
  margin-top: 10px;
}
.bio .bio-band .bio-band-grid .bio-band-members div {
  background: #000000;
  padding: 19px 30px;
  color: #fcb66c;
  border-radius: 30px;
}
.bio .bio-band .bio-band-grid .bio-band-members div span {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.8em;
}

@media only screen and (max-width: 1280px) {
  .bio .bio-text {
    margin-top: 100px;
  }
  .bio .bio-band {
    margin-bottom: 60px;
  }
  .bio .bio-band .bio-band-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 10px;
  }
  .bio .bio-band .bio-band-grid .bio-band-members div {
    padding: 19px 25px;
  }
  .bio .bio-band .bio-band-grid .bio-band-members div h4 {
    font-size: 0.9rem;
  }
  .bio .bio-band .bio-band-grid .bio-band-members div span {
    font-size: 0.7rem;
  }
}
@media only screen and (max-width: 980px) {
  .bio .bio-text {
    margin-top: 70px;
  }
  .bio .bio-band .bio-band-grid {
    grid-template-columns: 1fr;
  }
  .bio .bio-band .bio-band-grid .bio-band-members div {
    padding: 15px 25px;
  }
}
.album {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 40px;
}
.album .cover, .album .spotify {
  overflow: hidden;
}
.album .cover img, .album .spotify img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.album .cover iframe, .album .spotify iframe {
  width: 100%;
  height: 100%;
}
.album .cover {
  border-radius: 10px;
}
.album .links {
  background: #000000;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
}
.album .links a + a {
  border-top: dashed 1px #8d929b;
}
.album .links a {
  background: #000000;
  padding: 20px 10px;
  color: #ffffff;
  font-weight: 900;
  display: block;
  font-size: 0.7em;
}
.album .links a:hover {
  background: #fcb66c;
  color: #000000;
}

@media only screen and (max-width: 1280px) {
  .album {
    margin-bottom: 40px;
  }
  .album .cover iframe, .album .spotify iframe {
    height: 300px;
  }
  .album .links {
    height: 300px;
  }
}
@media only screen and (max-width: 980px) {
  .album {
    grid-template-columns: 1fr 1fr;
  }
  .album .links {
    height: auto;
    grid-column: 1/3;
  }
}
@media only screen and (max-width: 520px) {
  .album {
    grid-template-columns: 1fr;
    height: auto;
  }
  .album .cover, .album .spotify {
    width: 100%;
  }
  .album .links {
    grid-column: 1;
  }
}
.artist-grid {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.kollektiv-artists {
  margin-top: 120px;
}

.artist {
  background: #000000;
  padding: 40px 20px;
  position: relative;
  text-align: center;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.artist:hover {
  background: #fcb66c;
  cursor: pointer;
}
.artist:hover p {
  color: #000000;
}
.artist:hover .artist-circle {
  border-color: #000000;
}
.artist h2, .artist p {
  color: #ffffff;
}
.artist h2 {
  margin-top: 20px;
  font-size: 1em;
}
.artist p {
  font-size: 0.7em;
  color: #fcb66c;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}
.artist span {
  color: #ffffff;
  font-size: 0.6em;
  font-weight: 600;
}
.artist .artist-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: solid 4px #ffffff;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.artist .artist-circle img {
  width: 100%;
  height: 100%;
  object-position: center center;
  object-fit: cover;
  border-radius: 50%;
}

@media only screen and (max-width: 1450px) {
  .artist-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media only screen and (max-width: 1050px) {
  .artist-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 700px) {
  .artist-grid {
    grid-template-columns: 1fr;
  }
}
.kontakt .kontakt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.kontakt .kontakt-grid .kontakt-item {
  background: #000000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  color: #ffffff;
  padding: 30px 40px;
  font-weight: 600;
}
.kontakt .kontakt-grid .kontakt-item .kontakt-header {
  line-height: 100%;
  margin-bottom: 10px;
}
.kontakt .kontakt-grid .kontakt-item .kontakt-person-outer {
  width: 100%;
  text-align: center;
}
.kontakt .kontakt-grid .kontakt-item .kontakt-person-outer .kontakt-person {
  font-size: 0.9em;
  color: #fcb66c;
  display: block;
  padding: 10px 0px;
  margin: 10px 0px;
  border-top: solid 1px #fcb66c;
  border-bottom: solid 1px #fcb66c;
}
.kontakt .kontakt-grid .kontakt-item .kontakt-btn {
  margin-top: 15px;
}
.kontakt .kontakt-grid .kontakt-item .kontakt-btn a {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: solid 2px #ffffff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0px 5px;
  color: #ffffff;
}
.kontakt .kontakt-grid .kontakt-item .kontakt-btn a:hover {
  background: #ffffff;
  color: #fcb66c;
}

@media only screen and (max-width: 1280px) {
  .kontakt .kontakt-grid .kontakt-item h4 {
    font-size: 0.8rem;
    margin-bottom: 5px;
  }
  .kontakt .kontakt-grid .kontakt-item p {
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 920px) {
  .kontakt .kontakt-grid {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 450px) {
  .kontakt .kontakt-grid .kontakt-item {
    padding: 25px;
  }
  .kontakt .kontakt-grid .kontakt-item h4 {
    font-size: 0.7rem;
    margin-bottom: 5px;
  }
  .kontakt .kontakt-grid .kontakt-item p {
    font-size: 0.9rem;
  }
  .kontakt .kontakt-grid .kontakt-item .kontakt-person-outer .kontakt-person {
    font-size: 0.8rem;
  }
}
.konzerte {
  text-align: center;
}

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

.socials {
  background: #12151b;
  position: relative;
}
.socials img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.7;
  z-index: 2;
}
.socials .frame {
  display: flex;
  justify-content: center;
  z-index: 200;
  position: relative;
}
.socials a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0px 20px;
  color: #ffffff;
  border: solid 2px #ffffff;
  font-size: 1.4rem;
}
.socials a:hover {
  background: none;
  color: #fcb66c;
  border-color: #fcb66c;
  background: #000000;
}

@media only screen and (max-width: 950px) {
  .socials a {
    width: 60px;
    height: 60px;
    margin: 0px 10px;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 570px) {
  .socials a {
    width: 40px;
    height: 40px;
    margin: 0px 5px;
    font-size: 0.8rem;
  }
}
@media only screen and (max-width: 350px) {
  .socials a {
    width: 35px;
    height: 35px;
    margin: 0px 3px;
    font-size: 0.8rem;
  }
}
.footer {
  text-transform: uppercase;
  font-weight: 600;
  background: #000000;
  border-top: solid 1px #ffffff;
}
.footer .frame {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  color: #fcb66c;
  font-weight: 900;
}

.footer-links {
  display: flex;
  gap: 30px;
}
.footer-links a {
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
}
.footer-links a:hover {
  color: #8d929b;
}

.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  border: solid 1px #ffffff;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
}
.footer-socials a:hover {
  color: #12151b;
  background: #fcb66c;
  border-color: #fcb66c;
}

@media only screen and (max-width: 980px) {
  .footer .frame {
    flex-direction: column-reverse;
    gap: 40px;
  }
}
.big-cart-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}
.big-cart-actions a.big-cart:link, .big-cart-actions a.big-cart:active, .big-cart-actions a.big-cart:visited {
  display: block;
  background: #fcb66c;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #000000;
  padding: 20px 0px;
  text-decoration: none;
  text-align: center;
  margin-top: 30px;
}
.big-cart-actions a.big:hover, .big-cart-actions a.big-cart:hover {
  background: #8f663b;
}

#cart-col-names, .item {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 0.8fr 1.5fr 0.7fr 1fr 1fr 1fr 1fr;
}
#cart-col-names div, .item div {
  color: #000000;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.8em;
}

.item {
  background: #000000;
  border-radius: 30px;
  padding: 15px 0px;
  font-size: 0.8em;
  font-family: "Montserrat";
  margin-bottom: 10px;
  align-items: center;
}
.item div {
  color: #ffffff;
}
.item div p {
  display: none;
}
.item div:last-child {
  display: grid;
  grid-template-columns: 40px 40px 40px;
  justify-content: center;
}
.item div:last-child span {
  cursor: pointer;
  transit: all 0.2s ease-in-out;
  font-size: 1.2em;
}
.item div:last-child span:hover {
  color: #fcb66c;
}

.item-summary {
  background: none;
  grid-template-columns: 1.2fr 1.2fr 1.2fr 1.2fr 1.2fr 0.8fr;
  padding: 15px 0px;
  margin-bottom: 0px;
  border-bottom: dashed 1px #777;
  font-size: 0.8em;
  border-radius: 0px;
}
.item-summary:first-of-type {
  margin-top: 10px;
}
.item-summary:last-of-type {
  margin-bottom: 10px;
}
.item-summary div {
  justify-self: start;
  color: #000000;
}

a.art-delete:link, a.art-delete:active, a.art-delete:visited {
  opacity: 0.3;
  position: absolute;
  right: 8%;
  bottom: 28%;
  top: 34%;
}
a.art-delete:link img, a.art-delete:active img, a.art-delete:visited img {
  width: 20px;
  height: 20px;
}
a.art-delete:link:hover, a.art-delete:active:hover, a.art-delete:visited:hover {
  opacity: 1;
}

a.art-edit {
  background: #8f663b;
  text-decoration: none;
  color: #ffffff;
  font-size: 1em;
  padding: 3%;
  width: 1em;
  display: inline-block;
}
a.art-edit:hover {
  background: #8f663b;
}

.final-price {
  font-size: 2.2em;
  color: #12151b;
  font-weight: 700;
  margin-top: 20px;
  text-align: right;
}

@media only screen and (max-width: 950px) {
  #cart-col-names {
    grid-template-columns: 0.8fr 1fr 1.2fr 1fr 1.1fr 1fr 1.2fr;
  }
  .item-summary {
    grid-template-columns: 1.2fr 1.2fr 1.2fr 1.2fr 1.2fr 0.8fr !important;
  }
  .item {
    grid-template-columns: 0.8fr 1fr 1fr 1.2fr 1fr 1fr 1.2fr;
  }
  .item div:last-child {
    grid-template-columns: 32px 32px 32px;
  }
  #cart-col-names, .item {
    margin-bottom: 10px;
  }
  #cart-col-names div, .item div {
    font-size: 0.9em;
  }
  .item {
    padding: 11px 0px;
    font-size: 0.8em;
    letter-spacing: 0px;
  }
}
@media only screen and (max-width: 800px) {
  .big-cart-actions {
    grid-gap: 20px;
  }
  .big-cart-actions a.big-cart:link, .big-cart-actions a.big-cart:active, .big-cart-actions a.big-cart:visited {
    font-size: 0.7em;
    padding: 15px 0px;
    margin-top: 20px;
  }
  #cart-col-names {
    display: none;
  }
  .item-summary {
    grid-template-columns: 1fr !important;
  }
  .item-summary div:first-child {
    width: 100% !important;
  }
  .item-summary div:last-child {
    display: inline-block !important;
  }
  .item-total, .item-delivery {
    border: none !important;
    border-bottom: dashed 1px #000000 !important;
  }
  .item-total div:nth-child(-n+4), .item-delivery div:nth-child(-n+4) {
    display: none;
  }
  .item-summary div:last-child {
    background: none !important;
    margin: 0px !important;
  }
  .item {
    margin-bottom: 20px;
    grid-template-columns: 1fr;
    background: none;
    overflow: hidden;
    padding-top: 0px;
    margin-bottom: 20px;
    color: #000000;
    border: solid 1px #000000;
  }
  .item div {
    text-align: left;
    padding: 5px 20px;
    font-size: 0.9em;
    color: #000000;
  }
  .item div:nth-child(2) {
    font-weight: 700;
  }
  .item div p {
    display: inline-block;
    margin-right: 10px;
    color: #8f663b;
    font-size: 1em !important;
    width: 100px;
    line-height: 0%;
    text-transform: uppercase;
  }
  .item div:first-child {
    background: #000000;
    text-align: center;
    color: #ffffff;
    margin-bottom: 10px;
    padding: 12px 20px;
  }
  .item div:last-child {
    background: #fcb66c;
    margin: 10px 20px;
    border-radius: 30px;
  }
  .item div:last-child span:hover {
    color: #ffffff;
  }
}
@media only screen and (max-width: 800px) {
  .final-price {
    font-size: 1.4rem;
    text-align: center;
    background: #000000;
    padding: 20px;
    border-radius: 30px;
  }
}
@media only screen and (max-width: 580px) {
  .big-cart-actions {
    grid-gap: 0px;
    grid-template-columns: 1fr;
  }
  .big-cart-actions a.big-cart:link:last-child, .big-cart-actions a.big-cart:active:last-child, .big-cart-actions a.big-cart:visited:last-child {
    margin-top: 10px;
  }
  .item div span {
    width: 70px;
  }
}
aside#order-status {
  font-family: "Montserrat";
  font-weight: 700;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 40px;
}
aside#order-status a {
  background: #fcb66c;
  padding: 20px 20px 20px 70px;
  color: #12151b;
  position: relative;
  font-size: 0.8em;
}
aside#order-status a p {
  display: inline-block;
  letter-spacing: 0px;
  font-size: 0.9em;
  z-index: 200;
  position: relative;
}
aside#order-status a i {
  font-size: 1.2em;
  margin-right: 14px;
  position: relative;
  top: 1px;
}
aside#order-status a span {
  background: #fcb66c;
  display: block;
  height: 100%;
  width: 57px;
  position: absolute;
  z-index: 1;
  top: 0px;
  right: -20px;
  bottom: 0px;
  transform: rotate(45deg);
  transition: all 0.2s ease-in-out;
}
aside#order-status a:hover, aside#order-status a:hover span {
  background: #8f663b;
}
aside#order-status a.order-status-active {
  background: #000000;
  color: #fcb66c;
}
aside#order-status a.order-status-active span {
  background: #000000;
}

div.order-form input#payment-submit-hidden {
  display: none;
}
div.order-form span {
  font-size: 1.3em;
  text-transform: none !important;
  font-weight: 400;
  margin-bottom: 5px;
  display: block;
}
div.order-form div#payment-btn-grid {
  margin-top: 20px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}
div.order-form div#payment-btn-grid span.payment-btn-active {
  border-color: #fcb66c !important;
}
div.order-form div#payment-btn-grid span.payment-btn-active div {
  background: #000000 !important;
  color: #fcb66c !important;
}
div.order-form div#payment-btn-grid span.payment-btn-active h2 {
  background: #fcb66c !important;
  color: #000000 !important;
}
div.order-form div#payment-btn-grid span.payment-btn {
  border: solid 2px #000000;
  border-radius: 30px;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
div.order-form div#payment-btn-grid span.payment-btn:hover {
  border-color: #fcb66c;
}
div.order-form div#payment-btn-grid span.payment-btn:hover div {
  background: #000000;
  color: #fcb66c;
}
div.order-form div#payment-btn-grid span.payment-btn:hover h2 {
  background: #fcb66c;
  color: #000000;
}
div.order-form div#payment-btn-grid span.payment-btn h2 {
  padding: 20px;
  background: #000000;
  color: #ffffff;
  transition: all 0.2s ease-in-out;
  text-transform: uppercase;
  font-size: 0.8em;
}
div.order-form div#payment-btn-grid span.payment-btn h2 i {
  display: block;
  margin-bottom: 12px;
  font-size: 1.4em;
}
div.order-form div#payment-btn-grid span.payment-btn p {
  padding: 30px 40px;
  height: 140px;
  font-size: 0.7em;
  line-height: 160%;
}
div.order-form div#payment-btn-grid span.payment-btn div {
  background: #fcb66c;
  display: inline-block;
  padding: 15px 25px;
  color: #12151b;
  border-radius: 10px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.5em;
  margin-bottom: 30px;
  transition: all 0.2s ease-in-out;
}
div.order-form div.order-form-grid {
  display: grid;
  grid-gap: 10px;
}
div.order-form div.order-form-grid:nth-of-type(1) {
  grid-template-columns: 1fr 1fr;
}
div.order-form div.order-form-grid:nth-of-type(2) {
  grid-template-columns: 4fr 1fr;
}
div.order-form div.order-form-grid:nth-of-type(3) {
  grid-template-columns: 1fr 2fr 1fr;
}

@media only screen and (max-width: 1250px) {
  div.order-form div#payment-btn-grid span.payment-btn p {
    font-size: 0.6em;
    padding: 30px 10px;
  }
  aside#order-status {
    margin-bottom: 20px;
  }
  aside#order-status a {
    padding: 16px 10px 16px 50px;
    font-size: 0.6em;
  }
  aside#order-status a i {
    font-size: 1.1em;
    margin-right: 12px;
    top: 0px;
  }
  aside#order-status a span {
    height: 46px;
    width: 46px;
  }
}
@media only screen and (max-width: 980px) {
  aside#order-status a {
    padding: 10px 0px 10px 45px;
  }
  aside#order-status a p {
    letter-spacing: 0px;
  }
  aside#order-status a i {
    font-size: 1em;
    margin-right: 10px;
    top: 0px;
  }
  aside#order-status a span {
    height: 35px;
    width: 35px;
  }
  div.order-form span {
    font-size: 1.2em;
    margin-bottom: 5px;
  }
  div.order-form div#payment-btn-grid {
    margin-top: 20px;
    margin-bottom: 20px;
    grid-gap: 20px;
  }
  div.order-form div#payment-btn-grid span.payment-btn h2 {
    padding: 20px;
  }
  div.order-form div#payment-btn-grid span.payment-btn h2 i {
    margin-bottom: 8px;
    font-size: 1.1em;
  }
}
@media only screen and (max-width: 760px) {
  div.order-form div#payment-btn-grid {
    margin-top: 0px;
    grid-template-columns: 1fr;
  }
  div.order-form div#payment-btn-grid span.payment-btn h2 {
    padding: 15px;
  }
  div.order-form div#payment-btn-grid span.payment-btn h2 i {
    margin-bottom: 7px;
    font-size: 1em;
  }
  div.order-form div#payment-btn-grid span.payment-btn p {
    padding: 30px;
  }
  aside#order-status {
    grid-template-columns: 1fr;
  }
  aside#order-status a {
    padding: 15px 0px 15px 35px;
  }
  aside#order-status a span {
    display: none;
  }
  form#send-order div.order-form-grid {
    grid-gap: 0px;
  }
  form#send-order div.order-form-grid:nth-of-type(1) {
    grid-template-columns: 1fr;
  }
  form#send-order div.order-form-grid:nth-of-type(2) {
    grid-template-columns: 1fr;
  }
  form#send-order div.order-form-grid:nth-of-type(3) {
    grid-template-columns: 1fr;
  }
}
#paypal-button-container-outer {
  background: #000000;
  position: relative;
  padding: 20px 40px 40px 40px;
  border-radius: 20px;
}

#checkout-now-paypal, #checkout-now {
  font-size: 1.3em;
  background: #000000;
  padding: 20px 0px 20px 0px;
  display: block;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.2s ease-in-out;
  border: none;
  width: 100%;
}

#checkout-now {
  cursor: pointer;
}

#checkout-now {
  padding: 25px;
}
#checkout-now:hover {
  background: #fcb66c;
  color: #000000;
}

.summary-content {
  border-top: solid 1px #999;
  padding: 40px;
}
.summary-content:nth-child(even) {
  background: rgba(221, 221, 221, 0.4);
}
.summary-content:last-child {
  border-bottom: solid 1px #999;
}
.summary-content p {
  margin-top: 0px !important;
  font-size: 0.8em !important;
  line-height: 160% !important;
  text-transform: none;
}
.summary-content h2 {
  color: #000000;
  font-size: 1.2em;
  font-weight: 900;
}
.summary-content h3 {
  text-transform: none;
  font-weight: 700;
  color: #12151b;
  font-size: 0.8em;
  margin-top: 10px;
}
.summary-content h3:first-child {
  margin-top: 0px;
}
.summary-content a {
  background: #fcb66c;
  padding: 10px 15px;
  font-size: 0.7em;
  font-weight: 600;
  width: 190px;
  border-radius: 30px;
  text-align: center;
  color: #000000;
  display: block;
  margin-top: 10px;
}
.summary-content a:hover {
  background: #000000;
  color: #fcb66c;
}
.summary-content::after {
  content: "";
  display: block;
  clear: right;
}
.summary-content .final-price {
  font-size: 1.8em;
  font-weight: 700;
  margin-bottom: 0px;
}

@media only screen and (max-width: 800px) {
  .summary-content {
    padding: 40px 10px;
  }
  #checkout-now-paypal, #checkout-now {
    font-size: 1em;
  }
}
@media only screen and (max-width: 400px) {
  .summary-content a {
    width: 100%;
    margin: 0px auto;
    margin-top: 10px;
  }
  .summary-content .final-price {
    font-size: 1.4em;
  }
}
.add-to-card-alert {
  text-align: center;
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 1em;
  display: none;
  letter-spacing: 1px;
}

#card-icon-outer {
  background: #000000;
  margin-bottom: 20px;
  padding: 20px 40px;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#card-icon-outer h2 {
  color: #fcb66c;
  font-size: 1.2em;
}
#card-icon-outer a.shop-card-icon {
  color: #ffffff;
  position: relative;
  z-index: 100;
}
#card-icon-outer a.shop-card-icon:hover {
  color: #fcb66c;
}
#card-icon-outer a.shop-card-icon i {
  font-size: 1.6em;
  margin-right: 10px;
}
#card-icon-outer a.shop-card-icon span {
  font-weight: 700;
  font-size: 1.5em;
}

span.empty {
  background: #000000;
  text-align: center;
  display: block;
  font-size: 0.9em;
  padding: 20px 0px;
  font-weight: 700;
  border-radius: 30px;
  color: #fcb66c;
}

.article-details-img {
  margin-bottom: 30px;
}
.article-details-img img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

.article-details {
  border: solid 2px #cccccc;
  padding: 30px;
  border-radius: 30px;
}

#shop-functions {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 50px;
}

.shop-float h4 {
  font-size: 1.4em;
  color: #fcb66c;
  font-weight: 700;
  margin-top: 25px;
  background: #000000;
  padding: 20px;
  border-radius: 30px;
  text-align: center;
}
.shop-float span.shop-area-heading {
  background: #000000;
  padding: 4px 8px;
  font-size: 1em;
  letter-spacing: 2px;
  font-weight: 700;
  color: #fcb66c;
}
.shop-float p {
  font-size: 0.8em !important;
  text-transform: none;
  margin-top: 15px;
}
.shop-float form {
  margin: 20px 0px;
  position: relative;
}
.shop-float form input {
  background: #000000;
  border: none;
  padding: 17px 0px;
  margin-bottom: 20px;
  font-size: 0.9em;
  text-align: center;
  font-family: "Montserrat";
  border-radius: 30px;
}
.shop-float form input:focus {
  color: #ffffff;
}
.shop-float form input#submit {
  background: none;
  color: #12151b;
  width: 100%;
  font-size: 0.8em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 20px;
  cursor: pointer;
  border: 3px solid #fcb66c;
  transition: all 0.2s ease-in-out;
}
.shop-float form input#submit:hover {
  color: #fcb66c;
  background: #000000;
  border-color: #000000;
}
.shop-float form input.select-size-main {
  font-size: 0.8em;
}
.shop-float form input#menge, .shop-float form input.select-size-main {
  border-radius: 0px 0px 30px 30px;
  color: #ffffff;
}
.shop-float form input#menge:focus, .shop-float form input.select-size-main:focus {
  background: #000000;
  color: #ffffff;
}

div.reload-size {
  position: relative !important;
}

#size-control-unisex {
  display: grid;
  grid-template-columns: 1fr;
  background: #fcb66c;
  border-radius: 30px 30px 0px 0px;
  overflow: hidden;
}

#amount-control, #size-control {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fcb66c;
  border-radius: 30px 30px 0px 0px;
  overflow: hidden;
}

.menge-plus, .menge-minus {
  text-align: center;
  font-size: 1em;
  padding: 10px 0px;
  transition: all 0.2s ease-in-out;
}

a.boys-select, a.girls-select, a.unisex-select {
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9em;
  padding: 10px 0px;
  transition: all 0.2s ease-in-out;
}

a#sexover {
  background: #fcb66c;
}

.menge-minus:hover, .menge-plus:hover, .boys-select:hover, .girls-select:hover {
  cursor: pointer;
  background: #8f663b;
}

#size-outer #size-inner {
  position: relative;
}
#size-outer span {
  display: block;
  background: #000000;
  color: #ffffff;
  padding: 20px;
  text-align: center;
  font-size: 0.6em;
  letter-spacing: 2px;
  border-radius: 0px 0px 30px 30px;
}

.select-size {
  padding: 10px;
  color: #ffffff;
  font-size: 0.7em;
  text-align: center;
  transition: all 0.2s ease-in-out;
}
.select-size:hover {
  cursor: pointer;
  background: #8f663b;
}

.select-size-box {
  display: none;
  background: #000000;
  position: absolute;
  width: 100%;
  border-radius: 0px 0px 30px 30px;
  top: 0px;
  overflow: hidden;
}

a.big {
  display: block;
  text-align: center;
  padding: 20px;
  border-radius: 30px;
  background: #000000;
  font-size: 0.9em;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 30px;
}
a.big:hover {
  background: #fcb66c;
  color: #000000;
}

.product-foto {
  margin-bottom: 2%;
}

#checkout-container {
  text-align: center;
}

h2.checkout-alert {
  color: #000000;
  font-size: 1.1em;
  text-align: center;
  line-height: 180%;
}
h2.checkout-alert i {
  margin: 30px 0px;
  font-size: 3rem;
}

a.checkout-alert-btn:active, a.checkout-alert-btn:link, a.checkout-alert-btn:visited {
  background: #000000;
  color: #fcb66c;
  padding: 25px 30px;
  font-size: 0.8em;
  border-radius: 30px;
  display: inline-block;
  margin-top: 20px;
  border: solid 2px #000000;
}
a.checkout-alert-btn:active:hover, a.checkout-alert-btn:link:hover, a.checkout-alert-btn:visited:hover {
  color: #fcb66c;
  background: none;
}

@media only screen and (max-width: 950px) {
  a.boys-select, a.girls-select {
    font-size: 0.8em;
  }
  .select-size-box {
    right: 0px;
    left: 0px;
    top: 0px;
  }
  #shop-functions {
    grid-template-columns: 1fr;
  }
  #shop-functions span.shop-area-heading {
    font-size: 1em;
  }
  #shop-functions .shop-float-2 {
    order: 1;
  }
  #shop-functions h4 {
    font-size: 2.1em;
  }
  #shop-functions form {
    margin: 20px 0px 0px 0px;
  }
  #shop-functions form input {
    padding: 12px;
    margin-bottom: 15px;
    font-size: 1em;
  }
  #shop-functions form input#submit {
    font-size: 0.8em;
  }
  #card-icon-outer {
    padding: 20px 25px;
  }
  #card-icon-outer h2 {
    font-size: 0.9em;
    flex: 70%;
  }
  #card-icon-outer a.shop-card-icon {
    width: 90px;
    margin-left: 10px;
    flex: 0 1 100px;
    text-align: right;
  }
  #card-icon-outer a.shop-card-icon i {
    font-size: 0.9rem;
    margin-right: 3px;
  }
  #card-icon-outer a.shop-card-icon span {
    font-size: 0.9em;
  }
  a.big:link, a.big:active, a.big:visited {
    padding: 15px;
    font-size: 0.9em;
  }
}
@media only screen and (max-width: 1024px) {
  #shop-functions h4 {
    font-size: 1.4em;
  }
}
@media only screen and (max-width: 650px) {
  .menge-plus, .menge-minus {
    font-size: 0.9em;
    padding: 8px 0px;
  }
}
@media only screen and (max-width: 580px) {
  a.boys-select, a.girls-select {
    font-size: 0.7em;
  }
  #shop-functions form input {
    padding: 12px;
    margin-bottom: 10px;
    font-size: 0.9em;
  }
  #shop-functions form input#submit {
    font-size: 0.7em;
  }
  a.big:link, a.big:active, a.big:visited {
    font-size: 0.7em;
  }
}
.more-article-img {
  border-top: solid 1px #000000;
  border-bottom: solid 1px #000000;
  padding: 20px 0px;
  text-align: center;
  margin: 50px 0px;
  letter-spacing: 4px;
  font-size: 0.9em;
}

.article-added {
  background: #000000;
  color: #fcb66c;
  padding: 20px;
  font-weight: 900;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -10px !important;
}
.article-added i {
  margin-right: 10px;
  font-size: 1.3rem;
}

.stockerror {
  background: #fcb66c;
  color: #000000;
  padding: 20px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 20px;
}
.stockerror span {
  color: #ffffff !important;
}

.picture-set {
  border-radius: 10px;
  margin-bottom: 30px;
  text-align: center;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
}
.picture-set div {
  height: 200px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  background: #000000;
}
.picture-set div img {
  transition: all 0.2s ease-in-out;
}
.picture-set div img.pic {
  width: 100%;
  height: 100%;
  object-position: center center;
  object-fit: cover;
}
.picture-set div img.view {
  width: 40px;
  height: 40px;
  opacity: 0;
}
.picture-set div:hover {
  cursor: pointer;
}
.picture-set div:hover img.pic {
  opacity: 0.4;
}
.picture-set div:hover img.view {
  opacity: 1;
}

.picture-content-block {
  margin-bottom: 0px !important;
}

.article-overview {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 10px;
  padding: 0px;
}
.article-overview .article-item {
  border-bottom: none;
  margin-bottom: 0px;
  padding: 0px;
  border-radius: 30px;
  overflow: hidden;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  cursor: pointer;
  position: relative;
}
.article-overview .article-item:hover img {
  opacity: 0.8;
}
.article-overview .article-item:hover span {
  opacity: 0;
  transform: translateY(100px);
}
.article-overview .article-item:hover p, .article-overview .article-item:hover small {
  transform: translateY(-100px);
  opacity: 0;
}
.article-overview .article-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  opacity: 0.4;
  transition: all 0.2s ease-in-out;
}
.article-overview .article-item .article-title {
  text-align: center;
  position: relative;
  z-index: 4000;
}
.article-overview .article-item .article-title small {
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 6px;
  transition: all 0.2s ease-in-out;
  display: inline-block;
}
.article-overview .article-item .article-title p {
  font-size: 1.2em;
  padding: 0px 30px;
  transition: all 0.2s ease-in-out;
  color: #ffffff;
}
.article-overview .article-item .article-title span {
  display: inline-block;
  font-size: 1.6em;
  background: #fcb66c;
  font-weight: 900;
  position: relative;
  margin: 15px 0px 0px 0px;
  color: #000000;
  padding: 5px 30px;
  border-radius: 20px;
  transition: all 0.2s ease-in-out;
}

@media only screen and (max-width: 1400px) {
  .article-overview {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 1200px) {
  .article-overview .article-item .article-title p {
    font-size: 1.1em;
  }
  .picture-set div {
    height: 180px;
  }
  .picture-set div img.view {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 880px) {
  .stockerror {
    font-size: 0.7rem;
    padding: 20px 60px;
    line-height: 160%;
  }
  .article-overview {
    grid-template-columns: 1fr;
  }
  .article-overview .article-item {
    height: 240px;
  }
  .article-overview .article-item .article-title span {
    padding: 5px 10px;
    font-size: 1em;
  }
  .picture-set {
    grid-template-columns: 1fr 1fr;
  }
  .picture-set div {
    height: 170px;
  }
}
@media only screen and (max-width: 690px) {
  .article-overview {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .article-overview .article-item .article-title p {
    font-size: 1.3em;
  }
  .article-overview .article-item .article-title span {
    padding: 5px 15px;
    font-size: 1.1em;
  }
  .article-overview .article-item img {
    width: 120%;
  }
  .picture-set div {
    height: 130px;
  }
  div.single-picture {
    height: 170px;
  }
}
@media only screen and (max-width: 550px) {
  .article-overview {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .article-overview .article-item .article-title p {
    font-size: 1.1em;
    line-height: 120%;
    padding: 0px 10px;
  }
  .picture-set {
    grid-template-columns: 1fr;
  }
  .picture-set div {
    height: 170px;
  }
}
@media only screen and (max-width: 460px) {
  div.single-picture {
    height: 130px;
  }
}
@media only screen and (max-width: 430px) {
  .picture-set div {
    height: 140px;
  }
}
div#showroom {
  background: rgba(25, 21, 29, 0.95);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out 0.1s;
}
div#showroom.active {
  opacity: 1;
  pointer-events: all;
}

#showroom-next, #showroom-prev, #showroom-close, #showroom-download {
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}
#showroom-next i, #showroom-prev i, #showroom-close i, #showroom-download i {
  color: #ffffff;
  font-size: 1.2em;
}
#showroom-next:hover, #showroom-prev:hover, #showroom-close:hover, #showroom-download:hover {
  cursor: pointer;
  opacity: 0.6;
}

#showroom-next, #showroom-prev {
  top: 0;
  bottom: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  cursor: pointer;
}

#showroom-prev {
  left: 20px;
}

#showroom-next {
  right: 20px;
}

#showroom-inner {
  width: 1150px;
  height: 82%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
#showroom-inner img {
  opacity: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.4s ease-in-out;
}
#showroom-inner img.active {
  opacity: 1;
}

#showroom-index {
  color: #ffffff;
  font-size: 1em;
  letter-spacing: 2px;
  position: absolute;
  top: 40px;
  left: 40px;
}

#showroom-close {
  transition: all 0.3s ease-in-out;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 30px;
  right: 40px;
  background: #fcb66c;
  border-radius: 50%;
}

#showroom-download {
  transition: all 0.3s ease-in-out;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 30px;
  right: 80px;
}
#showroom-download i {
  font-size: 1.1em;
}

@media only screen and (max-width: 1350px) {
  #showroom-inner {
    width: 900px;
  }
}
@media only screen and (max-width: 1100px) {
  #showroom-inner {
    width: 820px;
  }
}
@media only screen and (max-width: 970px) {
  #showroom-inner {
    width: 700px;
  }
  #showroom-prev {
    left: 10px;
  }
  #showroom-next {
    right: 10px;
  }
  #showroom-next, #showroom-prev {
    width: 40px;
    height: 40px;
  }
  #showroom-index {
    font-size: 0.9em;
    top: 20px;
    left: 25px;
  }
  #showroom-close {
    top: 15px;
    right: 18px;
  }
}
@media only screen and (max-width: 740px) {
  #showroom-inner {
    width: 100%;
  }
  #showroom-prev {
    left: 0px;
  }
  #showroom-next {
    right: 0px;
  }
}
.loading {
  background: rgba(20, 27, 34, 0);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 9000;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  transition: all 0.3s ease-in-out 1s;
}
.loading .loading-ring {
  display: block;
  position: absolute;
  transform: translateY(50px);
  transition: all 0.3s ease-out 0.3s;
  opacity: 0;
  pointer-events: none;
}
.loading .loading-ring:after {
  content: " ";
  display: block;
  width: 55px;
  height: 55px;
  margin: 8px;
  border-radius: 50%;
  border: 4px solid #fcb66c;
  border-color: #fcb66c transparent #fcb66c transparent;
  animation: LOADER 1.2s linear infinite;
}
.loading.active {
  background: rgba(20, 27, 34, 0.95);
  transition: all 0.3s ease-in-out;
}
.loading.active .loading-ring {
  opacity: 1;
  transform: translateY(0px);
}

.modal {
  background: rgba(17, 17, 22, 0.9647058824);
  opacity: 0;
  pointer-events: none;
  height: 100%;
  width: 100%;
  z-index: 9999;
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out 0.2s;
}
.modal.active {
  opacity: 1;
  pointer-events: all;
}
.modal button {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 20px;
  border: solid 1px #000000;
  padding: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 20px;
  background: none;
  cursor: pointer;
  transition: all 0.1s ease;
}
.modal button:hover {
  background: #000000;
  color: #fcb66c;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.modal-header i {
  font-size: 1.4rem;
  cursor: pointer;
}

.modal-body a {
  font-weight: 600;
  color: #ffffff;
}
.modal-body p {
  font-size: 0.9rem;
  line-height: 160%;
}
.modal-body span {
  font-weight: 700;
}

.modal-container {
  width: 40%;
  background: #fcb66c;
  padding: 40px;
  border-radius: 30px;
}

@media only screen and (max-width: 1600px) {
  .modal-container {
    width: 60%;
  }
}
@media only screen and (max-width: 920px) {
  .modal-container {
    width: 80%;
  }
}
@media only screen and (max-width: 540px) {
  .modal-container {
    width: 90%;
    padding: 25px;
  }
  .modal-container h2 {
    font-size: 1.2rem;
  }
  .modal-body span {
    font-size: 0.9rem;
  }
}
.btn-phoenix {
  display: inline-flex;
  border: solid 1px #ffffff;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 100vmax;
  font-size: 1.1rem !important;
  text-transform: none;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.3294117647);
}
.btn-phoenix:hover {
  background: #ffffff;
  color: #12151b;
}

.phoenix-content h2 {
  position: relative;
  z-index: 200;
  color: #fcb66c;
  text-transform: none;
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.phoenix-info, .phoenix-tickets {
  position: relative;
}
.phoenix-info img.phoenix-content-bg, .phoenix-tickets img.phoenix-content-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.phoenix-info figure, .phoenix-tickets figure {
  position: relative;
  z-index: 1;
}
.phoenix-info img.phoenix-content-moon, .phoenix-tickets img.phoenix-content-moon {
  margin: auto;
  width: 100%;
  display: block;
}

.phoenix-info.content {
  padding-bottom: 0px;
}
.phoenix-info article {
  position: relative;
  z-index: 200;
}
.phoenix-info article p {
  color: #ffffff;
  text-transform: none;
}
.phoenix-info article a {
  margin-top: 40px;
}

.phoenix-tickets-grid {
  display: grid;
  position: relative;
  z-index: 200;
  grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
  gap: 40px;
  row-gap: 100px;
  margin-top: 130px;
}
.phoenix-tickets-grid .item-container {
  box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.4117647059);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
}
.phoenix-tickets-grid .item-header {
  background: #fcb66c;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 30px 30px 0px 0px;
  padding: 70px 20px 20px 20px;
  position: relative;
}
.phoenix-tickets-grid .item-header h4 {
  font-size: 2.3rem;
  font-weight: 600;
  letter-spacing: 10px;
}
.phoenix-tickets-grid .item-header img {
  height: 150px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -80px;
}
.phoenix-tickets-grid .item-content {
  border-left: solid 1px #fcb66c;
  border-right: solid 1px #fcb66c;
  border-bottom: solid 1px #fcb66c;
  border-radius: 0px 0px 30px 30px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  height: 100%;
  background: rgba(0, 0, 0, 0.3098039216);
}
.phoenix-tickets-grid .item-content .btn-phoenix {
  margin-top: auto !important;
}
.phoenix-tickets-grid .item-content span {
  color: #fcb66c;
  font-size: 4rem;
  display: inline-flex;
  line-height: 100%;
}
.phoenix-tickets-grid .item-content p {
  margin-bottom: 20px;
  color: #ffffff;
  text-transform: none;
  font-size: 0.9rem;
  text-align: center;
}
.phoenix-tickets-grid .item-content p strong {
  font-size: 1.5rem !important;
  font-weight: 600;
}

@media only screen and (max-width: 1440px) {
  .phoenix-tickets-grid {
    column-gap: 30px;
  }
  .phoenix-tickets-grid .item-header h4 {
    font-size: 1.8rem;
    letter-spacing: 5px;
  }
}
@media only screen and (max-width: 1280px) {
  .phoenix-tickets-grid {
    margin-top: 110px;
  }
  .phoenix-tickets-grid .item-header {
    padding: 65px 20px 20px 20px;
  }
  .phoenix-tickets-grid .item-header img {
    height: 120px;
    top: -65px;
  }
}
@media only screen and (max-width: 980px) {
  .btn-phoenix {
    font-size: 0.9rem !important;
  }
  .phoenix-content h2 {
    font-size: 2.2rem;
  }
  .phoenix-info article p {
    font-size: 1rem;
    line-height: 170%;
  }
}
@media only screen and (max-width: 590px) {
  .phoenix-tickets-grid .item-header {
    padding-top: 40px;
  }
  .phoenix-tickets-grid .item-header h4 {
    font-size: 1.6rem;
    letter-spacing: 5px;
  }
  .phoenix-tickets-grid .item-header img {
    height: 100px;
    top: -60px;
  }
  .phoenix-tickets-grid .item-content {
    padding-inline: 30px;
  }
  .phoenix-tickets-grid .item-content span {
    font-size: 3rem;
  }
}

/*# sourceMappingURL=style.css.map */
