html, body {
    margin: 0;
    height: 100%;
}

body {
    background: url("/xhubip/img/background.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

/* General */
.center {
    margin-left: auto;
    margin-right: auto;
}

.img-sm {
    width: 56px;
    height: 56px;
}

.no-margin {
    margin: 0;
}

.no-margin-top {
    margin-top: 0;
}

.margin-top {
    margin-top: 1em;
}

.margin-top-sm {
    margin-top: .5em;
}

.margin-bottom {
    margin-bottom: 1em;
}

.margin-bottom-sm {
    margin-bottom: .5em;
}

.margin-right {
    margin-right: 15px;
}

.margin-right-sm {
    margin-right: 5px;
}

.margin-left {
    margin-left: 15px;
}

.margin-left-sm {
    margin-left: 5px;
}

.border-top {
    border-top: 2px solid #ddd;
}

.border-bottom {
    border-bottom: 2px solid #ddd;
}

.text-center {
    text-align: center !important;
}

.tooltip {
    position: absolute;
}

.hidden-soft {
    display: none; /* class "hidden" sets display value to !important so it cannot be toggled */
}

.not-markable {
    -webkit-user-select: none; /* Chrome all / Safari all */
    -moz-user-select: none; /* Firefox all */
    -ms-user-select: none; /* IE 10+ */
    user-select: none; /* Likely future */
}

.pointer {
    cursor: pointer;
}

.no-pointer {
    cursor: default;
}

.no-click-trough {
    pointer-events: none;
}

.no-decoration {
    text-decoration: none !important;
}

.no-text-transform {
    text-transform: none !important;
}

.text-transparent {
    color: transparent;
}

.text-strikethrough {
    text-decoration: line-through;
}

.parent-font-size {
    font-size: inherit;
}

i.material-icons {
    vertical-align: middle;
}

.bold {
    font-weight: bold;
}

/* Navbar */
header, #main, footer {
    padding-left: 300px;
}

@media only screen and (max-width: 992px) {
    header, #main, footer {
        padding-left: 0;
    }
}

#slide-out blockquote {
    border-left-color: #bcaaa4;
}

/* Main content */
#main {
    background: rgba(250, 250, 250, .9);
    width: calc(100% - 300px);
    min-height: 100%;
    max-width: none;
    margin: 0 0 0 300px;
    padding: 2em;
}

.hover {
    color: #000;
    -webkit-transition: color ease-out 150ms;
    -moz-transition: color ease-out 150ms;
    -o-transition: color ease-out 150ms;
    transition: color ease-out 150ms;
}

.hover.red-custom:hover {
    color: #f44336;
}

.hover.green-custom:hover {
    color: #4caf50;
}

/* Pagination */
.pagination {
    text-align: center;
}

.pagination > li.active {
    background-color: #26a69a;
    color: white;
}

.pagination span {
    display: inline-block;
    font-size: 1.2rem;
    padding: 0 10px;
    line-height: 30px;
}

.pagination > li.disabled {
    color: #bdbdbd;
}

#modifiable-page-header {
    display: none;
}