/* _content/HotShot/Components/Home/Home_aboutComponents.razor.rz.scp.css */
:root[b-pj97zu8hlw] {
  --primaryColor: #ed1c24;
  --blackColor: #131718;
  --yellowColor: #fde047;
  --redColor: #ca4654;
  --greenColor: #5da253;
  --blueColor: #52cdfe;
  --mauveColor: #f992d4;
  --radius: 8px;
  --duration: 0.3s ease-in-out;
  --headerHeight: 80px;
  --maxWidth: 1300px;
}
.about[b-pj97zu8hlw] {
  background: var(--redColor);
}
.about article[b-pj97zu8hlw] {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}
.about article h2[b-pj97zu8hlw] {
  color: #fff;
}
.about-description[b-pj97zu8hlw] {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 0.5rem;
  background: rgba(237, 28, 36, 0.3);
  border: rgba(237, 28, 36, 0.1);
  padding: 20px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  max-width: 800px;
}
.about-description p[b-pj97zu8hlw] {
  font-size: 0.8rem;
  line-height: 1.5rem;
  color: #fff;
}
.about-description span[b-pj97zu8hlw] {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 2rem;
  color: #fff;
}
.about-description span span[b-pj97zu8hlw] {
  color: var(--yellowColor);
  font-weight: bold;
}
@media only screen and (min-width: 800px) {
  .about-description[b-pj97zu8hlw] {
    backdrop-filter: blur(20px);
  }
  .about-description[b-pj97zu8hlw]:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(237, 28, 36, 0.1), transparent);
    animation: shine 3s ease-in-out infinite alternate;
  }
}
/* _content/HotShot/Components/Home/Home_ContactComponents.razor.rz.scp.css */
:root[b-zold1bh6nh] {
  --primaryColor: #ed1c24;
  --blackColor: #131718;
  --yellowColor: #fde047;
  --redColor: #ca4654;
  --greenColor: #5da253;
  --blueColor: #52cdfe;
  --mauveColor: #f992d4;
  --radius: 8px;
  --duration: 0.3s ease-in-out;
  --headerHeight: 80px;
  --maxWidth: 1300px;
}
.contact[b-zold1bh6nh] {
  position: relative;
}
.contact article[b-zold1bh6nh] {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  overflow: visible;
}
.contact-left[b-zold1bh6nh] {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.contact-left h2[b-zold1bh6nh] {
  color: vAR(--blackColor);
}
.contact-left .media[b-zold1bh6nh] {
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.contact-left .media-link[b-zold1bh6nh] {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: end;
  gap: 10px;
  padding: 20px;
  border-bottom: 1px solid #00000026;
}
.contact-left .media-link:last-child[b-zold1bh6nh] {
  border-bottom: none;
}
.contact-left .media-link[b-zold1bh6nh]  svg {
  width: 100%;
}
.contact-left .media-link[b-zold1bh6nh]  svg .--svg-fill {
  fill: var(--blackColor);
  transition: all var(--duration);
}
.contact-left .media-link span[b-zold1bh6nh] {
  font-size: 1rem;
  color: var(--blackColor);
  transition: all var(--duration);
}
.contact-left .media-link:hover[b-zold1bh6nh]  svg .--svg-fill {
  fill: var(--redColor);
}
.contact-left .media-link:hover span[b-zold1bh6nh] {
  color: var(--redColor);
}
.contact-right[b-zold1bh6nh] {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 30px;
}
.contact-right .media[b-zold1bh6nh] {
  width: 120px;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
}
.contact-right .media img[b-zold1bh6nh] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact .bg[b-zold1bh6nh] {
  position: absolute;
  z-index: -1;
  width: 100px;
  top: -50%;
  transform: rotate(10deg);
}
.contact .bg img[b-zold1bh6nh] {
  width: 100%;
  object-fit: contain;
}
.contact .bg:nth-child(2)[b-zold1bh6nh] {
  left: 10%;
}
.contact .bg:nth-child(3)[b-zold1bh6nh] {
  left: 25%;
}
.contact .bg:nth-child(4)[b-zold1bh6nh] {
  left: 50%;
}
.contact .bg:nth-child(5)[b-zold1bh6nh] {
  left: 65%;
}
.contact .bg:nth-child(6)[b-zold1bh6nh] {
  left: 0;
}
.contact .bg:nth-child(7)[b-zold1bh6nh] {
  left: 70%;
}
@media only screen and (min-width: 800px) {
  .contact article[b-zold1bh6nh] {
    grid-template-columns: 1fr 1fr;
  }
  .contact .bg[b-zold1bh6nh] {
    position: absolute;
    z-index: -1;
    width: 150px;
    top: -50%;
    transform: rotate(10deg);
  }
  .contact .bg img[b-zold1bh6nh] {
    width: 100%;
    object-fit: contain;
  }
  .contact .bg:nth-child(2)[b-zold1bh6nh] {
    left: 40%;
  }
  .contact .bg:nth-child(3)[b-zold1bh6nh] {
    left: 50%;
  }
  .contact .bg:nth-child(4)[b-zold1bh6nh] {
    left: 60%;
  }
  .contact .bg:nth-child(5)[b-zold1bh6nh] {
    left: 70%;
  }
  .contact .bg:nth-child(6)[b-zold1bh6nh] {
    left: 80%;
  }
  .contact .bg:nth-child(7)[b-zold1bh6nh] {
    left: 90%;
  }
}
@media only screen and (min-width: 1100px) {
  .contact article[b-zold1bh6nh] {
    grid-template-columns: 1fr 1.5fr;
  }
  .contact-right .media[b-zold1bh6nh] {
    width: 200px;
  }
}
/* _content/HotShot/Components/Home/Home_heroComponents.razor.rz.scp.css */
:root[b-496pre4wbz] {
  --primaryColor: #ed1c24;
  --blackColor: #131718;
  --yellowColor: #fde047;
  --redColor: #ca4654;
  --greenColor: #5da253;
  --blueColor: #52cdfe;
  --mauveColor: #f992d4;
  --radius: 8px;
  --duration: 0.3s ease-in-out;
  --headerHeight: 80px;
  --maxWidth: 1300px;
}
.hero[b-496pre4wbz] {
  width: 100%;
  position: relative;
}
.hero article[b-496pre4wbz] {
  padding-top: calc(var(--headerHeight) + 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100vh;
  position: relative;
  overflow: visible;
}
.hero article > img[b-496pre4wbz] {
  position: absolute;
  max-width: 100px;
  width: 100%;
  top: 50%;
}
.hero article > img._left[b-496pre4wbz] {
  left: -100px;
  transform: rotate(30deg) translateY(-50%);
  filter: blur(8px) drop-shadow(31px 45px 30px rgba(0, 0, 0, 0.1));
  z-index: 5;
  opacity: 0.7;
}
.hero article > img._right[b-496pre4wbz] {
  right: -85px;
  transform: rotate(-20deg) translateY(-70%) scale(1);
  filter: drop-shadow(-20px 4px 12px rgba(0, 0, 0, 0.2));
  z-index: 20;
}
.hero-info[b-496pre4wbz] {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.hero-info h1[b-496pre4wbz],
.hero-info span[b-496pre4wbz] {
  color: var(--blackColor);
  text-align: center;
  user-select: none;
}
.hero-info span[b-496pre4wbz] {
  font-size: 1.2rem;
  text-wrap-style: balance;
}
.hero-info h1[b-496pre4wbz] {
  display: flex;
  flex-direction: column;
}
.hero-info h1 span[b-496pre4wbz] {
  font-size: inherit;
  color: var(--primaryColor);
  font-weight: 900;
}
.hero-info .buttons[b-496pre4wbz] {
  margin-top: 20px;
}
.hero .backgorund[b-496pre4wbz] {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 350px;
}
@media only screen and (min-width: 500px) {
  .hero[b-496pre4wbz] {
    /*   .backgorund {
            bottom: -55%;
        }*/
  }
  .hero article > img[b-496pre4wbz] {
    max-width: 250px;
  }
  .hero article > img._left[b-496pre4wbz] {
    left: -80px;
  }
  .hero article > img._right[b-496pre4wbz] {
    right: -150px;
  }
  .hero article span[b-496pre4wbz] {
    text-wrap-style: balance;
  }
  .hero article h1[b-496pre4wbz] {
    display: inline-block;
  }
  .hero article h1 span[b-496pre4wbz] {
    font-size: inherit;
    color: var(--primaryColor);
    font-weight: 900;
  }
}
@media only screen and (min-width: 800px) {
  .hero article h1[b-496pre4wbz] {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 1100px) {
  .hero article > img[b-496pre4wbz] {
    max-width: 250px;
  }
  .hero article > img._left[b-496pre4wbz] {
    left: 0;
  }
  .hero article > img._right[b-496pre4wbz] {
    right: 70px;
  }
  .hero article span[b-496pre4wbz] {
    text-wrap-style: balance;
  }
  .hero article h1[b-496pre4wbz] {
    display: inline-block;
    font-size: 4rem;
  }
  .hero article h1 span[b-496pre4wbz] {
    font-size: inherit;
    color: var(--primaryColor);
    font-weight: 900;
  }
}
/* _content/HotShot/Components/Home/Home_ProductsComponents.razor.rz.scp.css */
:root[b-q45z5jkujb] {
  --primaryColor: #ed1c24;
  --blackColor: #131718;
  --yellowColor: #fde047;
  --redColor: #ca4654;
  --greenColor: #5da253;
  --blueColor: #52cdfe;
  --mauveColor: #f992d4;
  --radius: 8px;
  --duration: 0.3s ease-in-out;
  --headerHeight: 80px;
  --maxWidth: 1300px;
}
.flavor[b-q45z5jkujb] {
  margin: 0;
  padding: 0;
}
.flavor article[b-q45z5jkujb] {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  padding: 0;
  overflow: hidden;
}
.flavor .item[b-q45z5jkujb] {
  width: 100%;
  overflow: hidden;
}
.flavor .item > div[b-q45z5jkujb] {
  background-color: var(--blueColor);
  padding: 20px;
}
.flavor .item > div > div[b-q45z5jkujb] {
  max-width: var(--maxWidth);
  margin-inline: auto;
}
.flavor .item > div span[b-q45z5jkujb] {
  font-size: clamp(1rem, 7vw, 118px);
  font-weight: bold;
  color: #fff;
}
.flavor .item:nth-child(1)[b-q45z5jkujb] {
  transform: rotate(-1.25deg);
  z-index: -1;
}
.flavor .item:nth-child(2)[b-q45z5jkujb] {
  transform: rotate(1.3deg);
}
.flavor .item:nth-child(2) div[b-q45z5jkujb] {
  background-color: var(--greenColor);
}
.flavor .item:nth-child(3)[b-q45z5jkujb] {
  transform: rotate(-1.38deg);
}
.flavor .item:nth-child(3) div[b-q45z5jkujb] {
  background-color: var(--mauveColor);
}
.flavor .item:nth-child(4)[b-q45z5jkujb] {
  transform: rotate(1.07deg);
}
.flavor .item:nth-child(4) div[b-q45z5jkujb] {
  background-color: var(--yellowColor);
}
.flavor .item:nth-child(5)[b-q45z5jkujb] {
  transform: rotate(-1.15deg);
}
.flavor .item:nth-child(5) div[b-q45z5jkujb] {
  background-color: var(--redColor);
}
.flavor .item:nth-child(5)[b-q45z5jkujb] {
  transform: rotate(2.3deg);
}
.product[b-q45z5jkujb] {
  background: linear-gradient(79deg, var(--redColor) 50%, #521b21);
}
.product article[b-q45z5jkujb] {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}
.product-info[b-q45z5jkujb] {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  text-align: left;
}
.product-info h2[b-q45z5jkujb] {
  color: #fff;
  font-weight: bold;
}
.product-info p[b-q45z5jkujb] {
  color: #fff;
  font-size: 1.2rem;
  line-height: 2rem;
}
.product-images[b-q45z5jkujb] {
  position: relative;
  min-height: 300px;
}
.product-images .img[b-q45z5jkujb] {
  position: absolute;
  width: 100px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transform-origin: bottom;
}
.product-images .img img[b-q45z5jkujb] {
  width: 100%;
  object-fit: contain;
  transform-origin: bottom;
}
@media only screen and (min-width: 800px) {
  .product article[b-q45z5jkujb] {
    grid-template-columns: 1fr 1fr;
  }
  .product-images .img[b-q45z5jkujb] {
    width: 150px;
  }
}
/* _content/HotShot/Components/Home/Home_testomanialComponents.razor.rz.scp.css */
:root[b-fdn2qt73bk] {
  --primaryColor: #ed1c24;
  --blackColor: #131718;
  --yellowColor: #fde047;
  --redColor: #ca4654;
  --greenColor: #5da253;
  --blueColor: #52cdfe;
  --mauveColor: #f992d4;
  --radius: 8px;
  --duration: 0.3s ease-in-out;
  --headerHeight: 80px;
  --maxWidth: 1300px;
}
.testimonials[b-fdn2qt73bk] {
  min-height: 500px;
  background: linear-gradient(79deg, var(--redColor) 50%, #521b21);
}
.testimonials > article[b-fdn2qt73bk] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 100px 100px;
  position: relative;
  user-select: none;
}
.testimonials > article h2[b-fdn2qt73bk] {
  color: #fff;
}
.testimonials .review[b-fdn2qt73bk] {
  align-items: stretch;
  justify-content: space-between;
  margin-block: 50px 20px;
}
.testimonials .review > div[b-fdn2qt73bk] {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  height: unset;
  user-select: none;
  position: relative;
}
.testimonials .review > div[b-fdn2qt73bk]:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}
.testimonials .review > div > span[b-fdn2qt73bk] {
  font-size: 1.2rem;
  line-height: 1.5rem;
  color: #fff;
  font-weight: bold;
}
.testimonials .review > div > p[b-fdn2qt73bk] {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #fff;
  text-align: left;
}
.testimonials .review > div > div[b-fdn2qt73bk] {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-self: flex-end;
  margin-top: auto;
}
.testimonials .review > div > div span[b-fdn2qt73bk] {
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--yellowColor);
  text-transform: capitalize;
  text-align: right;
}
.testimonials .buttons[b-fdn2qt73bk] {
  position: absolute;
  bottom: 20px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
}
.testimonials .buttons .button[b-fdn2qt73bk] {
  width: 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-content: center;
  justify-content: center;
  background-color: #fff;
  cursor: pointer;
  box-shadow: 0 0 3px #88757563;
}
.testimonials .buttons .button[b-fdn2qt73bk]  svg {
  width: 100%;
  fill: var(--blackColor);
  transform: rotate(90deg);
  transition: all var(--duration);
}
.testimonials .buttons .button:last-child[b-fdn2qt73bk]  svg {
  transform: rotate(-90deg);
}
.testimonials .buttons .button:hover[b-fdn2qt73bk] {
  background-color: var(--yellowColor);
}
.testimonials .buttons .button:hover[b-fdn2qt73bk]  svg {
  fill: #fff;
}
.testimonials .swiper-button-disabled[b-fdn2qt73bk] {
  opacity: 0.5;
  pointer-events: none;
}
.testimonials .swiper-button-lock[b-fdn2qt73bk] {
  display: none !important;
}
.testimonials .swiper-counter[b-fdn2qt73bk] {
  color: #fff;
  font-size: 0.8rem;
}
/* _content/HotShot/Components/Notes/Notes_InitComponents.razor.rz.scp.css */
:root[b-8ik2ewknr2] {
  --primaryColor: #ed1c24;
  --blackColor: #131718;
  --yellowColor: #fde047;
  --redColor: #ca4654;
  --greenColor: #5da253;
  --blueColor: #52cdfe;
  --mauveColor: #f992d4;
  --radius: 8px;
  --duration: 0.3s ease-in-out;
  --headerHeight: 80px;
  --maxWidth: 1300px;
}
.init[b-8ik2ewknr2] {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  background: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transform-origin: center center;
  clip-path: circle(100% at 50% 50%);
  transition: clip-path 1.5s ease-in-out;
  background-color: var(--redColor);
}
.init article[b-8ik2ewknr2] {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.init-logo[b-8ik2ewknr2] {
  max-width: 200px;
  width: 100%;
  transform: all var(--duration);
}
.init-logo[b-8ik2ewknr2]  svg .cls-1,
.init-logo[b-8ik2ewknr2]  svg .cls-3 {
  fill: #fff;
}
.init-logo[b-8ik2ewknr2]  svg .cls-2 {
  stroke: #fff;
}
.init-description[b-8ik2ewknr2] {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #fff;
}
.init-description p[b-8ik2ewknr2] {
  font-size: 1.2rem;
  text-wrap-style: balance;
}
.init-description p span[b-8ik2ewknr2] {
  font-weight: 900;
  font-size: 1.3rem;
}
.init-description span[b-8ik2ewknr2] {
  font-size: 1rem;
}
.init .buttons[b-8ik2ewknr2] {
  margin-top: 20px;
  flex-direction: column;
  gap: 20px;
}
.init.scaled-down[b-8ik2ewknr2] {
  clip-path: circle(0% at 50% 50%);
}
.init.scaled-down .init-logo[b-8ik2ewknr2] {
  width: 20px;
}
.init.hide .init-description[b-8ik2ewknr2] {
  display: none;
}
.init.hide .init-items[b-8ik2ewknr2] {
  display: none;
}
.init.hide .buttons[b-8ik2ewknr2] {
  display: none;
}
.under-message[b-8ik2ewknr2] {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.under-message h3[b-8ik2ewknr2],
.under-message p[b-8ik2ewknr2] {
  color: #fff;
}
.under-message p[b-8ik2ewknr2] {
  font-size: 1.2rem;
}
/* _content/HotShot/Components/Shared/CircleComponent.razor.rz.scp.css */
.circle[b-qtd9u01lvc] {
  width: 48px;
  aspect-ratio: 1;
  animation: float-b-qtd9u01lvc 6s ease-in-out infinite alternate;
  background: linear-gradient(45deg, #fbbf24, #f59e0b, #d97706);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  position: absolute;
  overflow: hidden;
  opacity: 0.2;
}
.circle._left[b-qtd9u01lvc] {
  left: 20px;
  top: 20px;
}
.circle._right[b-qtd9u01lvc] {
  right: 20px;
  top: 50px;
  width: 120px;
}
.circle._center[b-qtd9u01lvc] {
  left: 50%;
  bottom: 50px;
}
.circle[b-qtd9u01lvc]:before {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  right: 10%;
  bottom: 10%;
  background: linear-gradient(45deg, #fef3c7, #fde68a);
  border-radius: inherit;
}
.circle > div[b-qtd9u01lvc] {
  position: absolute;
  width: 2px;
  background: #f59e0b;
  top: 20%;
  bottom: 20%;
  transform-origin: bottom;
}
.circle > div:nth-child(1)[b-qtd9u01lvc] {
  left: 30%;
  transform: rotate(30deg);
}
.circle > div:nth-child(2)[b-qtd9u01lvc] {
  left: 50%;
  transform: rotate(60deg);
}
.circle > div:nth-child(3)[b-qtd9u01lvc] {
  left: 70%;
  transform: rotate(90deg);
}
@keyframes float-b-qtd9u01lvc {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(20px) rotate(50deg);
  }
}
/* _content/HotShot/Main/Layout/Footer.razor.rz.scp.css */
:root[b-awalo9ctdp] {
  --primaryColor: #ed1c24;
  --blackColor: #131718;
  --yellowColor: #fde047;
  --redColor: #ca4654;
  --greenColor: #5da253;
  --blueColor: #52cdfe;
  --mauveColor: #f992d4;
  --radius: 8px;
  --duration: 0.3s ease-in-out;
  --headerHeight: 80px;
  --maxWidth: 1300px;
}
.footer[b-awalo9ctdp] {
  background-color: var(--blackColor);
}
.footer article[b-awalo9ctdp] {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-block: 40px;
  align-items: center;
  justify-content: center;
  padding-inline: 20px;
}
.footer article > div[b-awalo9ctdp] {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.footer-top > div[b-awalo9ctdp] {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-top[b-awalo9ctdp]  svg {
  width: 100px;
}
.footer-top[b-awalo9ctdp]  svg .cls-1,
.footer-top[b-awalo9ctdp]  svg .cls-3 {
  fill: #fff;
}
.footer-top span[b-awalo9ctdp] {
  font-size: 0.8rem;
  color: #fff;
}
.footer-bottom[b-awalo9ctdp] {
  padding-top: 10px;
  border-top: 1px solid #fff;
}
.footer-bottom span[b-awalo9ctdp] {
  font-size: 0.9rem;
  color: #fff;
  display: inline-block;
}
.footer-bottom span a[b-awalo9ctdp] {
  font-size: inherit;
  transition: all var(--duration);
  color: #fff;
  font-weight: bold;
}
.footer-bottom span a:hover[b-awalo9ctdp] {
  color: #FF007F;
  text-shadow: 0 0 5px #FF007F, 0 0 10px #FF007F, 0 0 15px #FF007F;
}
/* _content/HotShot/Main/Layout/Header.razor.rz.scp.css */
:root[b-pfmeige25r] {
  --primaryColor: #ed1c24;
  --blackColor: #131718;
  --yellowColor: #fde047;
  --redColor: #ca4654;
  --greenColor: #5da253;
  --blueColor: #52cdfe;
  --mauveColor: #f992d4;
  --radius: 8px;
  --duration: 0.3s ease-in-out;
  --headerHeight: 80px;
  --maxWidth: 1300px;
}
.header[b-pfmeige25r] {
  width: 100%;
  z-index: 999;
}
.header article[b-pfmeige25r] {
  height: var(--headerHeight);
  display: flex;
  width: 100%;
  padding: 20px;
  justify-content: space-between;
  gap: 20px;
  max-width: 1000px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px) saturate(180%);
  border-radius: 0 0 24px 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-top: none;
  transition: height var(--duration);
}
.header-logo[b-pfmeige25r] {
  max-width: 100px;
  width: 100%;
  height: 100%;
}
.header-logo[b-pfmeige25r]  svg {
  width: 100%;
  height: 100%;
}
.header-links[b-pfmeige25r] {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
.header-links[b-pfmeige25r]  li {
  min-width: 10px;
}
.header-links[b-pfmeige25r]  li a {
  font-size: 1rem;
  transition: all var(--duration);
  padding: 10px;
  color: var(--blackColor);
  border-radius: var(--radius);
  position: relative;
  font-weight: bold;
}
.header-links[b-pfmeige25r]  li a.active {
  background-color: var(--redColor);
  color: #fff;
}
.header-links[b-pfmeige25r]  li a:hover {
  background-color: var(--redColor);
  color: #fff;
}
.header-burger[b-pfmeige25r] {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  cursor: pointer;
  outline: none;
  border: none;
  background-color: transparent;
}
.header-burger[b-pfmeige25r]  svg {
  width: 100%;
}
.header-burger[b-pfmeige25r]  svg .--svg-stroke {
  stroke: var(--blackColor);
  transition: all var(--duration);
}
.header-burger:hover[b-pfmeige25r]  svg .--svg-stroke {
  stroke: var(--redColor);
}
.mobile[b-pfmeige25r] {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: #00000057;
  z-index: 99999;
  display: none;
}
.mobile article[b-pfmeige25r] {
  max-width: 600px;
  background-color: #fff;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
}
.mobile article button[b-pfmeige25r] {
  outline: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  width: 60px;
  margin-left: auto;
  cursor: pointer;
  padding: 20px;
}
.mobile article button[b-pfmeige25r]  svg {
  width: 100%;
  fill: var(--blackColor);
  transition: all var(--duration);
}
.mobile article button:hover[b-pfmeige25r]  svg {
  fill: var(--primaryColor);
}
.mobile article ul[b-pfmeige25r] {
  display: flex;
  flex-direction: column;
}
.mobile article ul[b-pfmeige25r]  li a {
  width: 100%;
  padding: 20px;
  color: var(--blackColor);
  border-bottom: 1px solid #00000026;
  transition: all var(--primaryColor);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.2rem;
}
.mobile article ul[b-pfmeige25r]  li a:hover,
.mobile article ul[b-pfmeige25r]  li a .active {
  background-color: var(--redColor);
  color: #fff;
}
.mobile article ul[b-pfmeige25r]  li:last-child a {
  border-bottom: none;
}
._scroll .header article[b-pfmeige25r] {
  height: 60px!important;
  padding-block: 10px!important;
}
@media only screen and (min-width: 1100px) {
  .header-links[b-pfmeige25r] {
    display: flex;
  }
  .header-burger[b-pfmeige25r] {
    display: none;
  }
}
