﻿/* The container */

.container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */

    .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 */

.container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */

.container input:checked ~ .checkmark {
    background-color: #1e9800;
}

.container-supp input:checked ~ .checkmark {
    background-color: #2196F3 !important;
}

/* Create the checkmark/indicator (hidden when not checked) */

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */

.container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */

.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);
}

.btn-theme {
    background-color: #1e9800 /*#2196F3*/;
    color: white;
}

.btn-theme-success {
    background-color: #0e4500;
    color:white;
}

.btn-theme-supp {
    background-color: #2196F3;
    color: white;
}

.btn-threats {
    
    color: #ff9900;
    border-color: #ff9900;
    font-size:12px;
    margin-top: 10px;
}

.border-white {
    border-width: 3px !important;
}

.bg-balck {
    background-color: #000000;
}


/* -- ENHANCED CHECKLIST -- */


.fullwidth {
    width: 100% !important;
}

.translucent {
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(5px);
}

.text-dim {
    opacity: 0.7;
}

.btn-transparent {
    background: #ffffff00 !important;
}

.btn-nav {
    padding: 0px !important;
}

.btn-sm-narrow {
    font-size: 0.8rem;
    padding: 0.25rem !important;
    transition:none !important;
}

.btn-cl-normal {
    background: #ddd;
    color: #28a745;
    border-color: #28a745;
}

.btn-cl-abnormal {
    color: #dc3545;
    border-color: #dc3545;
}

.btn-cl-supp {
    color: #17a2b8;
    border-color: #17a2b8;
}

.btn-reset {
    color: #ff9900aa !important;
    border-color: #ff9900aa !important;
}

.btn-cl:hover {
    background-color:#dddddd55;
}

.btn-dim {
    color: #fff;
    background-color: #33333366;
}

.bottom-nav {
    padding: 5px;
    position: fixed;
    bottom: 0px;
    width: 100%;
    background-color: #ffffff11;
    border-radius: 5px 5px 0 0;
}

.bottom-nav-container {
    margin-bottom: 8px;
}

.btn-bottom-text {
    color: #999;
}

.btn-lightborder {
    border:#33333355 1px solid !important;
}

.btn-left {
    margin-right: -5px !important;
    border-right: 0 !important;
    border-radius: 4px 0 0 4px;
}

.btn-right {
    margin-left: 0px !important;
    border-left: 0 !important;
    border-radius: 0 4px 4px 0;
}


.btn-warning-list {
    color:white;
    background-color: darkslategray;
}

.proc-runway {
    border-radius:5px;
    display:inline-flex;
    padding:3px;
    background-color:#eee;
    margin-top:5px;
    font-weight:bold;
    color:#333 !important;

}

.proc-type {
    border-radius: 5px;
    display: inline-flex;
    padding: 3px;
    background-color: #eee;
    color: #333 !important;
}

.proc-detail {
    display:inline-flex;
    width:100%;
    padding:3px;
    margin-top:3px;
    border-radius:5px;
    border:#999 1px solid;
    font-size: 0.9rem;
}

.trigger{
    margin-top:1em;
    font-size:0.7em;
    margin-bottom:2px;
    opacity: 0.5;
}

.triggerh{
    opacity:0.4 !important;
}


/* BRIEFING */
.brief {
    width: 80%;
    border: #ddd 1px solid;
    border-radius: 5px;
    margin-top: 5px;
    padding: 5px;
    font-size: 0.8rem;
}

    .brief ul {
        list-style-type: circle;
    }


.brief-header {
    background-color: #dddddd99;
    border-radius: 5px;
    text-align: center;
    font-size: 1rem;
}

.brief-body-center {
    text-align:center;
    padding-top:7px;
}

.brief-bottom {
    clear: both;
    margin-bottom: 5px;
}

.brief-pf {
    float: left;
    clear: both;
}

.brief-pm {
    float: right;
    clear: right;
}

.brief-both {
    width: 100% !important;
    float:left;
}

.brief-threats {
    border: #ff990036 1px solid;
    border-radius: 0.25rem;
    margin-top: 5px;
    padding:4px;
}
    .brief-threats ul {
        list-style-type: none;
        list-style-position:outside;
    }

    .brief-threats ul li::before {
        content: "\25FB"; /* Add content: \2022 is the CSS Code/unicode for a bullet */
        color: #33333377; /* Change the color */
        font-weight: bold; /* If you want it to be bold */
        display: inline-block; /* Needed to add space between the bullet and the text */
        width: 1.5em; /* Also needed for space (tweak if needed) */
        margin-left: -1.2em; /* Also needed for space (tweak if needed) */
    }
