.main-menu{
    height: 65px;
    padding: 10px 0;
    background: #fff;
    margin-bottom: 15px;
}

.title-page{
    font-size: 16px;
    display: inline-block;
    vertical-align: middle;
    padding: 0 0 20px 20px;
    font-weight: bold;
}

#search {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #f2f5f6;
    border-radius: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: inline-block;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0.5em 0;
    padding: 0.5em 0.5em 0.5em 1em;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    width: 200px;
}
#search:hover, #search:focus {
    background: #ccc;
}
#search button,
#search input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: 0;
    color: inherit;
    font: inherit;
    outline: 0;
}
#search button {
    cursor: pointer;
    padding: 0 0.25em;
    margin-left: -30px;
}
#search input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
#search input::-webkit-input-placeholder {
    color: #666;
}
#search input::-moz-placeholder {
    color: #666;
}
#search input:-ms-input-placeholder {
    color: #666;
}
#search input::placeholder {
    color: #666;
}
#search .spinner {
    -webkit-animation: spinner 1s infinite linear;
    animation: spinner 1s infinite linear;
    display: none;
    padding: 0 0.25em;
}

#search.loading button {
    display: none;
}
#search.loading .spinner {
    display: inline-block;
    margin-left: -30px;
}

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.notification-menu{
    display: inline-block;
    vertical-align: middle;
    padding: 0 20px;
}

.profile-menu{
    display: inline-block;
    vertical-align: middle;
    padding-right: 10px;
}

.title-notification{
    font-weight: bold;
}

.description-notification{
    word-break: keep-all;
    white-space: pre-wrap;
}

.notification-active{
    color: #F44336;
}

.notification-menu .dropdown-menu{
    max-width: 500px;
    width: 500px;
}

.profile-menu .dropdown-menu i{
    vertical-align: middle;
}

.logo-menu{
    border-bottom: 1px solid transparent !important;
    padding: 20px 0;
}

.navbar-nav>li>a{
    color: #666;
    background: transparent;
}

.navbar-nav>li>a:hover{
    color: #000;
    background: transparent;
}

.notBlue ul li a{
    background: transparent;
    color: #000 !important;

}

@media screen and (max-width: 768px){
    .notification-menu, .profile-menu{
        margin-top: 15px;
    }
    .notification-menu .dropdown-menu{
        max-width: 300px;
        width: 300px;
    }
    #search{
        display: none;
    }
}