header #search-form {
    margin-left: 0;
}

header,
footer {
    background-color: var(--blue-dba-color);
    color: var(--white-color);
}

header {
    width: 100%;
}

header .logo-img {
    max-width: 170px;
}

header #search-form input {
    min-width: 180px;
    height: 50px;
    border-radius: 0;
    border: solid 1px rgba(var(--white-color-rgb), 0.8);
    border-right: none;
    background-color: transparent;
    color: white;
}

header #search-form input:focus {
    border: solid 1px var(--white-color);
    box-shadow: none;
}

header #search-form button {
    border-radius: 0;
    border: solid 1px rgba(var(--white-color-rgb), 0.8);
    background-color: transparent;
    color: rgba(var(--white-color-rgb), 0.8);
    height: 50px;
    margin-right: 2px;
}

header #search-form button:hover {
    color: var(--white-color);
}

header #search-form .dropdown-toggle {
    background-color: var(--white-color);
    color: var(--black-color);
    height: 50px;
    width: 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-left: 3px;
    padding-right: 3px;
}

header #search-form .dropdown-menu {
    background-color: var(--white-color);
    border-radius: 0;
}

header a.nav-link.dropdown-toggle {
    color: var(--black-color);
}

header #navbar-menu {
    flex-direction: row;
    flex-wrap: wrap;
}

header #navbar-menu .btn {
    border-radius: 0;
    border: none;
    color: var(--white-color);
    height: 50px;
}

header #navbar-menu .btn-with-outline {
    border-radius: 0;
    border: solid 1px;
    border-color: var(--white-color);
    color: var(--grey-70-color);
    height: 50px;
}

header #navbar-menu .btn-content-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

header #navbar-menu .btn > i {
    font-size: 35px;
}

header #navbar-menu .nav-item-dashboard-img {
    height: 35px;
}

header #navbar-menu .btn-login,
header #navbar-menu .btn-register {
    background-color: transparent;
    color: var(--white-color);
}

header #navbar-menu .btn-login:hover,
header #navbar-menu .btn-register:hover {
    background-color: rgba(var(--yellow-dba-color-rgb), 0.8);
}

header #navbar-menu .btn-profile,
header #navbar-menu .btn-logout {
    border: none;
    color: var(--white-color);
}

header #navbar-menu .btn-profile svg,
header #navbar-menu .btn-logout svg {
    height: 30px;
}

header #navbar-menu .btn-profile:hover,
header #navbar-menu .btn-logout:hover {
    color: rgba(255, 255, 255, 0.6);
}

footer {
    width: 100%;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

footer .footer-cols {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

footer .footer-cols .footer-app-title {
    text-transform: uppercase;
    font-weight: bold;
}

footer .footer-cols #newsletter-form input,
footer .footer-cols #newsletter-form button {
    border-radius: 0;
    height: 50px;
    background-color: var(--white-color);
}

footer .footer-cols #newsletter-form button {
    font-weight: bold;
}

footer .footer-cols #newsletter-form button:hover {
    color: black;
}

footer .footer-cols p {
    margin-bottom: 1px;
}

footer .footer-cols ul {
    list-style: none;
    padding-left: 0;
    margin: 0.4rem 0;
}

footer .footer-cols ul li {
    display: inline-block;
    margin: 2px 4px;
}

footer .footer-cols a {
    text-decoration: none;
    color: var(--yellow-dba-color);
}

footer .footer-cols a:hover {
    color: rgba(var(--yellow-dba-color-rgb), 0.8);
}

footer .footer-cols .footer-social-media {
    margin-top: 10px;
}

footer .footer-cols .footer-social-media .footer-social-media-link {
    margin: 0.5em 0 0.5em 1.1em;
}

footer .footer-cols .footer-social-media .footer-social-media-link svg {
    height: 25px;
    fill: var(--white-color);
}

footer .footer-cols .footer-social-media .footer-social-media-link:hover svg {
    fill: rgba(var(--yellow-dba-color-rgb), 0.8);
}

@media only screen and (min-width: 992px) {
    header #search-form {
        margin-left: calc(100vw - (100vw - 70px));
    }

    header #navbar-menu {
        margin-left: 0;
        width: 100%;
    }
}

@media only screen and (min-width: 1200px) {

    /* Header and footer*/

    header #search-form {
        margin-left: calc(95vw - (96vw - 135px));
    }

    header #navbar-menu {
        margin-left: calc(100vw - (100vw - 135px));
        max-width: 695px;
    }

    /* Header and footer*/
}