﻿/*................................. Global Variables .................................*/
:root {
    /*.............. Main ..............*/
    --PrimaryBackgroundColor: #106b28;
    --PrimaryBackgroundColorHover: #40ab68;
    --PrimaryTextColor: white;
    --PrimaryTextColorHover: black;
    --PrimaryTextBackgroundColorHover: #808080;
    /*.............. specific variables (using the main variables) ..............*/
    --LoginBoxBackgroundColor: white;
    --LoginBoxHeaderBackgroundColor: var(--PrimaryBackgroundColor);
    --LoginBoxHeaderTextColor: var(--PrimaryTextColor);
    --loginBoxIconBackgroundColor: var(--PrimaryBackgroundColor);
    --loginBoxIconColor: var(--PrimaryTextColor);
    --loginBoxIconBorderColor: var(--PrimaryBackgroundColor);
    --LoginButtonBackgroundColor: var(--PrimaryBackgroundColor);
    --LoginButtonTextColor: var(--PrimaryTextColor);
    --LoginButtonBackgroundColorHover: var(--PrimaryBackgroundColorHover);
    --LoginButtonTextColorHover: var(--PrimaryTextColorHover);
}


/*................................................. Root Container .............................................. */
.root-container {
    margin-bottom: 20px;
}

/*................................................. Line-Space classes .............................................. */
.line-space-5 {
    margin-top: 5px;
}

.line-space-10 {
    margin-top: 10px;
}

.line-space-15 {
    margin-top: 15px;
}

.line-space-20 {
    margin-top: 20px;
}

.line-space-25 {
    margin-top: 25px;
}

.line-space-30 {
    margin-top: 30px;
}

.line-space-45 {
    margin-top: 45px;
}

.line-space-50 {
    margin-top: 50px;
}

.line-space-70 {
    margin-top: 70px;
}


/*................................................. Column classes .............................................. */
.column-space {
    margin-left: 10px !important;
}

.column-space-15 {
    margin-left: 15px;
}

.column-space-20 {
    margin-left: 20px;
}

.column-space-30 {
    margin-left: 30px;
}

.column-space-60 {
    margin-left: 60px;
}


/*................................................. Image Cropping classes .............................................. */
.crop-area {
    background: #E4E4E4;
    overflow: hidden;
    width: 500px;
    height: 350px;
}

.user-final-photo {
    width: 300px;
    height: 300px;
    border: dashed;
    border-color: black;
}


/*................................................. Image Visualization classes .............................................. */
.user-visualization-photo {
    width: 150px;
    height: 150px;
}


/*........................................................ Table classes ..................................................... */
table tbody tr td {
    vertical-align: middle !important;
}

.active-table-row {
    color: green;
}

.unactive-table-row {
    color: red;
    background-color: lightgray !important;
}


.today-table-row {
    color: darkblue;
    font-weight: bold;
    background-color: lightsteelblue !important;
}

.historical-table-row {
    background-color: lightgray !important;
    opacity: 0.8;
}

.future-table-row {
    color: green;
    font-weight: bold;
}

.sub-label {
    font-style: italic;
    font-size: 12px;
}

/*................................................. Login classes .............................................. */
.login-logo-size {
    height: 200px;
}

.login-logo-place {
    margin-top: 1%;
}

.login-box-place {
    margin-top: 3%;
}

.login-box {
    background-color: var(--LoginBoxBackgroundColor);
    height: 270px;
}

.login-box-header {
    background-color: var(--LoginBoxHeaderBackgroundColor);
    color: var(--LoginBoxHeaderTextColor);
}

.login-box-icon {
    color: var(--loginBoxIconColor);
    background-color: var(--loginBoxIconBackgroundColor);
    border-color: var(--loginBoxIconBorderColor);
}

.login-box-input {
    border-color: var(--loginBoxIconBorderColor);
}


/*................................................. Primary Button .............................................. */
.btn-primary {
    background-image: linear-gradient(to bottom,var(--PrimaryBackgroundColor) 0, var(--PrimaryBackgroundColorHover) 100%);
    border-color: var(--PrimaryBackgroundColor);
}

    .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary {
        background-color: var(--PrimaryBackgroundColorHover);
        border-color: var(--PrimaryBackgroundColor);
    }

    .btn-primary:active, .btn-primary.active {
        background-color: var(--PrimaryBackgroundColorHover);
        border-color: var(--PrimaryBackgroundColor);
        box-shadow: none;
    }


/*................................................. Other classes .............................................. */
.error-message {
    color: #a94442;
    font-weight: bold;
}

