/* - colors - */
:root {
    --bs-body-color: #000;
    --bs-primary: #52a235;
    --bs-primary-rgb: 82, 162, 53;
    --bs-primary-darker: #326321;
    --bs-light: #f5f5f5;
    --bs-light-rgb: 245, 245, 245;
    --bs-gray-450: #b7b7b7;
    --bs-info: #246dd0;
    --bs-info-rgb: 36, 109, 208;
    --bs-danger: #e80d09;
    --bs-danger-rgb: 232, 13, 9;
    --bs-success: #6ba86b;
    --bs-success-rgb: 107, 168, 107;
    --bs-warning: #fab10c;
    --bs-warning-rgb: 250, 177, 12;
    --bs-purple: #8e00aa;
    --bs-purple-rgb: 142, 0, 170;
    --bs-link-color: var(--bs-primary);
    --bs-link-hover-color: var(--bs-primary-darker);
    --bs-border-color: #eaeaea;
    --bs-body-bg: var(--bs-border-color);
    --bs-body-font-family: "Ubuntu", sans-serif;
    --bs-body-font-size: 0.85rem;
    --bs-body-line-height: 1.3;
    --fw-normal: 400;
    --fw-medium: 500;
    --fw-bold: 700;
    --bs-border-radius: 20px;
    --ease-in-out: 0.3s ease-in-out;
    --aside-width-desktop: 23vw;
    --box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media (min-width: 992px) {
    body {
        --aside-width-desktop: 270px;
    }
}
.bg-light-gray {
    background-color: var(--bs-light);
}
hr {
    border-color: var(--bs-border-color);
    opacity: 1;
}
/* - fonts - */
h1,
.h1,
h2,
.h2,
h3,
.h3 {
    font-weight: var(--fw-bold);
}
h2,
.h2 {
    font-size: 1rem;
    text-transform: uppercase;
}
.small,
small {
    font-size: 0.75em;
}
.text-normal {
    text-transform: initial !important;
}
.fw-normal {
    font-weight: var(--fw-normal) !important;
}
.fw-medium {
    font-weight: var(--fw-medium) !important;
}
.fw-bold,
b,
strong {
    font-weight: var(--fw-bold) !important;
}
.text-nowrap {
    white-space: nowrap;
}

/* - margins - */
.mt-12,
.my-12 {
    margin-top: 0.75rem;
}
.mb-12,
.my-12 {
    margin-bottom: 0.75rem;
}
.px-12 {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}
.py-12 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
.g-12,
.gx-12 {
    --bs-gutter-x: 0.75rem;
}

/* - rules - */
.w-100 {
    height: auto;
}
.opacity-4 {
    opacity: 0.4;
}

@media (max-width: 767.98px) {
    .w-xs-100 {
        width: 100%;
    }

    .hidden-xs {
        display: none !important;
    }

    .fc .fc-toolbar.fc-header-toolbar {
        flex-wrap: wrap;
        row-gap: .5rem;
    }
    .fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk:first-child {
        flex: 0 0 auto;
        width: 100%;
    }
}

/* - custom scroll - */
.custom-scroll {
    overflow-y: auto;
    scrollbar-width: thin;
    overflow-x: hidden;
}
.custom-scroll.scroll-horizontal {
    overflow-x: auto;
}
.custom-scroll::-webkit-scrollbar {
    width: 0.188rem;
    height: 0.188rem;
}
.custom-scroll::-webkit-scrollbar-track {
    background: var(--bs-gray-400);
    -webkit-box-shadow: none;
    box-shadow: none;
}
.custom-scroll::-webkit-scrollbar-thumb {
    background: var(--bs-gray-600);
    -webkit-box-shadow: none;
    box-shadow: none;
}
.custom-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--bs-gray-600);
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* - offcanvas - */
.offcanvas {
    border-width: 0 !important;
}

/* - btn - */
.btn {
    --bs-btn-border-radius: var(--bs-border-radius);
    --bs-btn-font-size: 0.75rem;
    --bs-btn-font-weight: var(--fw-medium);
    --bs-btn-padding-x: 1.5rem;
    --bs-btn-disabled-opacity: 0.2;
    --bs-btn-disabled-bg: var(--bs-btn-bg);
    --bs-btn-disabled-border-color: var(--bs-btn-bg);
    text-transform: uppercase;
}
.btn-tabs-group .btn:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.btn-tabs-group .btn:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.btn-square {
    --bs-btn-padding-x: 0;
    --bs-btn-padding-y: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    min-height: 2rem;
}

