﻿/* The customcheck */
.customcheck {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .customcheck input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 5px;
}

/* On mouse-over, add a grey background color */
.customcheck:hover input ~ .checkmark {
    background-color: #ccc;
}


.page-title {
    padding: 8px 12px 8px 0;
    display: block;
    position: relative;
}


.navbar-inverse {
    background-color: #eeeded;
    border-color: #eeeded;
}

.sidebar {
    background-color: #399ed0;
}

.navigation > li.active > a, .navigation > li.active > a:hover, .navigation > li.active > a:focus {
    background-color: #154790;
    color: #fff;
}

.navbar-brand > img {
    margin-top: -22px;
    margin-left: 30%;
    height: 64px;
}

.navbar-brand {
    width: 100%;
}