html {
    height: 100%;
    font-family: Verdana;
}

body {
    color: #444;
    margin: 0;
    background: linear-gradient(rgba(210,210,210,1), rgba(255,255,255,1));
    font-family: Verdana;
    font-size: 1em;        
    height: 100%;
    overflow-x: hidden;
    padding: 0;
}

a {
    color: #f47820;
}

/**************/
/* ALIGNEMENT */
/**************/

.vertical-center {
    min-height: 100%;  /* Fallback for browsers do NOT support vh unit */
    min-height: 100vh; /* These two lines are counted as one :-)       */
    display: flex;
    align-items: center;
}

/**********/
/* NAVBAR */
/**********/

.navbar-emesa {
    /*background: linear-gradient(rgba(72,83,100,0.5), rgba(72,83,100,0.5));*/
    background: linear-gradient(#000, #222);
    /*background: linear-gradient(#485364, #485364);*/
    /*background-color: #222;*/
}

.navbar-emesa .navbar-brand img {
    height: 40px;
}

/**************/
/* BREADCRUMB */
/**************/

.breadcrumb-ctn {
    background: linear-gradient(#222, #444);
    height: 45px;
    margin-bottom: 20px;
}

.breadcrumb-ctn img.logo {
    height: 25px;
    margin-right: 20px;
    margin-left: 10px;
}

.breadcrumb {
    /*background: linear-gradient(#222, #444);
    padding: 0px 0px 10px 20px;*/
    background-color: transparent;
    border-radius: 0px;
    font-size: 14px;
    color: #FFF;
}

.breadcrumb-item a {
    /*color: #FFF;*/
}

.breadcrumb-item.active {
    color: #888;
}

/*BS buttons*/

.btn-primary, .btn-primary.disabled, .btn-primary:disabled {
    color: #222;
    background-color: #f05223;
    border-color: #485364;
}

.btn-primary:hover {
    color: #fff;
    background-color: #f47820;
    border-color: #2d333d;
}


/*Menu Ovi*/

ul#ctx_menu {
    background: linear-gradient(#222, #444);
    padding: 10px 0px 10px 10px;
    border-radius: 0px;
    font-size: 14px;
    color:#f47820;
    width: 100%;
}

ul#ctx_menu li {
    display: inline-block;
    margin: 0;
    padding: 5px 10px 5px 10px;
    box-sizing: content-box;
    color:#000;
    background-color: #FFF;
    font-size: 14px;
    font-weight: bold;
    border-radius: 2px;
}

ul#ctx_menu li.enabled {
    color:#000;
    background-color: transparent;
    font-weight: normal;
}

ul#ctx_menu li a {
    color: #f47820;
    text-decoration: none;
}

.dropdown-menu {
    background: linear-gradient(#444, #444);
}

.emesa-flag {
    width: 24px;
    cursor: pointer;
}


/*FILTERS*/

.filter-form {
    max-height: calc(100% - 80px);
    overflow: hidden;
}

.filter-form ul {
    list-style: none;
    padding: 10px;
    margin: 0px 0px 0px 0px;
    max-height: 200px;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-top: none;
    border-radius: .25rem;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.filter-form ul li {
    padding: 0px;
    margin: 0px;
    white-space: nowrap;
    vertical-align: middle;
    flex: auto;
}

.filter-form ul li label {
    margin: 0px;
    font-size: 12px;
    line-height: 25px;
}

.filter-form ul li.no-match {
    font-style: italic;
    color: #888;
    font-size: 12px;
    text-align: center;
}

/*SCROLL BARS*/

::-webkit-scrollbar {
    width: 7px;
    height: 7px;
    /*border-radius: 2px;*/
}

::-webkit-scrollbar-track {
    background: #FFF;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: #AAA;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #888;
}

.fixed-bottom {
    position: absolute;
    bottom: 0px;
    width: 100%;
}