.btn-link,
.btn-link:hover {
    color: inherit;
}
.btn-link:hover {
    opacity: 0.6;
}

.btn-primary {
    --bs-btn-color: var(--bs-white);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: var(--bs-primary-darker);
    --bs-btn-hover-border-color: var(--bs-primary-darker);
    --bs-btn-active-color: var(--bs-white);
    --bs-btn-active-bg: var(--bs-primary-darker);
    --bs-btn-active-border-color: var(--bs-primary-darker);
}
.btn-secondary {
    --bs-btn-color: var(--bs-body-color);
    --bs-btn-border-color: var(--bs-body-color);
    --bs-btn-bg: transparent;
    --bs-btn-hover-color: var(--bs-btn-color);
    --bs-btn-hover-bg: var(--bs-light);
    --bs-btn-hover-border-color: var(--bs-btn-light);
    --bs-btn-active-color: var(--bs-white);
    --bs-btn-active-bg: var(--bs-dark);
    --bs-btn-active-border-color: var(--bs-btn-border-color);
    --bs-btn-disabled-color: var(--bs-body-color);
    --bs-btn-border-disbabled-color: var(--bs-body-color);
    --bs-btn-disabled-bg: var(--bs-white);
}
.btn-secondary.btn-borderless {
    --bs-btn-active-color: var(--bs-body-color);
    --bs-btn-active-bg: var(--bs-light);
}
.btn-borderless {
    --bs-btn-border-width: 0;
}
.btn-info {
    --bs-btn-color: #fff;
    --bs-btn-bg: #17a2b8;
    --bs-btn-border-color: #17a2b8;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #138496;
    --bs-btn-hover-border-color: #138496;
    --bs-btn-focus-shadow-rgb: 11,172,204;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #138496;
    --bs-btn-active-border-color: #138496;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #138496;
    --bs-btn-disabled-border-color: #138496;
}

.btn-form-select {
    position: relative;
    font-size: 12px;
    text-align: left;
    text-transform: uppercase;
    padding: 8px 30px 8px 15px;
    width: 100%;
    border-width: 0;
    border-radius: 20px;
    background-color: var(--bs-light);
}
.bg-light-gray .btn-form-select,
.main-title .btn-form-select {
    background-color: #fff;
}
.btn-form-select::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 10px;
    border-width: 0;
    position: absolute;
    top: 10px;
    right: 15px;
}
/*.form-select-dropdown {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    height: auto;
    min-height: 2.25rem;
    border-radius: 20px;
    border: 1px solid #eaeaea;
    padding-right: 20px;
    padding-left: 20px;
    background-color: var(--bs-light);
    width: 100%;
}
.form-select-dropdown-resume {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    height: auto;
    min-height: 2.25rem;
    border-radius: 20px;
    border: 1px solid #eaeaea;
    padding-right: 20px;
    padding-left: 20px;
    background-color: #fff;
}
.form-select-dropdown-campaigns {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    height: auto;
    min-height: 2.25rem;
    border-radius: 15px;
    border: 1px solid #e7e3d4;
    padding: 11px;
    background-color: #e7e3d4;
    width: 100%;
    text-transform: uppercase;
}*/
.filter-btn {
    cursor: pointer;
}
.form-select-dropdown:focus,
.form-select-dropdown-campaigns:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.2rem rgb(143 189 73 / 48%);
}
.form-select-dropdown-resume:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.2rem rgb(143 189 73 / 48%);
}

/* - dropdown  - */
.dropdown-toggle {
    padding-right: 2rem;
}
.dropdown-toggle::after {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    transform: translateY(-50%);
    content: "\f0d7";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.75rem;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    border-width: 0;
    transition: var(--ease-in-out);
}
.dropdown-toggle.no-arrow::after {
    display: none;
}
.dropdown-toggle.show::after {
    transform: translateY(-50%) rotate(180deg);
}
.dropdown-menu {
    --bs-dropdown-font-size: 0.85rem;
    --bs-dropdown-border-radius: 0;
    --bs-dropdown-link-hover-bg: var(--bs-light);
    --bs-dropdown-border-color: var(--bs-border-color);
    --bs-dropdown-link-active-bg: var(--bs-border-color);
    --bs-dropdown-border-width: 0;
    --bs-dropdown-min-width: 100%;
    box-shadow: var(--box-shadow);
    inset: auto !important;
    transform: none !important;
}
.dropdown-menu.dropdown-menu-end {
    right: 0 !important;
}
.dropdown-center .dropdown-menu {
    left: 50% !important;
    transform: translateX(-50%) !important;
}
.dropdown-menu.show {
    display: none;
}
.dropdown-menu a:hover {
    transition: background-color var(--ease-in-out);
}

