@charset "UTF-8";
.navbar-lamps {
  margin: auto;
  position: absolute;
  display: contents;
}
.navbar-lamps .row {
  display: none;
  text-align: center;
  padding: 0 10px;
  background-color: #000000;
  border-radius: 0;
  transform: translateY(-100%);
}
.navbar-lamps .row .lamp {
  cursor: pointer;
  padding: 5px 5px;
}
.navbar-lamps .box {
  border-radius: 5px;
  border: 2px solid #636363;
  background-color: #171717;
  background-size: 75%;
  background-repeat: no-repeat;
  background-position-x: -100%;
  transition: background-position-x 300ms linear;
}
.navbar-lamps .box a {
  display: flex;
  justify-content: center;
  padding: 10px 0;
}
.navbar-lamps .box:hover {
  border-color: #FFFFFF;
  background-position-x: 75%;
  box-shadow: 0 0 9px #FFFFFF;
}
.navbar-lamps {
  /* Variantes con background-image */
}
.navbar-lamps div.d2 div,
.navbar-lamps div.x90 div,
.navbar-lamps div.x80p div,
.navbar-lamps div.x80 div,
.navbar-lamps div.rd45r div,
.navbar-lamps div.rd45b div {
  background-image: url("../img/svg/komba-background_2.svg");
  background-position-y: 45%;
}
.navbar-lamps {
  /* Colores hover específicos */
}
.navbar-lamps .d2 .box:hover {
  background-color: #F60002;
}
.navbar-lamps .x90 .box:hover {
  background-color: #2E2E2E;
}
.navbar-lamps .x80p .box:hover {
  background-color: #05be74;
}
.navbar-lamps .x80 .box:hover {
  background-color: #037730;
}
.navbar-lamps .rd45r .box:hover {
  background-color: #C60000;
}
.navbar-lamps .rd45b .box:hover {
  background-color: #173088;
}
.navbar-lamps.active .row {
  display: flex;
  animation: translate-top 0.4s ease forwards;
}
.navbar-lamps.desactive .row {
  animation: translate-top-close 0.4s ease forwards;
}

/* Animaciones */
@keyframes translate-top {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0%);
  }
}
@keyframes translate-top-close {
  0% {
    display: flex;
    transform: translateY(0%);
  }
  100% {
    display: none;
    transform: translateY(-100%);
  }
}
@keyframes opacity-1 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes opacity-0 {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.nav-phone {
  width: min-content;
  background-color: #000000;
  border-radius: 15px;
  padding: 2.5px 10px;
  text-align: center;
  transition: background-color 0.5s ease;
}
.nav-phone i {
  transition: color 0.5s ease;
  color: #FFFFFF;
}
.nav-phone a {
  color: #FFFFFF;
  transition: color 0.5s ease;
  font-weight: bold;
  font-size: 1.25rem;
  white-space: nowrap;
  text-decoration: none;
}
.nav-phone svg {
  margin-bottom: 5px;
}
.nav-phone:last-child {
  padding: 0 15px 5px;
  border-radius: 0 0 15px 0;
}
.nav-phone:hover {
  background-color: #FFFFFF;
  text-shadow: 0 0 10px #FFFFFF;
}
.nav-phone:hover a {
  color: #000000;
}
.nav-phone:hover i {
  color: #000000;
}

nav {
  z-index: 100;
  padding-right: 2.5%;
  padding-left: 2.5%;
}
nav a.navbar-brand {
  padding-left: 5px;
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

.nav-item {
  padding: 0 5px;
}
.nav-item div {
  margin: 0 1px 0 1px;
  padding: 0 5px;
  width: auto;
  height: 2px;
  border-radius: 1px;
}
.nav-item.active div {
  background-color: white;
  box-shadow: white 0 0 10px;
  display: block;
}
.nav-item:hover {
  font-size: 100%;
  color: white;
  text-shadow: white 0 0 9px;
}
.nav-item:hover div {
  animation: lightray 0.5s linear;
  background-color: white;
  box-shadow: white 0 0 9px;
  display: block;
}

.navbar-dark .navbar-toggler {
  color: #636363;
  border-color: #636363;
  border-width: 2px;
  transition: border-color 1s ease;
  border-color: #636363;
  margin-right: 5px;
}
.navbar-dark .navbar-toggler .navbar-toggler-icon {
  background-image: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1em;
  height: 1em;
  font-size: 2rem;
  color: #636363;
}
.navbar-dark .navbar-toggler i {
  transition: color 1s ease;
}
.navbar-dark .navbar-toggler:hover {
  border-color: #FFFFFF;
  border-width: 2px;
}
.navbar-dark .navbar-toggler:hover i {
  color: #FFFFFF;
}
.navbar-dark .navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 1px;
}

@media (min-width: 576px) {
  .navbar-expand-sm .navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }
  .navbar-expand-sm .navbar-nav a {
    text-align: center;
  }
}
footer {
  z-index: 100;
  padding-right: 2.5%;
  padding-left: 2.5%;
}

.fade-in-top {
  opacity: 0;
  transform: translateY(30px); /* va hacia abajo cuando invisible */
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.fade-in-top.visible {
  opacity: 1;
  transform: translateY(0); /* posición normal cuando visible */
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px); /* va hacia abajo cuando invisible */
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0); /* posición normal cuando visible */
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px); /* va hacia abajo cuando invisible */
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0); /* posición normal cuando visible */
}

.fade-in-bottom {
  opacity: 0;
  transform: translateY(-30px); /* va hacia abajo cuando invisible */
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.fade-in-bottom.visible {
  opacity: 1;
  transform: translateY(0); /* posición normal cuando visible */
}

:root {
  --bs-body-color: #FFFFFF;
  --bs-body-bg: #171717;
}

html {
  font-size: 14px;
  color: white;
  position: relative;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  min-width: 375px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.dropdown-menu-dark {
  background-color: black !important;
  border: 1px solid black;
}

.dropdown-item {
  text-shadow: none;
}

.dropdown-item:hover {
  text-shadow: white 0 0 9px;
}

@keyframes lightray {
  0% {
    opacity: 0%;
  }
  100% {
    opacity: 100%;
  }
}
.socket-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-x: clip;
  width: 100%;
  height: 100%;
  padding: 2.5% 2.5% 2.5% 2.5%;
}

.product-title {
  font-size: 3rem;
}

.product-lightText {
  margin: 10px 0px;
  font-size: 1rem;
}

.pnl-transparent {
  background-color: rgba(0, 0, 0, 0.7);
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-title {
  font-size: calc(var(--bs-body-font-size) * 1.2);
}

.d-flex {
  display: flex !important;
  justify-content: center;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-self: center;
  align-items: center;
}

.wa-h100 {
  width: auto;
  height: 100%;
}

.w100-ha {
  width: 100%;
  height: auto;
}

.wa-w100 {
  width: auto;
}

.w100-wa {
  width: 100%;
}

.ha-h100 {
  height: auto;
}

.h100-ha {
  height: 100%;
}

@media (min-width: 768px) {
  wa-w100 {
    width: 100%;
  }
  w100-wa {
    width: auto;
  }
  .ha-h100 {
    height: 100%;
  }
  .h100-ha {
    height: auto;
  }
}
.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

.border-top {
  border-top: 1px solid #e5e5e5;
}

.border-bottom {
  border-bottom: 1px solid #e5e5e6;
}

.box-shadow {
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
}

/*# sourceMappingURL=site.css.map */
