.header {
  padding: 15px;
  background-color: #010d10;
  display: flex;
  flex-direction: row;
  font-family: sans-serif;
  font-size: 1.2rem;
  color: white;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.header-link {
  padding-right: 15px;
}

#div-left {
  min-width: 240px;
}

#div-right {
    width: auto;
    display: flex;
    flex-direction: row;
    justify-content: start;
    flex-wrap:wrap;
}

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

.header-items-left {
  justify-content: flex-start;
}

.window-link p {
  color: yellow;
}

.categoria-link {
    background-color: rgb(232, 238, 238);  
    padding: 14px;  
    text-align: center;
    margin-right: 20px;
    border-radius: 5px;
}

.categoria-link a {
    color: black;
    font-size: 20px;
    font-weight: bold;
}

.categoria-link a:hover {
    color: blue;
}

.header-items-right {
  margin-left:auto;
  justify-content: flex-end;
}

/* DROPDOWN */
.dropdown {
  cursor: pointer;
  overflow: visible;
  color: inherit;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  position: absolute;
  display: none;
  background-color: #f1f1f1;
  border-radius: 5px;
  /* min-width: 160px; */
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  top: 60px;
}

.dropdown:hover {
  color:rgb(146, 114, 114);
  text-decoration: none;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  /* background-color: #ddd; */
  color: #909090
}

.dropdown-content-show {
  display: flex;
  flex-direction: column;
}

@media (max-width: 575.98px) {

  html {
  scroll-padding-top: 150px; /* height of sticky header */
  }

  .header {
    flex-direction: column;
  }

  #div-left {
    margin-bottom: 10px;
    min-width: 0px;
  }

  .header-items-left {
    justify-content: center;
  }

  .header-link {
    padding-right: 0px;
  }
  #div-right {
    width: 100%;
    justify-content: space-between;
    row-gap: 5px;
  }

  .categoria-link {
    margin-right: 0px;
    padding: 10px;  
  }

}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {

  #div-right {
    row-gap: 5px;
  }

}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) { 
  
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {

}

/* Large devices (desktops, 992px and up) */
@media (max-width: 992px) { 

  #logo-id {
    display: none;
  }

}


/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 

}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {

}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

}