.small-text-box {
    padding: 3px 6px;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -moz-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.small-text-box-variation {
    height: 28px;
    width: 25%;
    vertical-align: middle;
    padding: 6px 12px;
    font-size: 14px;
    color: #555;
    border-radius: 4px;
    border: solid 1px #ccc;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -moz-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.clickable-area {
    cursor: pointer;
}

.font-primary-color {
    color: var(--PrimaryBackgroundColor);
}

.navbar-languages {
    background-color: #FFFFFF;
    color: #000000;
    border-radius: 0;
    z-index: 1000;
}

    .navbar-languages li {
        padding-left: 5px;
        padding-top: 3px;
        cursor: pointer;
    }

.supplier-impeded {
    background-color: #F0E68C !important;
}

.list-left {
    float: left;
    margin-right: 10px;
}

.modal-content .long-text {
    word-wrap: break-word;
}

.column-checkbox {
    width: 5%;
}

.language-buttons {
    border: solid 2px;
    border-radius: 2px;
    border-color: #e9e9e9;
    background-color: #f5f5f5;
    cursor: pointer;
    border-color: #bdbebd;
    background-color: #d3d3d3;
    padding: 5px 10px;
}

.language-button-selected {
    border-color: #00aa00;
    background-color: #00ff00;
}

.contextMenu {
    position: absolute;
    background-color: #ffffff;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border: 1px #999 solid;
    width: 220px;
    margin-left: 25px;
    z-index: 1000;
}

    .contextMenu:focus {
        outline: none;
    }

    .contextMenu ul {
        list-style: none;
        margin-bottom: 0px;
        padding-left: 0px;
        text-align: left;
    }

        .contextMenu ul li {
            padding: 4px 8px 4px 4px;
            border-bottom: 1px dotted #CFCFCF;
        }

            .contextMenu ul li:last-child {
                padding: 4px 8px 4px 4px;
                border-bottom: none;
            }

            .contextMenu ul li a {
                cursor: pointer;
                padding-left: 5px;
                padding-right: 5px;
            }

.display-inline {
    display: inline-block;
    float: none;
}

/*---------------------------------dashboard cards----------------------------------*/
.cards-dashboard {
    height: 100%;
    border: solid 1px;
    border-radius: 2px;
    cursor: pointer;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

.card-activity-pending {
    background-color: #ff8c8c;
    border-color: #ff6666 !important;
}

.button-activity-pending {
    background-color: #ff8c8c;
    border-color: #ff6666 !important;
    float: right;
    font-size: 2em;
}

.card-activity-to-do {
    background-color: #fffc73;
    border-color: #ffe200 !important;
}

.button-activity-to-do {
    background-color: #fffc73;
    border-color: #ffe200 !important;
    float: right;
    font-size: 2em;
}

.card-enviroment-concurrent {
    background-color: #abfa81;
    border-color: #6cdc51 !important;
}

.button-enviroment-concurrent {
    background-color: #abfa81 !important;
    border-color: #6cdc51 !important;
    float: right !important;
    font-size: 25px !important;
}

.card-scheduled-interviews {
    background-color: #00BFFF;
    border-color: #1E90FF !important;
}

.button-scheduled-interviews {
    background-color: #00BFFF;
    border-color: #1E90FF !important;
    float: right;
    font-size: 2em;
}

.card-name {
    font-size: 20px;
    margin-top: 5px;
    margin-left: 5px;
    margin-right: 5px;
}

.date-activity-type {
    font-size: 14px;
    margin-left: 5px;
    margin-right: 5px;
}

.external-box-dashboard {
    border: 1px solid #ddd;
    height: 100%;
    padding: 10px;
    width: 100%;
}

.dashboard-notification {
    border: solid 1px;
    width: 23px;
    height: 23px;
    border-ra .dius: 100%;
    font-weight: bold;
    font-size: 15px;
    text-align: center;
}

.pagination-position .pagination {
}

.pagination-position {
    margin: 0px !important;
    float: right;
}

    .pagination-position > li > a {
        height: 20px;
        width: 20px;
    }

.pagination-small .pagination-sm {
}

.pagination-small > li > a {
    padding: 0px 5px;
    font-size: 14px;
    line-height: 1.5;
}

.title-group-card {
    font-size: 17px;
    margin-left: -15px !important;
}

/*-----------------------------------------------------------------------------------*/

.person-avatar {
    font-size: 34px;
    width: 40px;
    height: 40px;
    text-align: center;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 6px;
    background-color: #C9C9C9;
    color: #116c29;
    margin: auto;
}

.user-form-photo {
    width: 70px;
    height: 70px;
    margin-left: 5px;
    margin-right: 5px;
}

.padding-bottom-specific {
    padding-bottom: 150px;
}

.buttonVisibleColumn {
    width: 100%;
}

.multiselect-full-width .multiselect-parent {
    width: 100%;
}

    .multiselect-full-width .multiselect-parent ul {
        width: 100%;
    }

/*---------------------------------switch button----------------------------------*/
.switch {
    font-size: 1rem;
    position: relative;
}

    .switch input {
        position: absolute;
        height: 1px;
        width: 1px;
        background: none;
        border: 0;
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        overflow: hidden;
        padding: 0;
    }

        .switch input + label {
            position: relative;
            min-width: calc(calc(2.375rem * .8) * 2);
            border-radius: calc(2.375rem * .8);
            height: calc(2.375rem * .8);
            line-height: calc(2.375rem * .8);
            display: inline-block;
            cursor: pointer;
            outline: none;
            user-select: none;
            vertical-align: middle;
            text-indent: calc(calc(calc(2.375rem * .8) * 2) + .5rem);
        }

            .switch input + label::before,
            .switch input + label::after {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: calc(calc(2.375rem * .8) * 2);
                bottom: 0;
                display: block;
            }

            .switch input + label::before {
                right: 0;
                background-color: #cb3e3a;
                border-radius: calc(2.375rem * .8);
                transition: 0.2s all;
            }

            .switch input + label::after {
                top: 2px;
                left: 2px;
                width: calc(calc(2.375rem * .8) - calc(2px * 2));
                height: calc(calc(2.375rem * .8) - calc(2px * 2));
                border-radius: 50%;
                background-color: white;
                transition: 0.2s all;
            }

        .switch input:checked + label::before {
            background-color: #21b827;
        }

        .switch input:checked + label::after {
            margin-left: calc(2.375rem * .8);
        }

        .switch input:focus + label::before {
            outline: none;
            box-shadow: 0 0 0 0.2rem rgba(0, 136, 221, 0.25);
        }

        .switch input:disabled + label {
            color: #868e96;
            cursor: not-allowed;
        }

            .switch input:disabled + label::before {
                background-color: #e9ecef;
            }

    .switch.switch-sm {
        font-size: 0.875rem;
    }

        .switch.switch-sm input + label {
            min-width: calc(calc(1.9375rem * .8) * 2);
            height: calc(1.9375rem * .8);
            line-height: calc(1.9375rem * .8);
            text-indent: calc(calc(calc(1.9375rem * .8) * 2) + .5rem);
        }

            .switch.switch-sm input + label::before {
                width: calc(calc(1.9375rem * .8) * 2);
            }

            .switch.switch-sm input + label::after {
                width: calc(calc(1.9375rem * .8) - calc(2px * 2));
                height: calc(calc(1.9375rem * .8) - calc(2px * 2));
            }

        .switch.switch-sm input:checked + label::after {
            margin-left: calc(1.9375rem * .8);
        }

    .switch.switch-lg {
        font-size: 1.25rem;
    }

        .switch.switch-lg input + label {
            min-width: calc(calc(3rem * .8) * 2);
            height: calc(3rem * .8);
            line-height: calc(3rem * .8);
            text-indent: calc(calc(calc(3rem * .8) * 2) + .5rem);
        }

            .switch.switch-lg input + label::before {
                width: calc(calc(3rem * .8) * 2);
            }

            .switch.switch-lg input + label::after {
                width: calc(calc(3rem * .8) - calc(2px * 2));
                height: calc(calc(3rem * .8) - calc(2px * 2));
            }

        .switch.switch-lg input:checked + label::after {
            margin-left: calc(3rem * .8);
        }

    .switch + .switch {
        margin-left: 1rem;
    }
/*--------------------------------------------------------------------------------*/

.row-form {
    display: flex;
}

    .row-form .align-self-end {
        align-self: flex-end;
        -webkit-align-self: flex-end;
    }

.informative-input {
    font-size: 12px;
    font-style: italic;
    margin-top: -10px !important;
}

.sinalization-button {
    background-color: #fffc73;
    border-color: #ffe200 !important;
    float: right;
}

.icon-size-18 {
    font-size: 18px;
}

.font-size-14 {
    font-size: 14px;
}

.section {
    background-color: var(--PrimaryBackgroundColor);
    font-size: 17px;
    color: #fff;
    padding-left: 5px;
    margin-top: 20px;
}

.permissions-list {
    font-size: 17px;
    font-weight: 700;
    padding-top: 4px;
    border-bottom: 1px solid !important;
    border-bottom-color: #c2c2c2 !important;
}

/*------------------------------------------------- Classes Customizadas - Menu Lateral Esquerdo ------------------------------------------------------------------------------*/

.menubar {
    width: 245px !important; /*aumenta a largura do menubar*/
}

.panel-group .panel-heading + .panel-collapse > .list-group, .panel-group .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #106B28 !important; /*muda a cor da borda dos subtítulos do menu**/
}

.panel-title > a {
    text-decoration: none !important; /*mascara o link dos títulos do menu*/
    cursor: default !important;
    font-weight: bold !important; /*títulos do menu em negrito*/
}

.panel-body {
    padding: 0 !important; /*exlui o padding esquerdo dos subtítulos do menu*/
}

.nav > li > a {
    padding: 7px 2px 4px 37px !important; /*melhora o espaçamento dos subtítulos do menu*/
}
    /*------------------------------------Classe Customizada - Login-----------------------------------------------*/
    .panel-body-customized {
    padding: 15px;
}
/*--------------------------------------------------------------------------------------------------------------*/