/*#region theme-colors*/
:root {
    --theme-color: #048b0a;
}

.text-theme {
    color: var(--theme-color);
}

.bg-theme {
    background-color: var(--theme-color);
}
/*#endregion theme-colors*/

/*#region theme*/
body {
    background-color: #F4F3F5;
    color: var(--theme-black-text-color);
}

input[type=checkbox] {
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
    padding: 10px;
}

input[type=radio] {
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
    padding: 10px;
}

input[type=date]::-webkit-datetime-edit {
    margin-left: 30px;
}
input[type=date]::-webkit-calendar-picker-indicator {
    width: 20px;
    height: 20px;
    position: absolute;
    cursor: pointer;
}

input[type=time]::-webkit-datetime-edit {
    margin-left: 30px;
}

input[type=time]::-webkit-calendar-picker-indicator {
    width: 20px;
    height: 20px;
    position: absolute;
    cursor: pointer;
    margin-left: 0px;
}

input[type=datetime-local]::-webkit-datetime-edit {
    margin-left: 30px;
}
input[type=datetime-local]::-webkit-calendar-picker-indicator {
    width: 20px;
    height: 20px;
    position: absolute;
    cursor: pointer;
}

.table td, .table th{
    vertical-align:middle;
}

.form-check-label {
    margin-left: 5px;
}

.form-check {
    padding-left: 0.2rem !important;
    margin-top: 1.5rem;
}

.form-header {
    font-size: 22px;
    color: #372f29;
    font-weight: 600;
}

.card {
    border-radius: 0.25rem;
    border:none;
}

.card-container {
    /*box-shadow: 0px 0px 10px #00000040*/
}
    .card-container .card-header {
        background-color: #ffffff;
        border-bottom: none;
        min-height: 70px;
        align-items: center;
        display: flex;
        margin-bottom: 1.25rem;
        border-radius: 0.25rem;
    }
.card-footer {
    border: none;
    padding-top: 2rem;
    background-color: #ffffff;
}

label[for] {
    font-weight: bold;
}

.btn-outline-dark:hover {
    color: #ffffff !important;
}

[role=tablist] {
    padding: 1.5rem 0rem 0.5rem 1.25rem;
}

    [role=tablist] .nav-item {
        padding-right: 15px;
        padding-bottom: 10px;
        min-width: 150px;
        text-align: center;
    }

        [role=tablist] .nav-item a {
            color: #343a40;
            background-color: #efefef;
            border-radius: 10rem !important;
        }

        [role=tablist] .nav-item .active {
            background-color: #656565 !important;
        }
/*#endregion theme*/

/*#region validation*/
.field-validation-error {
    background-color: #f13030;
    color: #ffffff;
    padding: 3px 7px 3px 7px;
    font-size: 12px;
    border-radius: 4px;
    float: right;
    margin-top: -28px;
    margin-right: 5px;
}

[data-val-required] {
    background-image: url(../../../img/required-icon.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) center;
    background-size: 10px;
}

