.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

body{
  font-family: "Poppins";
  font-weight: 400;
  font-style: normal;
  min-height:100vh;
}

/* body, main, main > section {
	background-color: #212529;
} */

:root{
  --main-color-1: #220243;
  --main-color-2: #5c05b5;
  --main-color-3: #6606c8;
  --main-color-4: #7907ee;
}

.custom-tooltip {
  --bs-tooltip-bg: var(--main-color-2);
  --bs-tooltip-color:white;
  --bs-tooltip-opacity: 1;
}

.stroked-text {
  color: white; /* set the text color */
  text-shadow:
    -1px -1px 0 black, /* top-left */
    1px -1px 0 black, /* top-right */
    -1px 1px 0 black, /* bottom-left */
    1px 1px 0 black; /* bottom-right */
}

.headerGradient{
  background: var(--main-color-1);
  background: linear-gradient(45deg, var(--main-color-1) 0%, var(--main-color-2) 100%);
  font-family: 'Panton', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  border-radius: .5rem!important;
  /*transform: scale3d(1.1, 1.1, 1);*/
transform-origin: bottom;
}

.opLink{
  border:1px solid var(--main-color-1);
  border-radius:10px;
  background:white;
  transition: .5s;
  display: inline-block;
  width:100%;
  height: 100%;
  color: white;
  transition: .5s;
  text-decoration: none;
}
.opLink.opOff{
  border:1px solid #666;
  color: #666;
  pointer-events: none;
}
.opLink.opSoon{
  border:1px solid #ffc107;
  color: #ffc107;
}
.opLink:hover{
  color: white;
  border-radius:0px;
  background: var(--main-color-1);
  background: linear-gradient(45deg, var(--main-color-1) 0%, var(--main-color-2) 100%);
  border:1px solid white;
}
.opLink.opOff:hover{
  background: #666;
  background: linear-gradient(45deg, #666 0%, #999 100%);
}
.opLink.opSoon:hover{
  background: #ffc107;
  background: linear-gradient(45deg, #ffc107 0%, #ff8f05 100%);
}
/* HEADER */

.headerLogo, .footerLogo {
  filter: hue-rotate(0deg); /* Set the initial hue to 0deg */
  animation: hueLoop 15s infinite; /* Loop the animation infinitely every 5 seconds */
}
  
@keyframes hueLoop {
  100% {
    filter: hue-rotate(360deg); /* Rotate the hue to 360deg at the end of the animation */
  }
}

nav a:not(.navbar-brand):hover {
    background: rgba(0,0,0,.5);
}


/* FOOTER */

.footermain{
  border-top:2px solid #1d1d1d;
}
.copyright, nav.bg-dark{
  background:#1d1d1d!important;
}