html {
  height: 100%;
  background-color: rgb(182, 106, 55);
}

body {
  color: white;
  font-family: 'Silkscreen', monospace;
  min-width: fit-content;
  margin: 0;
  padding: 0;
  height: fit-content;
}

#fixedbg {
  position: fixed;

  overflow: visible;

  bottom: 0%;
  height: 100vh;
  left: 0;
  right: 0;

  margin: 0;
  padding: 0;

  z-index: -150;

  background-image: url(images/Backgrounds/7.jpg);
  background-size: auto 100%;
  background-repeat: repeat;
  background-position: center;
  background-size: cover;
}

#noise {
  position: fixed;
  left: -20px;
  right: -20px;
  top: -20px;
  bottom: -20px;

  z-index: -50;

  background-image: url(images/Backgrounds/noise.png);
  background-size: 1024px;

  animation: noiseanimation 0.1s linear infinite;
  background-blend-mode: screen;
  opacity: 0.2;
}

@keyframes noiseanimation {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 256px 256px;
  }
}

#footer
{
  background-color: rgba(0, 0, 0, 0.473);
  padding: 5px;
  position: fixed;
  text-align: center;

  -webkit-transform: rotate(270deg);  
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg); 

  bottom: 50%;
  right: -45px;
  width: 110px;
  height: 20px;

  z-index: 500;
}

#logo {
  z-index: -100;
  background-image: url(images/Logo_Vector_siplified.svg);
  background-repeat:  no-repeat;
  background-size: contain;
  background-position: center;
  margin-inline: auto;
  top: 0;
  width: 100%;
  height: 300px;
}

#hypnowheel
{
  position: sticky;
  background-image: url(images/HypnoWheel.png);
  background-size: 30vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;

  left: calc(50% - 16vh);
  bottom: calc(50vh - 18vh);


  width: 30vh;
  height: 30vh;
  z-index: -100;
  opacity: 0.8;
  animation: hypnowheel 1s linear infinite;
}

@keyframes hypnowheel{
  0%{
    rotate: 0deg;
  }

  100%{
    rotate: 360deg;
  }
}

/*#merchbutton{
    background-image: url(images/buy.png);
    image-rendering: pixelated;
    background-size: contain;
    background-repeat: repeat;
    background-position: center;
    z-index: 10;
}*/

ul.horizontal {
  display: flex;
  flex-grow: 1;
  flex-shrink: 1;
  flex-wrap: wrap;
  justify-content: space-evenly;
  list-style-type: none;
  font-size: xx-large;
  padding: 0;
  margin: 60px 20px 0 20px;
  border-style: solid;
  border-width: 4px;

}

ul.horizontal>li {
  background-color: rgb(255, 188, 87);
  display: flex;
  margin: 0;
  padding: 0;
  flex-basis: 100px;
  flex-grow: 1;
  flex-shrink: 1;
  border-style: solid;
  border-width: 1px;
}

ul.horizontal>li a {
  color: rgb(38, 38, 255);
  padding: 5px 5px;
  text-align: center;
  text-decoration: none;
  overflow: visible;
  flex-grow: 1;
}

ul.horizontal>li:hover {
  background-color: rgb(187, 139, 66);
}

ul.horizontal>li:active {
  background-color: rgba(0, 0, 255, 0.616);
  ;
}

ul.horizontal>li[onsite] {
  background-color: rgba(0, 0, 255, 1);
}

ul.horizontal>li[onsite]>a {
  cursor: default;
  color: white;
}

.flex-container {
  display: flex;
  flex-grow: 1;
  flex-shrink: 1;
  justify-content: center;
  margin-bottom: 20px;
  max-width: 1200px;
  margin-inline: auto;
}

.ContentArea
{
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}


#decorations{
  z-index: -50;
  color: rgb(0, 41, 224);
  pointer-events: none;
  position: fixed;
  height: 100%;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin-inline: auto;
  opacity: 0.8;
}

.deco {
  position: absolute;
  margin: 5px 5px;
  padding: 0;
  border: solid 4px rgb(0, 41, 224, 0.5);
  
  font-size: 40px;
  z-index: 150;
  
  text-shadow: rgba(0, 0, 0, 0.66) 2px 2px;
}
#date {
  right: 0;
  top: 0;
}

#cam {
  left: 0;
  top: 0;

  animation-name: blink;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 2s;
  animation-delay: 0;
}

#rec {
  left: 0;
  bottom: 0;
  
  animation-name: blink;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 2s;
  animation-delay: 0.5;
}

@keyframes blink{
  0%{
    color: rgba(0, 41, 224, 0.5);
    text-shadow: rgba(0, 0, 0, 0.33) 1px 2px;
  }
  2%{
    color: rgba(0, 41, 224, 1);
    text-shadow: rgba(0, 0, 0, 0.66) 1px 2px;
  }
  48%{
    color: rgba(0, 41, 224, 1);
    text-shadow: rgba(0, 0, 0, 0.66) 1px 2px;

  }
  52%{
    color: rgba(0, 41, 224, 0);
    text-shadow: rgba(0, 0, 0, 0) 1px 2px;
  }
  98%{
    color: rgba(0, 41, 224, 0);
    text-shadow: rgba(0, 0, 0, 0) 1px 2px;
  }
  100%{
    color: rgba(0, 41, 224, 0.5);
    text-shadow: rgba(0, 0, 0, 0.33) 1px 2px;
  }
}

