:root {
    --azul: #003399;
    --rodape: #FE9833;
}


.dropdown-language {
    position: relative;
    display: inline-block;
}

.dropdown-language-content {
    display: none;
    position: absolute;
    background-color: var(--azul);
    /* background-color: #f1f1f1; */
    min-width: 48px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

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

.dropdown-language-content a:hover {
    background-color: white;
    color: var(--azul);
}

.dropdown-language:hover .dropdown-language-content {
    display: block;
}





/* ===============================*/


.dropdown-social {
    position: relative;
    display: inline-block;
}

.dropdown-social-content {
    display: none;
    position: absolute;
    background-color: var(--azul);
    /* background-color: #f1f1f1; */
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

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

.dropdown-social-content a:hover {
    background-color: white;
    color: var(--azul);
}

.dropdown-social:hover .dropdown-social-content {
    display: block;
}


/* ---------------------- Search Button ----------------------*/
.togglesearch {
    background: white;
    position: absolute;
    top: 50px;
    right: 1%;
    /* width: 350px; */
    /* height: 60px; */
    /* line-height: 60px; */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    /* border-top:4px solid #D80B15; */
    display: none;
    z-index: 1;
}

.togglesearch:before {
    content: "";
    position: absolute;
    /* top: -50px;
  right: 13px; */
    /* border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 14px solid transparent;
  border-bottom: 14px solid #D80B15; */
}

/* ---------------------- Search Button ----------------------*/