:root {
  --bg-primary: #01243E;
  --bg-secondary: #03446f;
  --bg-accent: #e22c27;
  --bg-black: #2b2b2b;
  --bg-white: #f5f5f5;
  --bg-light-greed: #b3b3b3;
  --bg-white-s: #fff;
}

body {
  background-color: var(--bg-white);
}

.hide {
  display: none;
}

.show_fadeIn {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar {
  background-color: var(--bg-primary);
}

.navbar .navbar-brand img {
  width: 100px;
}

/* aseguramos la posicion de la lista a lado izq del nav */
.navbar .navbar-nav {
  position: absolute;
  right: 74px;
}

.navbar .navbar-nav .nav-item .nav-link {
  color: var(--bg-white);
}

/* buscador en el navbar */
.navbar .search-navbar .btn {
  border-radius: 0px;
}
.navbar .search-navbar .form-control {
  border-radius: 0px;
}

/* footer */
.footer {
  background-color: var(--bg-secondary);
  color: var(--bg-white);
}
.footer .back-footer {
  background-color: var(--bg-primary);
}
.footer .red-img {
  width: 50px;
  height: 50px;
}


/* botones */
.btn-outline-accent {
  border-color: var(--bg-accent);
  color: var(--bg-accent);
}
.btn-outline-accent:hover {
  background-color: var(--bg-accent);
  color: var(--bg-white);
}

.btn-accent {
  background-color: var(--bg-accent);
  color: var(--bg-white);
}
.btn-accent:hover {
  background-color: var(--bg-accent);
  color: var(--bg-white);
}

.btn-principal {
  background-color: var(--bg-secondary);
  color: var(--bg-white);
}
.btn-principal:hover {
  background-color: var(--bg-secondary);
  color: var(--bg-white);
}

.btn-outline-principal {
  border-color: var(--bg-secondary);
  color: var(--bg-secondary);
}
.btn-outline-principal:hover {
  background-color: var(--bg-secondary);
  color: var(--bg-white);
}


/* carousel */
.carousel img {
  height: 300px;
  object-fit: cover;
}

.nav-header {
  background-color: var(--bg-secondary);
}
.nav-header a {
  color: var(--bg-white);
}
.nav-header a:hover{
  color: var(--bg-white-s);
}
.nav-header a.disabled {
  color: var(--bg-light-greed);
}


.menu-nav {
  padding: 20px;
  position: absolute;
  width: 100%;
  background: rgb(255 255 255 / 80%);
  z-index: 100;
}

.menu-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.menu-nav ul li {
  display: inline-block;
  background-color: var(--bg-secondary);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  white-space: nowrap;
}

.menu-nav ul li a {
  color: var(--bg-white);
  text-decoration: none;
}

.card img {
  border-radius: 0.375rem;
}

.card-product .product-code {
  font-size: 12px;
}
.card-product .product-desc {
  font-size: 14px;
}
.card-product .product-stock {
  font-size: 11px;
}
.card-product a {
  text-decoration: none;
  color: var(--bg-black);
}
.card-product img {
  height: 200px;
  object-fit: contain;
}
.card-product:hover {
  box-shadow: var(--bs-box-shadow) !important;
}

.btn-primary {
  background-color: var(--bg-secondary);
  border-color: var(--bg-primary);
}
.btn-primary:hover {
  background-color: var(--bg-primary);
}

.list-group .list-group-item a {
  text-decoration: none;
  color: var(--bg-black);
}

.card-brand {
  max-height: 1000px;
  overflow: scroll;
}

.table th {
  color: var(--bg-light-greed);
  font-weight: 300;
}

.object-fit-contain {
  object-fit: contain;
}

.inp-primary {
  border-color: var(--bg-primary);
  border-radius: 10px;
  text-align: center;
  font-size: 1.5rem;
}

.inp-primary-small {
  border-color: var(--bg-primary);
  border-radius: 10px;
  text-align: center;
  font-size: 1rem;
}

.inline-flex {
  display: inline-flex;
  width: 100%;
}

hr {
  margin: 1.3rem 0;
  opacity: .05;
}

.carousel-product-detail img {
  height: 500px;
}

.right {
  float: right;
}

.fs-mini {
  font-size: 0.7rem;
}

.multiple-images {
  height: 72px;
  display: flex;
}

.multiple-images img {
  max-width: fit-content;
  width: 32px;
  height: 32px;
  border-radius: 25px;
}

.notification-glow {
  position: relative;
}

.notification-glow::after {
  content: "";
  position: absolute;
  top: -4px;
  right: -4px;
  width: 12px;
  height: 12px;
  background-color: red;
  border-radius: 50%;
  box-shadow: 0 0 10px red;
  animation: glowPulse 1.5s infinite;
  z-index: 1;
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 0px red;
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 15px 5px red;
    opacity: 0.7;
  }
  100% {
    box-shadow: 0 0 0px red;
    opacity: 1;
  }
}

.badge-cart {
  position: absolute;
  margin-left: 7px;
  margin-top: 4px;
  font-size: 8px;
}