span {
  text-align: center;
  font-size: xx-large;
  display: flex;
  justify-content: center;
}

h1 {
  background-color: rgb(0, 0, 255);
  padding: 10px;
  font-size: 35px;
  color: white;
}

h2 {
  background-color: rgb(0, 0, 255);
  padding: 8px;
  color: white ;
}

h3 {
  padding: 8px;
  color: white;
  margin-inline: 40px;
}

p {
  background-color: unset;
}

.photo {
  position: relative;
  width: 100%;
  max-width: 800px;
}

.photo.rotated {
  margin-top: -5%;
  margin-bottom: 6%;
  margin-right: 12%;
  position: relative;
  rotate: -15deg;
  width: 80%;
  filter: drop-shadow(0 10px 8px rgba(32, 31, 8, 0.7));
  transform-origin: 90% 5%;
  animation: sway 2s ease-in-out alternate infinite;

}
@keyframes sway{
  0%{
    rotate: -15deg;
  }
  100%{
    rotate: -10deg;
  }
}
/* The actual timeline (the vertical ruler) */
.timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 600px;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: rgb(0, 0, 255);
  ;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

/* Container around content */
.container {
  padding: 10px 40px;
  position: relative;
}

/* The circles on the timeline */
.container::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: rgb(255, 255, 255);
  border: 4px solid rgb(0, 0, 255);
  ;
  border-radius: 50%;
  top: 15px;
  z-index: 1;
}

/* Place the container to the left */
.left {
  left: -50%;
}

/* Place the container to the right */
.right {
  left: 50%;
}

/* Add arrows to the left container (pointing right) */
.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid rgb(0, 0, 0);
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent rgb(0, 0, 0);
}

/* Add arrows to the right container (pointing left) */
.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid rgb(0, 0, 0);
  border-width: 10px 10px 10px 0;
  border-color: transparent rgb(0, 0, 0) transparent transparent;
}

/* Fix the circle for containers on the right side */
.right::after {
  left: -16px;
}

/* The actual content */
.content {
  padding: 20px 30px;
  position: relative;
  border: solid 4px;
  background-color: rgba(255, 188, 87, 0.8);
  color: rgb(0, 0, 0);
}
.content > p{
  background-color: transparent !important;
}
/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 1000px) {


  /* Place the timelime to the left */
  .timeline::after {
    left: 23px;
  }

  /* Full-width containers */
  .container {
    max-width: 800px;
    padding-left: 50px;
    padding-right: 10px;
  }

  /* Make sure that all arrows are pointing leftwards */
  .container::before {
    left: 40px;
    border: medium solid rgb(0, 0, 0);
    border-width: 10px 10px 10px 0;
    border-color: transparent rgb(0, 0, 0) transparent transparent;
  }

  /* Make sure all circles are at the same spot */
  .left::after,
  .right::after {
    left: 10px;
    width: 20px;
    height: 20px;
  }

  .left {
    left: 0;
  }

  /* Make all right containers behave like the left ones */
  .right {
    left: 0;
  }
}


/*TourTABLE*/
table {
  display:flex;
  margin: 5px;
  background-color: rgba(0, 0, 0, 0.63);
}

tbody {
  display: flex;
  justify-content: stretch;
  height: fit-content;
  width: 100%;
  flex-wrap: wrap;
}

tr:first-child{
  border-bottom: none;
}

tr {
  flex-grow: 1;
  display: flex;
  width: 100%;
  padding: 0;
  border-bottom: solid 2px;
}

td {
  font-size: x-large;
  min-width: min-content;
  width: 100%;
  padding-right: 20px;
  flex-basis: 100%;
  flex-grow: 1;
}

@media screen and (max-width: 1000px) {
  td {
    font-size: small;
  }
}

tr.head>td {
  border-right: solid;
  border-bottom: solid;
  border-width: 4px;
  padding: 0;
}


/*.date-cell{
  flex-basis: 260px;
}
.location-cell{
  width: 10px;
}
.venue-cell{
  flex-basis: 250px;
}
.ticket-cell{
  flex-basis: 100px;
}*/

iframe {
  border-style: none;
}

#SidePanel {
  width: 70px;
  height: 160px;
  bottom: 0;
  right: 0;

  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;

  z-index: 50;
}

#spotify {
  height: 64px;
  width: 64px;
  background-image: url("images/spotify.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  image-rendering: pixelated;
}

#youtube {
  height: 64px;
  width: 64px;
  background-image: url("images/youtube.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  image-rendering: pixelated;
}

.customPageBackground {
  background-color: rgba(255, 188, 87, 0.8) !important;
}

#sprd-startpage-cyo-intro
{
  display: none;
}

#sprd-startpage-teaser{
  display: none;
}

#sprd-startpage-designs-with-products{
  display: none;
}

button > span{
  font-size: unset;
}

.ContentArea > p{
  
  background-color: rgba(0, 0, 255, 0.5);
  margin-inline: 40px;
}

#sprd-department-filter-designer
{
  display: none;
}

#sprd-startpage-trust-elements{
  display: none;
}

.sprd-detail-images__view--edit{
  display: none !important;
}
.sprd-design-edit-tile{
  display: none !important;
}