﻿:root {
    --main-color: #6a9a22;
}

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}



.ListButton {
    border-radius: 5px;
    padding: 10px;
    border: 1px solid lightgrey;
    -webkit-box-shadow: 0px 5px 10px 1px rgb(0 0 0 / 10%);
    box-shadow: 0px 5px 10px 1px rgb(0 0 0 / 10%);
    margin-bottom: 10px;
}

    .ListButton:hover {
        -webkit-box-shadow: 0px 5px 12px 1px rgb(0 0 0 / 15%);
        box-shadow: 0px 5px 12px 1px rgb(0 0 0 / 15%);
        cursor: pointer;
    }

.ListButtonActive {
    padding: 10px;
    border: 1px solid var(--main-color);
    -webkit-box-shadow: 0px 5px 10px 1px rgb(0 0 0 / 10%);
    box-shadow: 0px 5px 10px 1px rgb(0 0 0 / 10%);
    margin-bottom: 10px;
}

    .ListButtonActive:hover {
        -webkit-box-shadow: 0px 5px 12px 1px rgb(0 0 0 / 15%);
        box-shadow: 0px 5px 12px 1px rgb(0 0 0 / 15%);
        cursor: pointer;
    }

.ListButtonInnerTitle {
    font-weight: 600;
}

.ListButtonInnerSubTitle {
    font-size: 0.8em;
    color: grey;
}

.customContainer {
    margin-left: 3%;
    margin-right: 3%;
}

.customButton {
    background-color: white;
    border: 1px solid lightgrey;
    border-radius: 5px;
}

    .customButton:hover {
        -webkit-box-shadow: 0px 5px 10px 1px rgb(0 0 0 / 10%);
        box-shadow: 0px 5px 10px 1px rgb(0 0 0 / 10%);
    }

.customButtonImportant {
    background-color: white;
    border: 1px solid var(--main-color);
    border-radius: 5px;
}

    .customButtonImportant:hover {
        -webkit-box-shadow: 0px 5px 10px 1px rgb(0 0 0 / 10%);
        box-shadow: 0px 5px 10px 1px rgb(0 0 0 / 10%);
    }


#sidebar {
    min-width: 270px;
    max-width: 270px;
    background: var(--main-color);
    color: #fff;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    position: relative
}

    #sidebar .h6 {
        color: #fff
    }

    #sidebar.active {
        margin-left: -270px
    }

    #sidebar h1 {
        margin-bottom: 20px;
        font-weight: 700;
        font-size: 30px
    }

        #sidebar h1 .logo {
            color: #fff
        }

            #sidebar h1 .logo span {
                font-size: 14px;
                color: #44bef1;
                display: block
            }

    #sidebar ul.components {
        padding: 0
    }

    #sidebar ul li {
        font-size: 16px
    }

        #sidebar ul li > ul {
            margin-left: 10px
        }

            #sidebar ul li > ul li {
                font-size: 14px
            }

        #sidebar ul li a {
            padding: 8px 0;
            display: block;
            color: rgba(255,255,255,.6);
            border-bottom: 1px solid rgba(255,255,255,.1)
        }

            #sidebar ul li a span {
                color: #44bef1
            }

            #sidebar ul li a:hover {
                color: #fff
            }

        #sidebar ul li.active > a {
            background: 0 0;
            color: #fff
        }

@media(max-width:991.98px) {
    #sidebar {
        margin-left: -270px
    }

        #sidebar.active {
            margin-left: 0
        }
}

#sidebar .custom-menu {
    display: inline-block;
    position: absolute;
    top: 20px;
    right: 0;
    margin-right: -20px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

@media(prefers-reduced-motion:reduce) {
    #sidebar .custom-menu {
        -webkit-transition: none;
        -o-transition: none;
        transition: none
    }
}

#sidebar .custom-menu .btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: relative
}

    #sidebar .custom-menu .btn i {
        margin-right: -40px;
        font-size: 14px
    }

    #sidebar .custom-menu .btn.btn-primary {
        background: 0 0;
        border-color: transparent
    }

        #sidebar .custom-menu .btn.btn-primary:after {
            z-index: -1;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            content: '';
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg);
            background: var(--main-color);
            border-radius: 10px
        }

        #sidebar .custom-menu .btn.btn-primary:hover, #sidebar .custom-menu .btn.btn-primary:focus {
            background: 0 0 !important;
            border-color: transparent !important
        }


@media(max-width:991.98px) {
    #sidebarCollapse span {
        display: none
    }
}

#content {
    width: 100%;
    padding: 0;
    min-height: 100vh;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}