/* - table - */

.table-responsive {
    position: relative;
    max-width: 100%;
}
.table {
    font-size: var(--bs-body-font-size);
    border-collapse: separate;
    border-spacing: 0 0.25rem;
}
.table .btn-secondary {
    --bs-btn-bg: transparent;
    --bs-btn-hover-bg: var(--bs-white);
}
.table .btn-secondary.btn-borderless {
    --bs-btn-hover-bg: var(--bs-white);
}
.table .form-control:not(:checked) {
    background-color: var(--bs-white);
}
.table th {
    position: relative;
    font-weight: var(--fw-normal);
    border-bottom: 0;
    padding-bottom: 1.25rem;
}
.table th::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    bottom: .65rem;
    z-index: 1;
    height: 1px;
    background-color: var(--bs-border-color);
}
.table th:first-child:after {
    left: 0.75rem;
}
.table th:first-child,
.table td:first-child {
    padding-left: 0.75rem;
}
.table tbody tr {
    vertical-align: middle;
    border-width: 0;
    background-color: var(--bs-light);
}
.table-responsive
    tbody
    tr:nth-last-child(-n + 3):not(:first-of-type)
    .dropdown-menu {
    bottom: 100% !important;
}
.table-responsive
    tbody
    tr:nth-last-child(-n + 3):not(:first-of-type)
    .dropdown-menu-arrow {
    top: auto;
    bottom: 0;
    transform: translate(-50%, 100%) rotate(180deg);
}
.table tbody td {
    border-width: 0;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
.table-sticky-header-wrapper {
    --table-offset-top: 107px;
    overflow-x: auto;
    max-height: calc(100vh - var(--table-offset-top) - 2.25rem);
}
.table-sticky-header-wrapper::after {
    content: "";
    position: sticky;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: .75rem;
    background: linear-gradient(0deg, #fff, rgba(255,255,255,0));
}
.table-sticky-header {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 0;
}
.table-sticky-header th {
    position: sticky;
    top: 0;
    z-index: 2;
    padding-bottom: .5rem;
    background-color: rgba(255, 255, 255, 0.95);
}
.table-sticky-header th::after {
    display: none;
}

/* - inputs - */
.form-control,
.form-select {
    font-size: 12px;
    font-weight: 500;
    color: var(--bs-body-color);
    line-height: 1.5;
    height: auto;
    min-height: 2.25rem;
    border-radius: 20px;
    border: 1px solid var(--bs-border-color);
    padding-right: 20px;
    padding-left: 20px;
    background-color: rgba(var(--bs-light-rgb), .5);
}

.form-select {
    padding-right: 2.5rem;
}

.bg-light-gray .form-control {
    background-color: #fff;
}

.form-border-green {
    border-color: var(--bs-primary);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.2rem rgb(143 189 73 / 48%);
}

.form-group {
    margin-bottom: 10px;
}

.form-outside-label {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 7px;
}

/* - form floating label - */
.form-floating {
    position: relative;
}

.form-floating > .form-control {
    padding-top: 15px;
    padding-bottom: 0;
}

.form-floating > .form-control::-webkit-input-placeholder {
    color: transparent;
}

.form-floating > .form-control::placeholder {
    color: transparent;
}

.form-floating > .form-control:-ms-input-placeholder {
    color: transparent;
}

.form-floating > .form-control::-ms-input-placeholder {
    color: transparent;
}

.form-floating > label,
.custom-select-label {
    pointer-events: none;
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: top 0.2s ease-in-out;
    transition: top 0.2s ease-in-out;
}

.custom-select-label {
    top: 10px;
    z-index: 2;
    font-size: 9px;
    text-transform: uppercase;
    opacity: 0.5;
}

.custom-select-label + .custom-select-wrapper > .select-fake-input {
    padding-top: 18px;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    top: 8px;
    font-size: 8px;
    color: #c1c1c1;
}

/* - checkbox - */
.form-check {
    min-height: 1.25rem;
    padding-left: 1.75rem;
}
.form-check .form-check-input {
    --checkbox-check: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
    margin-left: -1.75rem;
    border-color: var(--bs-border-color);
    background-color: rgba(var(--bs-light-rgb), .5);
}
.form-check-input {
    height: 1.25rem;
    width: 1.25rem;
    margin-top: 0;
    box-shadow: none!important;
}
.form-check-label {
    padding-top: .05rem;
}
.form-check-input:checked {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}
.form-control.form-check-input {
    min-width: 2.25rem;
    padding: 0;
    background-size: 1.5rem;
}

/* - switch button - */
.form-switch {
    font-size: .87rem;
    display: flex;
    align-items: center;
    min-height: 1.25rem;
    padding-left: 0;
}
.form-switch .form-check-input {
    padding-left: 0;
    margin: 0 .5rem 0 0;
    width: 2.5rem;
    height: 1.5rem;
}
.form-switch .form-check-input:not(:checked):focus {
    border-color: #bfbfbf;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
}

/* - custom datepicker - */
.datepicker {
    display: -ms-flexbox;
    display: flex;
}

.datepicker .form-group + .form-group {
    margin-left: 10px;
}

.datepicker .form-floating::after {
    content: "\f073";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 10px;
    position: absolute;
    top: 10px;
    right: 15px;
}

.datepicker .form-floating input {
    padding: 0 30px;
}

.datepicker .form-floating > label {
    text-align: left;
    color: var(--text-color) !important;
    top: 12px !important;
    font-size: 12px !important;
    letter-spacing: 0;
    left: 15px;
}

/* - custom radio - */
.custom-control {
    font-size: 12px;
    min-height: 0;
}

.custom-control + .custom-control {
    margin-top: 10px;
}

.custom-radio {
    padding-left: 30px;
}

.custom-radio .custom-control-label {
    font-size: 12px;
}

.custom-radio .custom-control-label::before {
    top: 0;
    left: -30px;
    border-color: #707070;
}

.custom-radio .custom-control-label::after {
    top: 3px;
    left: -27px;
    height: 10px;
    width: 10px;
    border-radius: 100%;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
    background-image: none;
    background-color: var(--bs-primary);
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #fff;
}

.radios-label-top .custom-control {
    text-align: center;
    padding-left: 0;
}

.radios-label-top .custom-control + .custom-control {
    margin-top: 0;
    margin-left: 20px;
}

.radios-label-top .custom-control-label {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
    padding-bottom: 20px;
}

.radios-label-top .custom-radio .custom-control-label::before,
.radios-label-top .custom-radio .custom-control-label::after {
    top: auto;
    right: 0;
    left: 0;
    margin-right: auto;
    margin-left: auto;
}

.radios-label-top .custom-radio .custom-control-label::before {
    bottom: 0;
}

.radios-label-top .custom-radio .custom-control-label::after {
    bottom: 3px;
}

/* - custom checkbox - */
.custom-checkbox .custom-control-label::before {
    top: 0;
    border-color: #eaeaea;
}

.custom-checkbox .custom-control-label::after {
    top: 0;
}

.custom-checkbox .custom-control-label {
    font-size: 11px;
    color: #798a87;
}

.custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: var(--bs-primary);
    background-color: var(--bs-primary);
}

.custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: none;
}

