/*#region theme*/
:root {
    --theme-color: #008AD2;
}

.text-theme {
    color: var(--theme-color);
}

.bg-theme {
    background-color: var(--theme-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;
}

.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-container {
    box-shadow: 0px 0px 10px #00000040
}
    .card-container .card-header {
        background-color: #F5F5F5;
        border-bottom: none;
        min-height: 70px;
        align-items: center;
        display: flex;
    }
.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;
}

/*#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;
}

::-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: var(--theme-color);
    border: none;
    border-radius: 0;
}

.modal-close {
    cursor: pointer;
    font-size: 20px;
}
    .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;
    }
/*#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;
    background-color: var(--theme-color);
    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%;
    background-color: #f8f9fa;
    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;
}
    .datatable-filter .modal-footer a {
        min-width: 100px;
    }

.datatable-total-count {
    position: absolute;
    padding: 7px;
    border-radius: 100px;
    background-color: #e2e3e4;
    color: #838382;
    font-weight: normal;
    font-size: 12px;
    margin-left: 8px;
    margin-top: 7px;
}

.datatable-contact-info {
    color: #212529;
    text-decoration: none !important;
    white-space: nowrap;
}

.dataTables_empty {
    background-color: #fffefe;
    font-size: 17px;
    padding: 10rem !important;
    font-weight: bold;
    font-size: 2rem;
}

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;
}

@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-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;
}
/*#endregion variables*/