/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1031; /* Sit on top */
    left: 0;
    top: 0;
    padding: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: white;
    margin: 2% auto; /* 5% from the top and centered */
    padding: 20px;
    border: 0;
    width: 40%; /* Could be more or less, depending on screen size */
    -webkit-box-shadow: 5px 5px 20px 0px rgba(138,138,138,0.51);
    -moz-box-shadow: 5px 5px 20px 0px rgba(138,138,138,0.51);
    box-shadow: 5px 5px 20px 0px rgba(138,138,138,0.51);
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    width: 100%;
    text-align: right;
}

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

.closeHelp {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    width: 100%;
    text-align: right;
}

    .closeHelp:hover
    .closeHelp:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

.closeManagers {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    width: 100%;
    text-align: right;
}

    .closeManagers:hover,
    .closeManagers:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

/* 80% Modal Width on Smaller Screens */
@media only screen and (max-width: 1600px) {
    .modal-content {
        width: 45%;
    }
}

/* 95% Modal Width on Smaller Screens */
@media only screen and (max-width: 1000px) {
    .modal-content {
        width: 90%;
    }
}


input.apple-switch {
    cursor: pointer;
    position: relative;
    appearance: none;
    outline: none;
    width: 40px;
    height: 20px;
    background-color: #ffffff;
    border: 1px solid #D9DADC;
    border-radius: 50px;
    box-shadow: inset -20px 0 0 0 #ffffff;
    transition-duration: 200ms;
}

    input.apple-switch:after {
        content: "";
        position: absolute;
        top: 1px;
        left: 1px;
        width: 16px;
        height: 16px;
        background-color: transparent;
        border-radius: 50%;
        box-shadow: 2px 4px 6px rgba(0,0,0,0.2);
    }

    input.apple-switch:checked {
        border-color: #6ca51a;
        box-shadow: inset 20px 0 0 0 #699a23;
    }

        input.apple-switch:checked:after {
            left: 20px;
            box-shadow: -2px 4px 3px rgba(0,0,0,0.05);
        }

.innerTitle {
    font-weight: bold;
    font-size: 1.5em;
    background-image: linear-gradient(90deg, rgba(23,64,84,1) 0%, rgba(121,9,65,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.floater {
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}


    #taskDataTable thead th {
        border: none;
        color: #fff;
    }

    #taskDataTable tbody tr {
        margin-bottom: 10px;
        -webkit-box-shadow: 0 5px 12px -12px rgba(0,0,0,.29);
        -moz-box-shadow: 0 5px 12px -12px rgba(0,0,0,.29);
        box-shadow: 0 5px 12px -12px rgba(0,0,0,.29)
    }

    #taskDataTable tbody th, #taskDataTable tbody td {
        background: inherit;
        vertical-align: middle;
        padding: 0.1rem;
    }

        #taskDataTable tbody td .close span {
            font-size: 12px;
            color: #dc3545
        }


#taskDataTable tbody tr:nth-child(even) {
    background-color: #a6a4a40f;
}

#taskDataTable {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    border-collapse: collapse;
}

    #taskDataTable th, #taskDataTable td {
        padding: .75rem;
        vertical-align: top;
        border-top: 1px solid #dee2e6;
        border: 1px solid #8080809e;
    }


        #taskDataTable th::after {
            opacity: 0 !important;
        }

    #taskDataTable thead th {
        vertical-align: bottom;
    }

    #taskDataTable tbody + tbody {
        border-top: 2px solid #dee2e6
    }

    #taskDataTable tr:hover {
        color: #212529;
        background-color: rgba(0,0,0,.075) -webkit-box-shadow: 0 8px 12px -12px rgb(0 0 0 / 76%) !important;
        -moz-box-shadow: 0 5px 12px -12px rgba(0,0,0,.29);
        box-shadow: 0 8px 12px -12px rgb(0 0 0 / 76%) !important;
    }

    #taskDataTable thead th {
        color: #fff;
        background-color: var(--main-color);
    }

#taskDataTable {
    width: 100%;
    border-spacing: 0 0px;
    white-space: nowrap;
}

    #taskDataTable thead th {
        color: #fff;
        border: 1px solid #8080809e;
    }

    #taskDataTable tbody tr {
        margin-bottom: 10px;
        -webkit-box-shadow: 0 5px 12px -12px rgba(0,0,0,.29);
        -moz-box-shadow: 0 5px 12px -12px rgba(0,0,0,.29);
        box-shadow: 0 5px 12px -12px rgba(0,0,0,.29)
    }

    #taskDataTable tbody th, #taskDataTable tbody td {
        background: inherit
    }

        #taskDataTable tbody td .close span {
            font-size: 12px;
            color: #dc3545
        }


