/* General */
/* Sacar espacios del body */
html, body { 
    overflow-x: hidden;
}

body{
    background-color: #eeeeee;
    position: relative;
    min-height: 100vh;
    padding-bottom: 5rem;
}

h2{
    font-weight: bold;
    color: #222222;
}

/* Navbar */

.logo{
    height: 4rem;
}

body{
    font-family: 'Raleway', sans-serif;
}

.dropdown-menu{
    background-color: #162e44;
    margin-top: 0.45rem !important;
    border-top: none;
}

.navbar .dropdown-menu a{
    color: #fff;
}

.navbar .dropdown-menu a:hover{
    background-color: #162E44;
}

.navbar{
    background-color: #162E44;
}

.patyMenu{
    color: #fff;
}

/* Footer */
footer{
    background-color: #162E44;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

#notification{
    display: flex;
    justify-content: space-between;
    position: fixed;
    bottom: -5rem;
    left: 15rem;
    right: 15rem;
    border-radius: .2rem;
    color: white;
    background: #162E44;
    padding: .5rem 1.5rem;
    font-size: 1.1rem;
    z-index: 99;
    transition: 500ms;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
}

#notification p{
    margin: 0;
    padding: 0;
}

#notification i{
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* MD */
@media(min-width: 768px){
    .logo{
        height: 4rem;
    }
}

/* LG */
@media(min-width: 1024px){
    .modal-dialog{
        max-width: 900px;
    }
    .logo{
        height: 4rem;
    }
}

/* XL */
@media(min-width: 1200px){
    .logo{
        height: 4rem;
    }
}