.custom-checkbox-rounded .custom-control-label::before,
.custom-checkbox-rounded .custom-control-label::after {
    border-radius: 100%;
}

.custom-checkbox-rounded .custom-control-label::after {
    top: 3px;
    left: -21px;
    height: 10px;
    width: 10px;
}

.form-border-green.custom-checkbox .custom-control-label::before {
    border-color: var(--bs-primary);
}

.custom-checkbox-rounded
    .custom-control-input:checked
    ~ .custom-control-label::after {
    background-image: none;
    background-color: var(--bs-primary);
}

.custom-checkbox-rounded
    .custom-control-input:checked
    ~ .custom-control-label::before {
    background-color: #fff;
}

/* custom input file */
.custom-input-file {
    display: none;
}
.custom-input-file-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}
.upload-file-name {
    display: flex;
    align-items: center;
}

/* - nav pill - */
.nav-pills {
    padding: 2px;
    border-radius: 20px;
    border: 1px solid var(--bs-primary);
    background-color: #fff;
}

.nav-pills .nav-link {
    font-size: 15px;
    color: var(--bs-primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1rem;
    padding: 1px 15px;
    border-radius: 20px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background-color: var(--bs-primary);
}

/* - datepicker - */
#ui-datepicker-div {
    z-index: 8 !important;
}