.successScore {
    font-weight: bold;
    font-size: 1.1em;
    background-image: linear-gradient(90deg, rgba(184,247,55,1) 0%, rgba(39,232,142,1) 100%) !important;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.failScore {
    font-weight: bold;
    font-size: 1.1em;
    background-image: linear-gradient(90deg, rgba(247,55,98,1) 0%, rgba(232,81,39,1) 100%) !important;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* The Modal (background) */
.Imodal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.Imodal-content {
    margin: auto;
    display: block;
    width: 80%;
}

/* Caption of Modal Image */
#Icaption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation */
.Imodal-content, #caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0)
    }

    to {
        -webkit-transform: scale(1)
    }
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* The Close Button */
.Iclose {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    width: 100%;
    text-align: right;
}

    .Iclose:hover,
    .Iclose:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }


.small_title {
    font-weight: bold;
    font-size: 1.3em;
}


.customIcon {
    margin-bottom: 10px;
    border: none;
    border-radius: 10px;
    color: grey;
    background-color: transparent;
    transition: background-color 1s;
}



    .customIcon:hover {
        background-color: var(--main-color);
        color: white;
    }

.customIconNoHover {
    margin-bottom: 10px;
    border: none;
    border-radius: 10px;
    color: grey;
    background-color: transparent;
}

    .customIconNoHover:hover {
        color: black;
    }


/* 
  You want a simple and fancy tooltip?
  Just copy all [data-tooltip] blocks:
*/
[data-tooltip] {
    position: relative;
    z-index: 10;
}

    /* Positioning and visibility settings of the tooltip */
    [data-tooltip]:before,
    [data-tooltip]:after {
        position: absolute;
        visibility: hidden;
        opacity: 0;
        left: 50%;
        bottom: calc(100% + 5px); /* 5px is the size of the arrow */
        pointer-events: none;
        transition: 0.2s;
        will-change: transform;
    }

    /* The actual tooltip with a dynamic width */
    [data-tooltip]:before {
        content: attr(data-tooltip);
        padding: 10px 18px;
        min-width: 50px;
        max-width: 300px;
        width: max-content;
        border-radius: 6px;
        font-size: 14px;
        background-color: rgba(59, 72, 80, 0.9);
        background-image: linear-gradient(30deg, rgba(59, 72, 80, 0.44), rgba(59, 68, 75, 0.44), rgba(60, 82, 88, 0.44));
        box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.2);
        color: #fff;
        text-align: center;
        white-space: pre-wrap;
        transform: translate(-50%, -5px) scale(0.5);
    }

    /* Tooltip arrow */
    [data-tooltip]:after {
        content: '';
        border-style: solid;
        border-width: 5px 5px 0px 5px; /* CSS triangle */
        border-color: rgba(55, 64, 70, 0.9) transparent transparent transparent;
        transition-duration: 0s; /* If the mouse leaves the element, 
                              the transition effects for the 
                              tooltip arrow are "turned off" */
        transform-origin: top; /* Orientation setting for the
                              slide-down effect */
        transform: translateX(-50%) scaleY(0);
    }

    /* Tooltip becomes visible at hover */
    [data-tooltip]:hover:before,
    [data-tooltip]:hover:after {
        visibility: visible;
        opacity: 1;
    }
    /* Scales from 0.5 to 1 -> grow effect */
    [data-tooltip]:hover:before {
        transition-delay: 0.3s;
        transform: translate(-50%, -5px) scale(1);
    }
    /* 
  Arrow slide down effect only on mouseenter (NOT on mouseleave)
*/
    [data-tooltip]:hover:after {
        transition-delay: 0.5s; /* Starting after the grow effect */
        transition-duration: 0.2s;
        transform: translateX(-50%) scaleY(1);
    }
/*
  That's it.
*/






/*
  If you want some adjustability
  here are some orientation settings you can use:
*/

/* LEFT */
/* Tooltip + arrow */
[data-tooltip-location="left"]:before,
[data-tooltip-location="left"]:after {
    left: auto;
    right: calc(100% + 5px);
    bottom: 50%;
}

/* Tooltip */
[data-tooltip-location="left"]:before {
    transform: translate(-5px, 50%) scale(0.5);
}

[data-tooltip-location="left"]:hover:before {
    transform: translate(-5px, 50%) scale(1);
}

/* Arrow */
[data-tooltip-location="left"]:after {
    border-width: 5px 0px 5px 5px;
    border-color: transparent transparent transparent rgba(55, 64, 70, 0.9);
    transform-origin: left;
    transform: translateY(50%) scaleX(0);
}

