
/*//////////////////   HEADER   ///////////////////////*/
.mainheader{
    width: 100%;
    box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.3);
    background-color: var(--clessidra);
    position: sticky;
    top: 0;
    z-index: 10;
    
}

.topheader-container-main{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 20px;
    margin-bottom: 0px;
}
.topheader-container-left{
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
/*TABLET*/
    @media (min-width: 441px) {
        .topheader-container-left{
            align-items: flex-start;

    }
}
/*DESKTOP*/
    @media (min-width: 769px) {
        .topheader-container-left{
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            };
    }
    
.mainheader-logo{
    display: flex;
    flex: 1;
    flex-direction: row;
    align-items: center;

}
.mainheader-logo img{
    width: 55%;
}
.mainheader-logo a {
    text-decoration: none;
    color: white;
    font-size: 35px;
    margin: 0px;
    align-items: center;
}

    @media (min-width: 601px) {
        .mainheader-logo a {
            font-size: 44px;
        }
    }

.mainheader-logo:hover a {
    color: rgb(0, 0, 0);
}

.headersearch{
    flex: 1;
    display: flex;
    justify-content: right;
    align-items: center;
    flex-direction: row;
    margin-left: 0px;
    
}


.headersearch input{
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    
}


.searchinput{
    height: 30px;   
    border-radius: 5px;
    border: 1px solid #ebebeb;
    padding: 0px 5px;
    background-color: whitesmoke;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    color: #6c6161;
}

@media (min-width: 769px) {
    .headersearch input{
        min-width: 240px;
    }
}

@media (min-width: 1000px) {
    .headersearch input{
        min-width: 340px;
    }
}


.searchbutton{
    
    height: 30px;
    width: 30px;
    border-radius: 5px;
    border: 1px solid #ebebeb;
    background-color: var(--clessidra);
    color: whitesmoke;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    margin-left: 2px;
    
}

.searchbutton i{
    position: relative;
    top: 0px;
    left: 0px;
    background-color: none;
    
}

.topheader-container-right{
    display: none;
}
/*TABLET*/
@media (min-width: 441px) {
    .topheader-container-right{
        display: flex;
        flex-direction: column;
        margin-left:20px;
        
    }


};
    
/*DESKTOP*/
    @media (min-width: 604px) {
        
    }
    

.topheader-container-right a{
    text-decoration: none;
    color: whitesmoke;
    font-size: 12px;
    width: 120px;
    border-radius: 10px;
    

}

.topheader-container-right a:hover{
    color: var(--clessidra);
    background-color: #ebebeb;
        
}

.user-links{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.user-links a{
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 5px;
    margin-bottom: 5px;
    margin-left: 20px;
    font-size: 18px;

}

.user-links a i{
    margin-left: 7px;
}






/* DROP DOWN MENUS PARA RESPOSIVE SCREEN */
/* NO BORRAR LA BARRA DE ACA ABAJO. POR ALGUN MOTIVO, NO FUNCIONAN LOS DROPDOWNS SI LA BORRAMOS. COSA DE MANDINGA. */


.dropdown {
    overflow: hidden;
    margin-right: 40;

  } 

  @media (min-width: 441px) {
    .dropdown {
      display: none;
    }
  }
  
  .dropdown .dropbtn {
    font-size: 14px;  
    border: none;
    outline: none;
    color: white;
    padding: 12px 16px;
    background-color: inherit;
    font-family: inherit;
    border-radius: 10px 10px 0px 0px;
  }
  
  .dropdown:hover .dropbtn {
    background-color: red;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 120px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;

  }
  
  .dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: right;
  }
  
  .dropdown-content a:hover {
    background-color: #ddd;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }


/*//////////////////   BOTTOM HEADER   ///////////////////////*/

.bottomheader-container-main{
    display: flex;
    flex-direction: row;
    height: 40px;
    justify-content: center;
    padding: 0px 20px;
}

.navbarmain{
    display: none;
    
}

/*TABLET*/
@media (min-width: 441px) {
    .navbarmain{
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: flex-start ;
        width: 100%;
        margin: 0px;
        padding: 0px;
        };
    }
/*DESKTOP*/
    @media (min-width: 604px) {
        
    }
    
.nav.navbarmain{
    margin: 0px;
}


.nav-links{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    
}

ul.nav-links {
    margin-bottom: 5px;
    height: 20px;
    margin-left: 0px;
    margin-right: 0px;
    list-style: none;
    padding: 0px;
    
}

.nav-links li{
    list-style: none;
    margin: 0px;
}

.nav-links a {
    list-style: none;
    font-size: 15px;
    width: 80px;
    border-bottom: none;
    background-color: black;
    padding: 5px;
    height: 30px;
    border-radius: 10px 10px 0px 0px;
    align-items: center;
    margin-right: 5px;

}

    @media (min-width: 601px) {
        .nav-links a {
            font-size: 18px;
            width: 100px;
        }
    }

ul li a.active {
    background-color:#ee964b; 

}

.nav-links a{
    text-decoration: none;
    color: white;
}


.burgermenu {
    background: black;
    border:grey solid 1px;
    font-size: 20px;
    color: whitesmoke;
    height: 30px;
    width: 30px;
    border-radius: 4px;
    margin-bottom: 5px;
    display: flex;
    margin: auto;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    
}

.burgermenu:hover {
    background: black;
}

/*TABLET*/
    @media (min-width: 441px) {
    .burgermenu{
        display: none;
    };
    }
/*DESKTOP*/
    @media (min-width: 604px) {
        
    }
    