/* == LOGIN PAGE == */
.login-page-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    padding: 30px 15px;
    background-position: center;
    background-size: cover;
    background-image: url("../img/login-bg.jpg");
}

.login-page-wrapper::after {
    content: "";
    opacity: 0.8;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: #efefef;
    /* background-color: #7BB51C; */
}

.login-page-wrapper > * {
    position: relative;
    z-index: 2;
}

.login-logo {
    margin-bottom: 60px;
}

.login-form {
    text-align: center;
    width: 400px;
    max-width: 100%;
}

.login-form .form-control,
.login-form .form-floating > label {
    text-align: center;
    margin: auto;
    transform-origin: top center;
}
.login-form .form-floating > label {
    padding-top: 1.35rem;
}

.assina-logo {
    max-width: 150px;
}

.btn-login {
    color: #fff;
    margin-top: 10px;
    margin-bottom: 60px;
    border-color: #eb5300;
    background-color: #eb5300;
}

.btn-login:hover {
    color: #eb5300;
    background-color: #fff;
}

/* - modal - */
.modal-dialog {
    width: 659px;
    max-width: 95%;
}

.modal-content {
    border-radius: 40px;
    border-width: 0;
}

.modal-body {
    font-size: 15px;
    padding: 40px;
}

.modal-body .close {
    color: var(--bs-primary);
    font-size: 21px;
    outline: none;
    margin-top: -15px;
    margin-right: -5px;
}

.modal-title {
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* - datepicker - */
#ui-datepicker-div {
    font-family: inherit;
    border-radius: 20px;
    border-width: 0;
    box-shadow: 0 2px 4px rgb(0 0 0 / 16%);
}

#ui-datepicker-div {
    padding: 5px;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
    border-radius: 20px;
    border-width: 0;
    padding: 5px;
    margin-right: 4px;
}

.ui-datepicker .ui-datepicker-header {
    background-color: var(--bs-light);
    border-width: 0;
    border-radius: 20px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    text-align: center;
    line-height: 23px;
    top: 4px;
    border-radius: 100%;
    outline: 0;
    border-width: 0;
}

.ui-widget-header .ui-icon {
    background: none;
}

.ui-datepicker-prev::before,
.ui-datepicker-next::before {
    display: block;
    font-family: "Font Awesome 5 Free";
    content: "\f0da";
    font-size: 16px;
    font-weight: 900;
}

.ui-datepicker-prev::before {
    content: "\f0d9";
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border-radius: 7px;
    text-align: center;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border-color: var(--bs-primary);
    background: var(--bs-primary);
    color: #fff;
}

@media (min-width: 1200px) {
    *:not(.container) .container {
        padding-right: 60px;
        padding-left: 60px;
    }
}

.editRelatedProduct {
    padding-left: 10px;
}

div.selectize-input,
div.selectize-control {
    border-radius: 20px;
}

a.disable-link {
    pointer-events: none;
    cursor: default;
    opacity: 0.5;
}

#searchbar, #searchbarProduct {
    padding-left: 2.25rem;
    display: inline-block;
    border: 1px solid var(--bs-border-color);
    box-sizing: border-box;
}

.searchIcon {
    position: relative;
}

.searchIcon i {
    position: absolute;
    left: 0.75rem;
    top: 0.7rem;
    color: gray;
}

.taskCalendar {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: baseline;
}

