/*
 * Header
 */
.masthead {
  margin-bottom: 2rem;
}

.masthead-brand {
  margin-bottom: 0;
}

.nav-masthead .nav-link {
  padding: .25rem 0;
  font-weight: 700;
  border-bottom: .25rem solid transparent;
  margin: 0 10px 0 10px;
}
    .nav-masthead .nav-link:hover,
    .nav-masthead .nav-link:focus,
    .nav-masthead .nav-link.active
    {
      border-bottom-color: #000;
    }
    .nav-masthead .dropdown .nav-link
    {
        border-bottom: none;
        margin-top: 0;
    }

.nav-masthead .nav-link + .nav-link {
  margin-left: 1rem;
}

.nav-masthead .active {
  color: #fff;
  border-bottom-color: #fff;
}

@media (min-width: 48em) {
  .masthead-brand {
    float: left;
  }
  .nav-masthead {
    float: right;
  }
}

.nav-item.dropdown
{
    margin-top: -10px;
    height: 45px;
}
.navbar-nav .dropdown-menu
{
    right: 0;
    left: auto;
}
.nav-item.highlight .nav-link
{
    background-color: #6ea8fe;
}
.highlight2,
.nav-item.highlight2 .nav-link
{
    border-color: #fd9843;
    background-color: #fd9843;
}
.highlight2:hover
{
    border-color: #fd7e14 !important;
    background-color: #fd7e14 !important;
}

.content
{
    padding: 0;
}

#login
{
    margin: 75px auto;
}
    #login .form-group,
    #login .checkbox
    {
        margin-top: 1em;
        margin-bottom: 1em;
    }
    
.fields > div
{
    margin-bottom: 1em;
}

.manufacturers_list
{
    column-count: 3;
}


.alert .close
{
    display: none;
}



/***** secciones *****/
#requests_menu
{
    --bs-bg-opacity: 5;
    background-color: rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important;
}
    #requests_menu .nav-item
    {
        border-bottom: 1px solid #ccc;
    }
    #requests_menu .separator
    {
        padding: 0.5em 1em;
        background-color: #d8d8d8;
        margin: -1px -1em 0;
    }
    #requests_menu .separator.buyer
    {
        background-color: #4CAF50;
    }
    #requests_menu .separator.seller
    {
        background-color: #fd9843; /* #1976D2;*/
    }
    #requests_menu .last
    {
        margin-bottom: 50px;
    }
    

    #requests_menu .active
    {
        font-weight: bold;
    }
#requests-container
{
    min-height: 700px;
}
#requests_list .offers_info
{
    overflow: auto;
    padding: 0.2em 0;
    margin: 0.4em 0;
}
    #requests_list .price
    {
        background-color: #ffeba7;
        margin: 0 0.4em 0 0;
    }
    #requests_list .btn-secondary
    {
        background-color: #9fa4a9;
        border-color: #9fa4a9;
    }
        #requests_list .btn-secondary:hover
        {
            background-color: var(--bs-btn-hover-bg);
            border-color: var(--bs-btn-hover-border-color);
        }
    #requests_list .hover_offers
    {
        border-left: 1px solid rgba(0, 0, 0, 0.125);
    }



#offerdo .row
{
    margin-bottom: 1em;
}

#requests-container h3.display-6
{
    font-size: 2rem;
    margin-top: 1em;
}




/*Overlay imagen*/
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  .overlay img {
    max-width: 90%;
    max-height: 90%;
    border: 4px solid white;
    box-shadow: 0 0 20px black;
  }

  .overlay:hover {
    cursor: pointer;
  }