.validation-summary-errors {
    border: none !important;
    color: #ffffff;
    background-color: #ec3744;
    margin-top: 10px;
    border-radius: 3px;
    padding: 5px;
}
    .validation-summary-errors > ul {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
/*#endregion validation*/

/*#region browser*/
::-webkit-scrollbar {
    display: none;
}

::placeholder {
    color: #919aa3 !important;
}

::-webkit-input-placeholder {
    color: #919aa3 !important;
}

::-moz-placeholder {
    color: #919aa3 !important;
}

:-ms-input-placeholder {
    color: #919aa3 !important;
}
/*#endregion browser*/

/*#region modal*/
.modal-content {
    border-radius: 0;
    box-shadow: 0px 0px 25px 10px #56565680;
}

.modal-header {
    color: #ffffff;
    background-color: #343a40;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
}

.modal-close {
    cursor: pointer;
    font-size: 25px;
}
    .modal-close:hover {
        opacity: 0.7;
    }

.modal-backdrop.show {
    opacity: 0.85;
}

.modal-content {
    border: none;
}
/*#endregion modal*/

/*#region tooltip*/
[data-tip] {
    position: relative;
}

    [data-tip]:before {
        content: '';
        display: none;
        content: '';
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-bottom: 5px solid #1a1a1a;
        position: absolute;
        top: 30px;
        right: 10px;
        z-index: 8;
        font-size: 0;
        line-height: 0;
        width: 0;
        height: 0;
    }
    [data-tip]:after {
        display: none;
        content: attr(data-tip);
        position: absolute;
        top: 35px;
        right: 0px;
        padding: 6px;
        background: #1a1a1a;
        color: #fff;
        z-index: 9;
        font-size: 0.75em;
        height: 18px;
        line-height: 5px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        white-space: nowrap;
        word-wrap: normal;
    }

    [data-tip]:hover:before,
    [data-tip]:hover:after {
        display: block;
    }

input[data-tip]:hover:before{
    display:none;
}
input[data-tip]:hover:after {
    top: 5px;
    right: 5px;
}
/*#endregion tooltip*/

/*#region sweetalert2*/
.swal2-backdrop-show {
    background-color: #000000cc !important;
}
/*#endregion sweetalert2*/

/*#region datatables*/
.table th {
    border-top: none !important;
    border-bottom: 1px solid #dee2e6 !important;
}

.table-hover tbody tr:hover {
    background-color: #f7f7f7;
}

.datatable-filter .modal-header {
    color: #ffffff;
    border: none;
    border-radius: 0;
}

.datatable-filter .modal-dialog {
    position: fixed;
    margin: 0 auto;
    width: 35%;
    height: 100%;
    right: 0px;
    max-width: none;
}

.datatable-filter-backdrop {
    opacity: 0.8 !important;
}

.datatable-filter .modal-content {
    height: 100%;
    overflow-y:scroll;
    border: none;
    box-shadow: 0px 8px 21px 7px rgb(0 0 0 / 50%) !important;
}

.datatable-filter .modal-footer {
    display: initial !important;
    text-align: right;
    padding-right: 2rem;
}

.card-container .card-header .search-container {
    width: 25%;
    display: flex;
    align-items: center;
    position: relative;
    margin-right: 0.5rem;
    float: right;
}

    .card-container .card-header .search-container .search-text-button {
        right: 0rem;
        position: absolute;
        cursor: pointer;
        background-color: #f2f2f2;
        border-radius: 0rem .25rem .25rem 0rem;
        width: 2.5rem;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid #ced4da;
        border-left: none;
    }

        .card-container .card-header .search-container .search-text-button:hover {
            background-color: #ebeaea;
        }

        .card-container .card-header .search-container .search-text-button i {
            color: #969696;
        }

.datatable-total-count {
    position: absolute;
    padding: .5rem;
    border-radius: 100px;
    background-color: #e7f8e8;
    color: #048b0a;
    font-weight: 600;
    font-size: .7rem;
    margin-left: 8px;
    margin-top: 7px;
}

.datatable-contact-info {
    color: #212529;
    text-decoration: none !important;
    white-space: nowrap;
}

.datatable-statu {
    padding: .35rem;
    font-weight: 600;
    font-size: .8rem;
    border-radius: 1rem;
    width: 5rem;
    display: block;
    text-align: center;
}
    .datatable-statu[active] {
        color: #0075ff;
        background-color: #e6f6fc;
    }
    .datatable-statu[passive] {
        color: #21253d;
        background-color: #f0f0f0;
    }

.dataTables_empty {
    background-color: #fffefe;
    padding: 10rem !important;
    font-size: 2.5rem;
    color: #d3d5d5;
    font-weight: 200;
}

div.dataTables_wrapper div.dataTables_processing {
    background-color: #f5f5f5;
    box-shadow: 0 1px 10px 0 #aca8a86e;
    border: none;
}

.pagination {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
}

.page-link {
    color: #343a40;
}

.page-item.active .page-link {
    background-color: var(--theme-color);
}

div.dataTables_wrapper div.dataTables_paginate {
    text-align: center !important;
}

.btn-demand-statu:hover {
    opacity: 0.7;
}

@media only screen and (max-width: 700px) {
    .datatable-filter .modal-dialog {
        position: fixed;
        margin: 0 auto;
        width: 100%;
        height: 100%;
        right: 0px;
        max-width: none;
    }
}
/*#endregion datatables*/

/*#region variables*/
.cursor-default {
    cursor: default;
}

.cursor-pointer {
    cursor: pointer;
}

.text-underline {
    text-decoration: underline;
}

.no-wrap {
    white-space: nowrap !important;
}

.v-center-content {
    justify-content: flex-start;
    align-items: center;
}

.border-0 {
    border:none !important;
}

.line-h-inherit {
    line-height: inherit;
}

.overflow-auto {
    overflow: auto !important;
}

.opacity-01 {
    opacity: 0.1 !important;
}

.opacity-02 {
    opacity: 0.2 !important;
}

.opacity-03 {
    opacity: 0.3 !important;
}

.opacity-04 {
    opacity: 0.4 !important;
}

.opacity-05 {
    opacity: 0.5 !important;
}

.opacity-06 {
    opacity: 0.6 !important;
}

.opacity-07 {
    opacity: 0.7 !important;
}

.opacity-08 {
    opacity: 0.7 !important;
}

.opacity-09 {
    opacity: 0.9 !important;
}

.opacity-1 {
    opacity: 1 !important;
}

.b-radius0 {
    border-radius: 0rem !important;
}

.b-radius01 {
    border-radius: 0.1rem !important;
}

.b-radius02 {
    border-radius: 0.2rem !important;
}

.b-radius03 {
    border-radius: 0.3rem !important;
}

.b-radius04 {
    border-radius: 0.4rem !important;
}

.b-radius05 {
    border-radius: 0.5rem !important;
}

.b-radius1 {
    border-radius: 1rem !important;
}

.b-radius2 {
    border-radius: 2rem !important;
}

.b-radius3 {
    border-radius: 3rem !important;
}

.b-radius4 {
    border-radius: 4rem !important;
}

.b-radius5 {
    border-radius: 5rem !important;
}

.b-radius6 {
    border-radius: 6rem !important;
}

.b-radius7 {
    border-radius: 7rem !important;
}

.b-radius8 {
    border-radius: 8rem !important;
}

.b-radius9 {
    border-radius: 9rem !important;
}

.b-radius10 {
    border-radius: 10rem !important;
}

.z-index1 {
    z-index: 1 !important;
}

.z-index10 {
    z-index: 10;
}

.z-index100 {
    z-index: 100;
}

.z-index1000 {
    z-index: 1000;
}

.z-index10000 {
    z-index: 10000;
}

.z-index100000 {
    z-index: 100000;
}

.z-index1000000 {
    z-index: 1000000;
}

.font-size07 {
    font-size: 0.7rem !important;
}

.font-size08 {
    font-size: 0.8rem !important;
}

.font-size9 {
    font-size: 0.9rem !important;
}

.font-size1 {
    font-size: 1rem !important;
}

.font-size1_1 {
    font-size: 1.1rem !important;
}

.font-size1_2 {
    font-size: 1.2rem !important;
}

.font-size1_3 {
    font-size: 1.3rem !important;
}

.font-size1_4 {
    font-size: 1.4rem !important;
}

.font-size1_5 {
    font-size: 1.5rem !important;
}

.font-weight-100 {
    font-weight: 100;
}

.font-weight-200 {
    font-weight: 200;
}

.font-weight-400 {
    font-weight: 400;
}

.font-weight-600 {
    font-weight: 600;
}

.font-weight-800 {
    font-weight: 800;
}

.w-0 {
    width:0px !important;
}
/*#endregion variables*/

/*#region report*/
.report-header-items {
    display: initial;
}
    .report-header-items #datatable-search {
        width: 25%;
        float:right;
        margin-right:0.5rem;
    }