[data-tooltip-location="left"]:hover:after {
    transform: translateY(50%) scaleX(1);
}



/* RIGHT */
[data-tooltip-location="right"]:before,
[data-tooltip-location="right"]:after {
    left: calc(100% + 5px);
    bottom: 50%;
}

[data-tooltip-location="right"]:before {
    transform: translate(5px, 50%) scale(0.5);
}

[data-tooltip-location="right"]:hover:before {
    transform: translate(5px, 50%) scale(1);
}

[data-tooltip-location="right"]:after {
    border-width: 5px 5px 5px 0px;
    border-color: transparent rgba(55, 64, 70, 0.9) transparent transparent;
    transform-origin: right;
    transform: translateY(50%) scaleX(0);
}

[data-tooltip-location="right"]:hover:after {
    transform: translateY(50%) scaleX(1);
}



/* BOTTOM */
[data-tooltip-location="bottom"]:before,
[data-tooltip-location="bottom"]:after {
    top: calc(100% + 5px);
    bottom: auto;
}

[data-tooltip-location="bottom"]:before {
    transform: translate(-50%, 5px) scale(0.5);
}

[data-tooltip-location="bottom"]:hover:before {
    transform: translate(-50%, 5px) scale(1);
}

[data-tooltip-location="bottom"]:after {
    border-width: 0px 5px 5px 5px;
    border-color: transparent transparent rgba(55, 64, 70, 0.9) transparent;
    transform-origin: bottom;
}

.emailColumnDisplay {
    padding: 5px;
    width: 100%;
    display: inline-flex;
}




.taskDataTable {
    width: 100%;
    border-spacing: 0 5px;
    white-space: nowrap;
}

    .taskDataTable thead th {
        border: none;
        color: #fff;
    }

    .taskDataTable tbody tr {
        margin-bottom: 10px;
        -webkit-box-shadow: 0 5px 12px -12px rgba(0,0,0,.29);
        -moz-box-shadow: 0 5px 12px -12px rgba(0,0,0,.29);
        box-shadow: 0 5px 12px -12px rgba(0,0,0,.29)
    }

    .taskDataTable tbody th, .taskDataTable tbody td {
        border: none;
        background: #fff
    }

        .taskDataTable tbody td .close span {
            font-size: 12px;
            color: #dc3545
        }


.taskDataTable {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529
}

    .taskDataTable th, .taskDataTable td {
        padding: .75rem;
        vertical-align: top;
        border-top: 1px solid #dee2e6
    }


        .taskDataTable th::after {
            opacity: 0 !important;
        }

    .taskDataTable thead th {
        vertical-align: bottom;
    }

    .taskDataTable tbody + tbody {
        border-top: 2px solid #dee2e6
    }

    .taskDataTable tr:hover {
        color: #212529;
        background-color: rgba(0,0,0,.075) -webkit-box-shadow: 0 8px 12px -12px rgb(0 0 0 / 76%) !important;
        -moz-box-shadow: 0 5px 12px -12px rgba(0,0,0,.29);
        box-shadow: 0 8px 12px -12px rgb(0 0 0 / 76%) !important;
    }

    .taskDataTable thead th {
        color: #fff;
        background-color: var(--main-color);
    }

.taskDataTable {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 5px;
    white-space: nowrap;
}

    .taskDataTable thead th {
        border: none;
        color: #fff;
    }

    .taskDataTable tbody tr {
        margin-bottom: 10px;
        -webkit-box-shadow: 0 5px 12px -12px rgba(0,0,0,.29);
        -moz-box-shadow: 0 5px 12px -12px rgba(0,0,0,.29);
        box-shadow: 0 5px 12px -12px rgba(0,0,0,.29)
    }

    

        .taskDataTable tbody td .close span {
            font-size: 12px;
            color: #dc3545
        }


.form-label {
    margin-bottom: 0.2rem;
    margin-top: 0.5rem;
}

/* Info Button styles
-------------------------------------------------- */

.chat-bubble {
    position: absolute;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    min-width: 250px;
    max-width: 300px;
    display: none;
    z-index: 1000;
    border: 1px solid #ddd;
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.close-button {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.chat-content p {
    margin: 0;
    font-size: 14px;
}

.info-btn {
    opacity: 0.5; 
    position: relative;
    top: -7px;
    left: -7px;
}

.info-btn i {
    font-size: 0.8em; 
    color: inherit; 
}

.table {
  font-family: 'NRT Reg', sans-serif;
}
