a:link {
  color: #000000;
  text-decoration: none;
}
a:visited {
  color: #000000;
  text-decoration: none;
}
a:hover {
  color: #009900;
  text-decoration: none;
}
a:active {
  color: #000000;
  text-decoration: none;
}

table.product-first-row {
  background: url("../estrutura/fundo_item_01.gif");
  background-repeat: no-repeat;
  background-position-x: 14px;
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 104px;
  text-align: center;
  text-decoration: none;
  color: #000000;
  height: 140px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.category-card img {
  /* width: 104px;
  height: 76px;
  object-fit: cover; */
  border: 1px solid #cccccc;
}

.category-card span {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  margin-top: 5px;
  color: #000000;
  line-height: 1.3;
}

.category-card:hover img {
  border-color: #009900;
}

.category-card:hover span {
  color: #009900;
}


#player-wrapper {
  position: relative;
  width: 1024px;
  height: 600px;
}
/* Your personalized loading overlay structure */
#loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: #e3d8bc; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  font-family: sans-serif;
  z-index: 10;
  transition: opacity 0.5s ease; /* Fade-out transition */
}
#loader p {
  color: #4c7934;
}
.spinner {
  border: 4px solid #4c7934;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border-left-color: #87a56f;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
