:root {
  --primary-color: #1b2e6a;
  --secondary-color: #e20613;
  --tersier-color: #fdc400;
}

@font-face {
  font-family: 'Gotham-Light'; /* Choose a descriptive name for your font */
  src: url('../fonts/Gotham-Light.otf') format('opentype'); /* Specify the path and format */
  /*font-weight: normal;*/
  /*font-style: normal;*/
}

@font-face {
  font-family: 'Gotham-Medium'; /* Choose a descriptive name for your font */
  src: url('../fonts/Gotham-Medium.otf') format('opentype'); /* Specify the path and format */
  /*font-weight: normal;*/
  /*font-style: normal;*/
}

@font-face {
  font-family: 'Gotham-Bold'; /* Choose a descriptive name for your font */
  src: url('../fonts/Gotham-Bold.otf') format('opentype'); /* Specify the path and format */
  /*font-weight: normal;*/
  /*font-style: normal;*/
}

@keyframes spin {
  0% {
    transform: rotate(0deg); /* Starts at 0 degrees */
  }
  100% {
    transform: rotate(360deg); /* Rotates to a full 360 degrees */
  }
}

@keyframes spin-back {
  0% {
    transform: rotate(360deg); /* Starts at 0 degrees */
  }
  100% {
    transform: rotate(0deg); /* Rotates to a full 360 degrees */
  }
}

@keyframes bounce {
    70% { transform:translateY(0%); }
    80% { transform:translateY(-15%); }
    90% { transform:translateY(0%); }
    95% { transform:translateY(-7%); }
    97% { transform:translateY(0%); }
    99% { transform:translateY(-3%); }
    100% { transform:translateY(0); }
}

@keyframes bounce2 {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-30px);}
  60% {transform: translateY(-15px);}
}

.bounce {
  animation: bounce 2s ease infinite;
}

.bounce2 {
  animation: bounce2 2s ease infinite;
}

.spin{
  animation: spin 3s linear infinite
}

.spin-back{
  animation: spin-back 3s linear infinite
}

.spin-slow{
  animation: spin 6s linear infinite
}

.spin-back-slow{
  animation: spin-back 6s linear infinite
}

.spin-slower{
  animation: spin 12s linear infinite
}

.spin-back-slower{
  animation: spin-back 12s linear infinite
}

.font-bold{
  font-family: "Gotham-Bold";
}

.font-medium{
  font-family: "Gotham-Medium";
}

.font-light{
  font-family: "Gotham-Light";
}

.rotate-90{
  rotate: 90deg;
}

.rotate-270{
  rotate: 270deg;
}
body{
  /*background: #010101;*/
  font-family: 'Gotham-Bold', sans-serif;
}
h1{

}

table{
  width: 100%;
  border-collapse: collapse;
  font-family: "Gotham-Medium";
}

.static-header{
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  padding-top: 39px;
}

.static-header img:first-child{
  padding-left: 100px;
}

.static-header img:last-child{
  padding-right: 100px;
}

.icon-active{
  display: none;
}

.radial-menu-wrapper {
  position: fixed;
  bottom: 185px;
  left: 0;
  width: 140px;
  height: 140px;
  z-index: 1000;
  transition: left 0.3s ease;
}

.radial-menu-wrapper.active {
  left: 0px; /* geser kanan saat aktif */
}

.menu-toggle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 2;
  left: -75px; /* setengah tersembunyi */
  transition: left 0.3s ease;
  background-image: url("/assets/img/icon-menu-full.png");
  background-position: center;
  background-size: 100%;
}

.radial-menu-wrapper.active .menu-toggle {
  left: 0; /* penuh terlihat saat aktif */
  background-image: url("/assets/img/icon-home.png");
  background-position: center;
  background-size: 100%;
}

.menu-item {
  width: 60px;
  height: 60px;
  background: transparent;
  border-radius: 50%;
  position: absolute;
  top: 37px;
  left: 37px;
  transform: rotate(calc((25deg * var(--i)) - 100deg)) translate(160px) rotate(calc((-25deg * var(--i)) + 100deg));
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  cursor: pointer;
}

.menu-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.radial-menu-wrapper.active .menu-item {
  opacity: 1;
  pointer-events: auto;
}

.menu-item.active img.icon{
  display: none;
}

.menu-item.active img.icon-active{
  display: block;
}

.swiper-pagination-bullet{
  width: 16px !important;
  height: 16px !important;
}

.table-transparent{
  background: transparent;
}
