body,
html {
  margin: 0px;
  padding: 0px;
  background-color: black!important;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */

}

prevent-select{
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
.desktop {
  display: unset;
}

.mobile {
  display: none;
}

@media screen and (orientation: portrait) {
  .desktop {
    display: none;
  }

  .mobile {
    display: unset;
  }
}


.layer {
  position: fixed;
  z-index: 0;
  top: 0vh;
  left: 0px;
  width: 105vw;
  height: 104vh;
}

.layer-slot {
  position: absolute;
  inset: 0%;
  background-size: cover;
  background-origin: border-box;
  background-repeat: no-repeat;
  background-position: calc(var(--sides) * 100%) 50%;
}




.zoom>* {
  transform-origin: center;
  transform: scale(1);
  transition: transform 1s ease-in-out;
}

.zoom.start>* {
  transform: scale(1.5);
}




.light {
  --duration: 4s;
  animation: hideAndAppear var(--duration) infinite;
  z-index: 888;
  pointer-events: none;
}

.light-static {
  z-index: 888;
  pointer-events: none;
}

@keyframes hideAndAppear {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 0;
  }
}


.loading-overlay {
  background-color: rgba(0, 0, 0, 0.632);
  position: fixed;
  inset: 0px;
  opacity: 1;
  z-index: 1111111111;
  pointer-events: none;
  /* transition: opacity 700ms ease-in-out; */
}

.loading-overlay.hide {
  opacity: 0;
}
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.99);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.loading-overlay.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.spinner {
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-left-color: #ffffff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}



.layer-slot2 {
  --gif: url('/images/layer2.gif');
  --png: url('/images/layer2.png');
  --duration: 2.8s;
  position: absolute;
  inset: 0%;
  background-image: var(--gif);
  background-size: cover;
  background-origin: border-box;
  background-repeat: no-repeat;
  background-position: calc(var(--sides) * 100%) 50%;


  animation-name: ddd;
  animation-duration: calc(var(--duration) * 4);
  animation-iteration-count: infinite;
  animation-timing-function: steps(1);
}



@keyframes ddd {
  0% {
    background-image: var(--gif);
  }

  26% {
    background-image: var(--png);
  }
}




.th-txt {
  position: relative;
  z-index: 1;
  color: white;
  font-size: larger;
  padding: 10px 20px 10px 50px;
  width: 160px;
  margin-left: -10px;
  background-color: rgba(0, 0, 0, 0.7);
  pointer-events: none;
  clip-path: inset(0 100% 0 0);
  transition: all 300ms ease-in-out;
}

.th:hover>.th-txt {
  clip-path: inset(0 0 0 0);
}

.rad {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: 130px;
  height: 130px;
  border: none;
  background-color: transparent;
  pointer-events: initial;
  isolation: isolate;
  color: transparent;
  font-size: 1.5em;
  font-weight: 500;
  transition: color 300ms ease-in-out;
}

.rad::after,
.rad::before {
  content: " ";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -4;
}

.rad::after {
  width: 10px;
  height: 10px;
  background-color: white;
  animation: CircleOp 1.5s linear 0s infinite;
}

.rad::before {
  width: 70%;
  height: 70%;
  background-color: transparent;
  transform: translate(-50%, -50%);
  border: 2px solid white;
  border-radius: 50%;
  z-index: -5;

  animation: circleA 0.8s linear 0s infinite;
}

.rad:hover::before {
  animation: circleB 1s linear 0s infinite;
}

@keyframes CircleOp {

  0% {
    opacity: 0.90;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 0.90;
  }

}

@keyframes circleA {
  0% {
    width: 25%;
    height: 25%;
    opacity: 0.75;
  }

  50% {
    opacity: 0.2;
  }

  70% {
    width: 70%;
    height: 70%;
    opacity: 0;
  }

  100% {
    width: 70%;
    height: 70%;
    opacity: 0;
  }

}

@keyframes circleB {
  0% {
    width: 25%;
    height: 25%;
    opacity: 0.74;
  }

  100% {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
}
/* 
.rad>span {
  position: absolute;
  bottom: 0px;
  left: 50%;
  font-size: 1em;
  transform: translateX(-50%);
  text-transform: uppercase;
  font-weight: 600;
  /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
  font-family: monospace;
  color: white; 
  animation: CircleOp 1.5s linear 0s infinite;
} */


/* .ins {

  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.th {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.ind {
  position: relative;
  z-index: 2;
  color: black;
  background-color: rgba(255, 255, 255, 1);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: start;
  align-items: center;
  margin-block: 0px;
  clip-path: polygon(0 0, 10% 0, 65% 0, 65% 45%, 65% 100%, 10% 100%, 0 100%);
  transition-property: clip-path, width, padding, margin, transform;
  transition-duration: 500ms;
  transition-timing-function: ease-out;
}

.ind>svg {
  margin-left: 4px;
  width: 25px;
  height: 25px;
}

.th:hover>.ind {
  width: 40px;
  transform: translateX(25px) scale(1.35);
  clip-path: polygon(0% 20%, 30% 20%, 30% 0, 100% 50%, 30% 100%, 30% 80%, 0% 80%);
}

@media only screen and (max-width: 600px) {
  .th>.ind {
    width: 40px;
    clip-path: polygon(0% 20%, 30% 20%, 30% 0, 100% 50%, 30% 100%, 30% 80%, 0% 80%);
  }

  .th>.th-txt {
    clip-path: inset(0 0 0 0);
  }
} */

