﻿body {
    font-family: 'aktiv-grotesk', sans-serif;
}

.navbar {
    background-color: #1c1c1c !important;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.7rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }
}

.btn--stretch {
    display: inline-block;
}

@media (max-width: 768px) {
    .btn--stretch {
        display: block;
    }
}

.jumbotron {
    background: url(/images/background.png) no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

    .jumbotron::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(20,20,20,0.8);
        z-index: 1;
    }

.jumbotron-container > * {
    z-index: 100;
    color: #fff;
    position: relative;
}

@media (max-width: 768px) {
    .jumbotron-container h1 {
        font-size: 3rem;
    }

    .jumbotron-container p {
        font-size: 1rem;
    }
}

nav[data-toggle=toc] .nav-link.active,
nav[data-toggle=toc] .nav-link.active:focus,
nav[data-toggle=toc] .nav-link.active:hover {
    color: #1c1c1c !important;
    border-left: 2px solid #fdd800 !important;
}

nav[data-toggle=toc] .nav > li > a:hover {
    color: #1c1c1c !important;
    border-left: 1px solid #fdd800 !important;
}

.form-control-display-only {
    border: 0;
    font-weight: bold;
    padding-left: 0px;
}

.form-label {
    font-weight: bold;
}

.permissions-checkbox {
    margin-right: 1rem;
}

.row-bottom-buffer {
    margin-bottom: 0.5rem;
}

/* Customize the label (the container) */
.cb-container {
    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 */
    .cb-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.cb-container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.cb-container input:checked ~ .checkmark {
    background-color: #2196F3;
}

.cb-container input:disabled ~ .checkmark {
    background-color: lightgrey;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.cb-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.cb-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.checkbox-table .checkbox-column {
    padding-top: 0.5em;
}

.multiselect__clear {
    position: absolute;
    right: 41px;
    height: 40px;
    width: 40px;
    display: block;
    cursor: pointer;
    z-index: 2;
}

    .multiselect__clear::before {
        transform: rotate(45deg);
    }

    .multiselect__clear::after {
        transform: rotate(-45deg);
    }

    .multiselect__clear::after, .multiselect__clear::before {
        content: "";
        display: block;
        position: absolute;
        width: 3px;
        height: 16px;
        background: #aaa;
        top: 12px;
        right: 4px;
    }

.custom__tag {
    display: inline-block;
    padding: 3px 12px;
    background: #d2d7ff;
    margin-right: 8px;
    margin-bottom: 8px;
    border-radius: 10px;
    cursor: pointer;
}

    .custom__tag:nth-child(2n) {
        background: #daffee;
    }