.card {
    --bs-card-border-width: 0;
    --bs-card-border-radius: 5px;
    --bs-card-inner-border-radius: var(--bs-border-radius);
    padding: 0.5em 0.5em 0.5em;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.card-header {
    margin-top: -.5em;
    margin-right: -.5em;
    margin-left: -.5em;
    background-color: var(--bs-border-color);
}

.card-title {
    text-transform: uppercase;
    font-weight: 600;
}

.card-text {
    text-align: center;
}

.card-text-dashboard {
    text-align: left;
    font-size: 12px;    
}

.side {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}

.mid {
    vertical-align: middle;
}

.custom-hr {
    border: 0;
    clear: both;
    display: block;
    width: 100%;
    background-color: #b3aea6;
    height: 1px;
    margin-bottom: 2px;
}

.custom-switch
    .custom-control-input:disabled:checked
    ~ .custom-control-label::before {
    background-color: #6c757d;
}

.custom-control-input:disabled ~ .custom-control-label::before {
    background-color: #e9ecef;
    cursor: default;
}

.custom-switch
    .custom-control-input:disabled:checked
    ~ .custom-control-label::after {
    cursor: default;
}

.custom-switch .custom-control-input:disabled ~ .custom-control-label::after {
    cursor: default;
}

.disabled{
    color:rgb(122, 122, 122);
}

.form-disabled{
    background-color: #e9ecef;
    opacity: 1;
}


@media print {
    html {
        font-size: 14px;
    }
    body {
        background-color: #fff;
    }
    .hide-print,
    .header-wrapper,
    .main-aside-wrapper {
     display: none!important;   
    }
    .main-content-wrapper {
        width: 100%!important;
    }
    .full-page-wrapper {
        padding: 0!important;
    }
    .table-sticky-header-wrapper {
        max-height: none;
    }
}

/* - Loading spinner - */
#fullscreen-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.loader {
    width: 48px;
    height: 48px;
    display: block;
    margin: 15px auto;
    position: relative;
    color: #fff;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.loader::after,
.loader::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    left: 50%;
    transform: scale(0.5) translate(0, 0);
    background-color: #fff;
    border-radius: 50%;
    animation: animloader 1s infinite ease-in-out;
}

.loader::before {
    background-color: var(--bs-secondary);
    transform: scale(0.5) translate(-48px, -48px);
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes animloader {
    50% {
        transform: scale(1) translate(-50%, -50%);
    }
}

.dot-red {
    height: 25px;
    width: 25px;
    border-radius: 50%;
    display: inline-block;
    background-color: red;
}
.dot-orange {
    height: 25px;
    width: 25px;
    border-radius: 50%;
    display: inline-block;
    background-color: orange;
}
.dot-yellow {
    height: 25px;
    width: 25px;
    border-radius: 50%;
    display: inline-block;
    background-color: yellow;
}
.dot-green {
    height: 25px;
    width: 25px;
    border-radius: 50%;
    display: inline-block;
    background-color: green;
}

.no-underscore{
    text-decoration: none;
}

.custom-round-checkbox {
    display: none;
}

.custom-round-checkbox-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.custom-round-checkbox-label i {
    color: white;
    font-size: 16px;
    display: none;
}

.custom-round-checkbox:checked + .custom-round-checkbox-label {
    background: #52a235;
    border-color: #52a235;
}

.custom-round-checkbox:checked + .custom-round-checkbox-label i {
    display: block;
}

.custom-round-checkbox:checked:disabled + .custom-round-checkbox-label {
    background: #a9a9a9; /* darkgrey */
    border-color: #a9a9a9;
    cursor: not-allowed;
}

.custom-radius{
    border-radius: 5px !important;
}

.custom-training-td{
    font-size: 0.8rem !important;   
}

.custom-br{
    border-radius: 5px !important;
}

.custom-w{
    width: 45%;
}

.custom-file-upload {
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
}
.custom-file-upload:hover{
    background-color: #e5e5e5;
}

input[type="file"]{
    display: none;
}

@media print {
    @page { size: A4; margin: 12mm; }
    .hide-print { display: none !important; }

    /* Em print, mantém os campos na mesma linha */
    .row.align-items-center .col-xs-10.col-sm-10.col-md-10.d-flex{
        display: flex !important;
        flex-wrap: wrap !important;   /* permite o user ir para a linha de baixo */
        gap: 10px !important;
        align-items: flex-end !important;
    }

    /* Tipo + datas na mesma linha */
    .row.align-items-center .col-xs-10.col-sm-10.col-md-10.d-flex > .col-3{
        width: 40% !important;        /* Tipo */
        flex: 0 0 auto !important;
    }

    #startDateDiv, #endDateDiv{
        width: 18% !important;        /* De / Até */
        flex: 0 0 auto !important;
        display: block !important;
    }

    /* User em baixo, linha inteira */
    #userDiv{
        width: 100% !important;
        flex: 0 0 100% !important;
    }

    /* Inputs date sem cortar */
    input[type="date"].form-control {
        height: auto !important;
        line-height: 1.2 !important;
        padding: 6px 8px !important;
        font-size: 12px !important;
        min-height: 32px !important;
    }

    input[type="date"]::-webkit-calendar-picker-indicator {
        opacity: 1;
        margin: 0;
    }
}
