﻿body {
    margin-top: 55px;
    background-color: black;
}

input[type], select, textarea {
    border-color: #047523 !important;
    box-shadow: none !important;
}

    input[type]:focus, select:focus, textarea:focus {
        border-color: #047523 !important;
        box-shadow: none !important;
    }

    input[type]:active, select:active, textarea:active {
        border-color: #047523 !important;
        box-shadow: none !important;
    }

button, a {
    box-shadow: none !important;
}

hr {
    border-color: #043712;
}

.tablink a {
    color: #047523;
}

.accordionContentHeight {
    height: 300px;
}

#accordion .ui-accordion-content {
    padding: 0;
    background-color: black;
}

#accordion .ui-accordion-header.ui-state-active {
    background-color: #043712;
    border-color: #043712;
}

#accordion ul {
    list-style: none;
    list-style-type: none;
    padding: 0;
}

#accordion a {
    color: white;
    display: block;
    text-decoration: none;
    padding: 10px;
    border-bottom: 1px solid white;
}

    #accordion a:hover {
        background-color: #403d3d;
    }

    #accordion a.active {
        background-color: #403d3d;
        border-top: 1px solid white;
    }

.listView li:hover {
    background-color: silver;
    cursor: default;
}

#homeLink {
    list-style: none;
    list-style-type: none;
    padding: 0;
    margin-top: 2px;
    margin-bottom: 0;
}

    #homeLink a {
        color: white;
        display: block;
        text-decoration: none;
        padding: 10px;
        background-color: #043712;
    }

        #homeLink a:hover {
            background-color: #0a3e02;
        }

        #homeLink a.activeHome {
            background-color: #0a3e02;
        }

.roleTable th {
    color: white;
    background-color: black;
    text-align: center;
}

.dataTables_filter {
    display: none;
}

.tableUpload {
    height: 400px;
    overflow: auto;
}

td.details-control {
    background: url("../images/RowPlus.png") no-repeat center center;
    cursor: pointer;
}

tr.details td.details-control {
    background: url('../images/RowMinus.png') no-repeat center center;
}

.tableProcess {
    width: 100%;
    overflow: auto;
}

.select2-selection {
    border-color: #047523 !important;
    box-shadow: none !important;
}

.select2-container .select2-selection--single {
    height: calc(2.25rem + 2px) !important;
}

.bodyImage {
    background-image: url('../images/login2.jpg');
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.group {
    position: relative;
    margin: 45px 0;
}

.sidebar {
    margin: 0;
    padding: 0;
    width: 250px;
    background-color: black;
    position: fixed;
    height: 100%;
    overflow: auto;
}

    /*.sidebar a {
        display: block;
        color: black;
        padding: 16px;
        text-decoration: none;
    }

        .sidebar a.active {
            background-color: #403d3d;
            color: white;
        }

        .sidebar a:hover:not(.active) {
            background-color: #403d3d;
            color: white;
        }*/

div.content {
    margin-left: 250px;
    padding: 1px 16px;
    margin-top: 55px;
}

@media screen and (max-width: 768px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        margin-top: 55px;
    }

        .sidebar a {
            float: none;
        }

    div.content {
        margin-left: 0;
        margin-top: 5px;
    }
}

.modifiedTextbox {
    font-size: 18px;
    padding: 10px 10px 10px 5px;
    display: block;
    width: 300px;
    border: none;
    border-bottom: 1px solid #047523;
    background: none;
    color: #424242;
    border-radius: 0;
}

    .modifiedTextbox:focus {
        outline: none;
    }

.modifiedLabel {
    color: #047523;
    font-size: 14px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 10px;
    transition: 0.5s ease all;
    -moz-transition: 0.5s ease all;
    -webkit-transition: 0.5s ease all;
}

/* active state */
.modifiedTextbox:focus ~ .modifiedLabel, .modifiedTextbox:valid ~ .modifiedLabel {
    top: -14px;
    font-size: 12px;
    color: #047523;
}

.bar {
    position: relative;
    display: block;
    width: 300px;
}

    .bar:before, .bar:after {
        content: '';
        height: 2px;
        width: 0;
        bottom: 0px;
        position: absolute;
        background: #043712;
        transition: 0.9s ease all;
        -moz-transition: 0.9s ease all;
        -webkit-transition: 0.9s ease all;
        left: 0%;
    }

/*.bar:before {
        left: 50%;
    }

    .bar:after {
        right: 50%;
    }*/

/* active state */
.modifiedTextbox:focus ~ .bar:before, .modifiedTextbox:focus ~ .bar:after {
    width: 100%;
}

.highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}

/* active state */
.modifiedTextbox:focus ~ .highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    -moz-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
}

/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
    from {
        background: #043712;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@-moz-keyframes inputHighlighter {
    from {
        background: #043712;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@keyframes inputHighlighter {
    from {
        background: #043712;
    }

    to {
        width: 0;
        background: transparent;
    }
}

#app {
    padding: 20px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 40px 50px rgba(0,0,0,0.25);
    outline: none;
    font-size: 1em;
    top: 50%;
    left: 50%;
}

    #app input {
        outline: none;
        width: auto;
        border: 0;
        float: left;
        padding: 8px;
        background: none;
    }

    #app::before {
        content: '';
        display: table;
    }

    #app::after {
        content: '';
        display: table;
        clear: both;
    }


.tag {
    border-radius: 3px;
    background: #0a3e02;
    float: left;
    margin: 3px;
    padding: 4px;
    color: white;
    font-size: 1em;
    vertical-align: middle;
    box-shadow: 0px 1px 4px #c6c6c6, 0px 2px 17px #d1d1d1;
}

    .tag a {
        color: #c6c6c6;
        padding-right: 10px;
        padding-left: 5px;
        padding-top: 5px;
        padding-bottom: 5px;
        margin-right: 5px;
    }

    .tag span {
        padding-right: 10px;
        padding-left: 0px;
        padding-top: 5px;
        padding-bottom: 5px;
    }

.note {
    position: fixed;
    bottom: 10px;
    text-align: center;
    width: 100%;
}