/*
 * globals
 * */

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 40px;
}


/*
 * footer
 */

footer {
    background: #666;
    color: #333;
    padding: 10px;
    border-top: 1px solid #333;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40px;
}


/*
 * generic helpers
 */

.no-padding {
    padding: 0px !important;
}

.no-margin {
    margin: 0px !important;
}

.bg-primary {
    background-color: #5db96c;
}
.btn-primary {
    color: #fff;
    background-color: #5db96c;
    border-color: #5db96c;
}
.btn-primary:hover {
    background-color: #3d9a4d;
    border-color: #3d9a4d;
}

.panel-primary>.panel-heading {
    color: #fff;
    background-color: #5db96c;
    border-color: #5db96c;
}

.panel-primary {
    border-color: #5db96c;
}

a {
    color: #5db96c;
    text-decoration: none;
}
a:focus, a:hover {
    color: #3d9a4d;
}

.dropdown-menu>.active>a, .dropdown-menu>.active>a:focus, .dropdown-menu>.active>a:hover {
    background-color: #3d9a4d;
}

.bootstrap-dialog.type-primary .modal-header {
    background-color: #5db96c;
}
.dropdown-header{
    color: #5db96c;
    font-weight: bold;
}
.divider {
    background-color: #5db96c!important;
}