@media only screen and (max-width: 700px) {
    .report-header-items {
        display: flow-root;
        width: 100%;
        padding: 1rem 0.25rem 0.25rem 0.25rem;
        margin-top: 1rem;
        border-top: 1px solid #dadbdb;
    }
        .report-header-items #datatable-search {
            width: auto;
            float: left;
            margin-right: 0;
        }
}

/*#endregion report*/

/*#region select2*/
.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: .25rem;
}

.select2-container {
    width: 100% !important;
}

    .select2-container .select2-selection {
        width: 100% !important;
        height: calc(1.5em + .75rem + 2px);
        padding: .375rem .75rem;
        border: 1px solid #ced4da;
        border-radius: .25rem;
        display: flex;
        align-items: center;
    }

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: none;
    border-bottom: 1px solid #ced4da;
    color: #939090;
}

.select2-container [type=search] {
    outline-offset: inherit;
    outline: unset;
    padding-left: .75rem;
}

.select2-results__message {
    font-size: .85rem;
    font-weight: bold;
    padding-left: 1rem;
}

.select2-results__option:hover {
    background-color: #f5f5f5;
}

.select2-dropdown {
    border: 1px solid #ced4da;
}

.select2-selection--multiple {
    height: auto !important;
    display: block !important;
}
    .select2-selection--multiple [type=search] {
        width:auto !important;
    }
    .select2-selection--multiple .select2-selection__choice {
        width: 100% !important;
        border: none !important;
        background-color: #f3f3f3 !important;
        margin-left: 0 !important;
        padding: 5px !important;
        padding-left: 22px !important;
    }
        .select2-selection--multiple .select2-selection__choice span {
            padding: 5px !important;
            color: #ff0000 !important;
            border:none !important;
        }
            .select2-selection--multiple .select2-selection__choice span:hover {
                background-color: #ffe8e8 !important;
            }

.select2-results__options[aria-multiselectable=true] [aria-selected=true] {
    display:none;
}

/*#endregion*/
/*#region language*/
.container-language {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    cursor: pointer;
}

    .container-language .item {
        width: 75px;
        height: 24px;
        font-size: 0.85rem;
        background: #f5f5f5;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 100rem;
        margin-right: .5rem;
        margin-left: .5rem;
    }
        .container-language .item.selected {
            font-weight: 600;
            background: #ffffff;
            box-shadow: 0 10px 30px 0 #aca8a86e;
        }
/*#endregion*/

.accordion.localization-form {
    border: 1px solid #f5f5f5;
}

    .accordion.localization-form .card:has(>.card-header[aria-expanded=true]) {
        box-shadow: 0px 0px 3px #00000040;
    }
    .accordion.localization-form .card-header {
        min-height: 50px;
        margin-bottom: -1px;
        font-size: 1rem;
        cursor: pointer;
    }
        .accordion.localization-form .card-header i {
            margin-left:1rem;
            margin-right:.5rem;
        }
        .accordion.localization-form .card-header p {
            margin-bottom: 0;
            margin-top: 0;
            font-weight: 600;
        }

    .accordion.localization-form .card-body {

    }