.blazored-typeahead {
    position: relative;
    border: 1px solid #5449E6 !important;
    box-sizing: border-box;
    padding: 1em;
    margin-top: -1px;
    display: block;
    background: #fff;
    flex-grow: 500;
    width: auto;
    height: auto;
}

    .blazored-typeahead:focus {
        border: 1px solid #000 !important;
    }

    .blazored-typeahead:hover {
        border: 1px solid #5449E6 !important;
    }

.blazored-typeahead-icon {
    position: relative;
    float: left;
}

.blazored-typeahead.valid.modified {
    outline: none !important;
    border: 1px solid #26b050;
}

.blazored-typeahead.invalid {
    outline: none !important;
    border: 1px solid red !important;
}

.blazored-typeahead__controls {
    position: relative;
    cursor: text;
    display: flex;
    height: 100%;
    min-height: 20px;
    align-items: center;
}

.blazored-typeahead__input {
    flex: 1;
    max-width: 100%;
    border: none;
    font-size: 11.3px;
    font-family: montserratregular;
}

    .blazored-typeahead__input:focus {
        outline: none;
    }

.blazored-typeahead__input-multi:focus {
    outline: none;
    box-shadow: none;
}

.blazored-typeahead__input-hidden {
    display: none;
}

.invalid {
    outline: 1px solid red;
}

.blazored-typeahead__input-mask-wrapper {
    display: flex;
    width: 100%;
}

.blazored-typeahead__input-multiselect-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    flex-wrap: wrap;
}

.blazored-typeahead__input-mask-wrapper--disabled {
    background-color: #ddd;
    cursor: not-allowed;
    border-radius: 5px 0 0 5px;
}

    .blazored-typeahead__input-mask-wrapper--disabled:focus {
        border: none;
    }

.blazored-typeahead__input-mask {
    display: flex;
    align-items: center;
    flex: 1;
    border-radius: 5px 0 0 5px;
    font-size: 11.3px;
    font-family: montserratregular;
}

    .blazored-typeahead__input-mask:focus {
        outline: none;
    }

.blazored-typeahead__clear {
    /* width: 40px; */
    display: flex;
    padding: .5rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #000000;
    font-weight: bold;
}

    .blazored-typeahead__clear:hover {
        color: #333333;
    }

.blazored-typeahead__down-arrow path {
    fill: #000000;
}

.blazored-typeahead__input-icon {
    width: 40px;
    display: flex;
    border-radius: 0 5px 5px 0;
    padding: .36rem;
    cursor: pointer;
    background: none;
    outline: none;
    max-width: 22px;
    display: block;
    max-height: 22px;
    padding-top: 0.2rem;
}

    .blazored-typeahead__input-icon:hover .blazored-typeahead__down-arrow path {
        fill: #333333;
    }

.blazored-typeahead__input-icon--disabled,
.blazored-typeahead__input-icon--disabled:hover {
    cursor: not-allowed;
    background-color: #ddd;
}

    .blazored-typeahead__input-icon--disabled .blazored-typeahead__down-arrow path,
    .blazored-typeahead__input-icon--disabled:hover .blazored-typeahead__down-arrow path {
        fill: #9c9c9c;
    }

.blazored-typeahead__multi-value {
    background-color: #dbdbdb;
    display: flex;
    align-items: center;
    min-width: 0px;
    box-sizing: border-box;
    border-radius: 2px;
    margin: .4rem 0 .4rem .4rem;
}

.blazored-typeahead__multi-value-label {
    color: rgb(51, 51, 51);
    font-size: 85%;
    text-overflow: ellipsis;
    white-space: nowrap;
    box-sizing: border-box;
    border-radius: 2px;
    overflow: hidden;
    padding: 3px 3px 3px 6px;
}

.blazored-typeahead__multi-value-clear {
    -webkit-box-align: center;
    align-items: center;
    display: flex;
    padding-left: 4px;
    padding-right: 4px;
    box-sizing: border-box;
    border-radius: 2px;
    background-color: transparent;
    border: 0;
    outline: none;
}

    .blazored-typeahead__multi-value-clear:focus {
        outline: none;
    }

    .blazored-typeahead__multi-value-clear:hover {
        background-color: rgb(212, 212, 212);
        color: rgb(222, 53, 11);
    }

.blazored-typeahead__results {
    position: absolute;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    border: 1px solid #dbdbdb;
    min-height: 2rem;
    max-height: 20rem;
    overflow-y: auto;
    z-index: 10;
    width: 100%;
    background: #fff;
    font-size: 11.3px;
    font-family: montserratregular;
    left: 0em;
}

.blazored-typeahead__result,
.blazored-typeahead__notfound,
.blazored-typeahead__results-help-template,
.blazored-typeahead__results-header,
.blazored-typeahead__results-footer {
    padding: .5rem;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.blazored-typeahead__selected-item {
    background-color: #dbdbdb;
}

.blazored-typeahead__selected-item-highlighted {
    background-color: #d3e2f2;
}

.blazored-typeahead__active-item,
.blazored-typeahead__result:hover,
.blazored-typeahead__result:focus {
    background-color: #007bff;
    border-top: 1px solid #007bff;
    border-bottom: 1px solid #007bff;
    color: #fff;
    cursor: pointer;
}

.blazored-typeahead__loader {
    width: 24px;
    height: 24px;
    background-color: #333;
    border-radius: 100%;
    -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
    animation: sk-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0)
    }

    100% {
        -webkit-transform: scale(1.0);
        opacity: 0;
    }
}



@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
        opacity: 0;
    }
}

.chart-container canvas {
    padding: .5em 2em .5em 2em !important;
}

/* revision style */

.blazored-typeahead .required {
    position: absolute;
    left: 0.3em;
    z-index: 2;
}

.input .required {
    position: absolute;
    left: 0.3em;
    z-index: 2;
}

.input .invalid {
    z-index: 1;
}

.blazored-typeahead .invalid {
    z-index: 1;
}

.modal-content .table-block .table-scroller table th {
    font-size: 1rem;
}

.modal-content .table-block .table-scroller table td {
    font-size: 1rem;
}

.dataTables_info {
    margin: 5px !important;
    padding: 5px !important;
    padding-top: 10px !important;
}

.dataTables_paginate {
    margin: 5px !important;
    padding: 5px !important;
}

.table-block .table-scroller table td {
    padding-top: 7px;
    padding-bottom: 5px;
}

    .table-block .table-scroller table td a {
        margin-top: -5px;
        margin-bottom: -7px;
    }

/*.table-block input[type="datetime-local"] {
    width: 80px;
}

.table-block input[type="date"] {
    width: 80px;
}*/

ul.description > li {
    line-height: 1.9em;
}

.table-block .table-title > * {
    display: inline-block;
    vertical-align: middle;
}

/*.table-block .table-scroller table th[data-name="DayNoLabel"] {
    width: 40px;
}

.table-block .table-scroller table th[data-name="ShiftName"] {
    width: 100px;
}

.table-block .table-scroller table th[data-name="CompanyName"] {
    width: 17%;
}

.table-block .table-scroller table th[data-name="EmployeeName"] {
    width: 17%;
}

.table-block .table-scroller table th[data-name="EmployeeCode"] {
    width: 120px;
}*/

.table-block .table-scroller table th input {
    font-size: .8rem;
}

.this-validation-message {
    position: relative;
}

.disable {
    background-color: #ddd;
}

.btn-secondary {
    color: #5449E6;
    background-color: #fff;
    border-color: #5449E6;
}

    .btn-secondary:hover {
        color: #fff;
        background-color: #5449E6;
        border-color: #5449E6;
    }

.main-menu {
    display: block;
}

.sub-menu {
    display: none;
}

.blazored-toast-container {
    z-index: 100000;
}

.disabled {
    background-color: #e9ecef;
}

.textarea.disabled > textarea, .textarea > textarea:disabled {
    background-color: #e9ecef;
}

select:disabled {
    background-color: #e9ecef;
}

.input.file::before.disabled > input, .input.file::before > input.disabled {
    background: #e9ecef;
}

.nopadding-top {
    padding-top: 0 !important;
}

.loading {
    position: fixed;
    z-index: 99999;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

    .loading .rz-progressbar-circular-background {
        stroke: transparent;
    }

    .loading .rz-progressbar-circular-value {
        stroke: #5448e6 !important;
    }

    /* Transparent Overlay */
    .loading:before {
        content: '';
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(rgba(219, 219, 219,.8), rgba(0, 0, 0, .8));
        background: -webkit-radial-gradient(rgba(219, 219, 219,.8), rgba(0, 0, 0,.8));
    }

#map {
    height: 512px;
    width: 512px;
}

.chart-no-data {
    margin: 3em 0 3em 0;
    text-align: center;
    display: flex;
    flex-direction: column;
}

    .chart-no-data > i {
        margin: auto;
    }

    .chart-no-data > span {
        font-size: 0.8em;
        font-weight: bold;
    }

.active-menu {
    font-weight: bold;
    border-bottom: 3px solid;
}

.chart-area {
    margin-left: 15px;
    margin-right: 15px;
}

.rz-dropdown-trigger.rz-corner-right {
    background-image: url(../img/down-arrow.png) !important;
}

span.rz-dropdown-trigger-icon.rzi.rzi-chevron-down {
    background-image: url(../img/down-arrow.png) !important;
}

.normal-chart .rz-value-axis .rz-tick-text {
    text-anchor: end !important;
}

.import-log {
    min-height: 300px;
    width: 100%;
}

.report-chart {
    padding-bottom: 2em;
}

.rz-legend-bottom {
    bottom: -1.5em;
}

.rz-datatable-data td .rz-cell-data,
.rz-grid-table td .rz-cell-data {
    font-size: var(--default-font-size);
    font-weight: 500;
    padding: 0.2em;
}

.report-chart .rz-datatable-data td .rz-cell-data,
.report-chart .rz-grid-table td .rz-cell-data {
    font-size: var(--default-font-size);
}

.rz-grid-table td {
    padding: 0 var(--rz-grid-cell-padding) 0 var(--rz-grid-cell-padding);
}

.report-chart .rz-grid-table td {
    padding: var(--rz-grid-cell-padding);
}

.zero-margin-label label {
    padding-top: 0px !important;
}

.rz-legend-right {
    right: -20px;
    font-size: 10px;
}

.input-control-style {
    border: 1px solid #5449e6;
    box-sizing: border-box;
    border-radius: 0px;
}

.table-block.font-small .table-scroller table th {
    font-size: 0.9em !important;
}

.table-block.font-small .table-scroller table td {
    font-size: 0.9em !important;
}

.normal-datagrid table > tbody > tr > td {
    height: 30px;
}

.text-white {
    color: #fff;
}

table.detail-ticket td {
    text-align: left;
    vertical-align: top;
    padding: 0 20px 5px 0;
    min-width: 150px;
}

table.detail-ticket tr > td > label {
    font-weight: bold;
}

.simple-btn {
    background-color: #e9edf0;
    border-radius: 4px;
    border: none;
    color: black;
    font-size: 12px;
    padding: 10px;
    text-decoration: none;
    font-weight: bold;
}

    .simple-btn:hover {
        background-color: #4c52df;
        color: #fff;
        border: none;
        outline: none;
    }

    .simple-btn:focus {
        background-color: #4c52df;
        color: #fff;
        border: none;
        outline: none;
    }

.simple-btn-danger {
    background-color: #ff084d;
    border-radius: 4px;
    border: none;
    color: #fff;
    font-size: 12px;
    padding: 10px;
    text-decoration: none;
    font-weight: bold;
}

    .simple-btn-danger:hover {
        background-color: #4c52df;
        color: #fff;
        border: none;
        outline: none;
    }

    .simple-btn-danger:focus {
        background-color: #4c52df;
        color: #fff;
        border: none;
        outline: none;
    }

.simple-btn-info {
    background-color: #17a2b8;
    border-radius: 4px;
    border: none;
    color: #fff;
    font-size: 12px;
    padding: 10px;
    text-decoration: none;
}

    .simple-btn-info:hover {
        background-color: #4c52df;
        color: #fff;
        border: none;
        outline: none;
    }

    .simple-btn-info:focus {
        background-color: #4c52df;
        color: #fff;
        border: none;
        outline: none;
    }

.simple-btn-success {
    background-color: #28a745;
    border-radius: 4px;
    border: none;
    color: #fff;
    font-size: 12px;
    padding: 10px;
    text-decoration: none;
    font-weight: bold;
}

    .simple-btn-success:hover {
        background-color: #4c52df;
        color: #fff;
        border: none;
        outline: none;
    }

    .simple-btn-success:focus {
        background-color: #4c52df;
        color: #fff;
        border: none;
        outline: none;
    }

.simple-btn-warning {
    background-color: #ffc107;
    border-radius: 4px;
    border: none;
    color: #fff;
    font-size: 12px;
    padding: 10px;
    text-decoration: none;
    font-weight: bold;
}

    .simple-btn-warning:hover {
        background-color: #ffc107;
        color: #fff;
        border: none;
        outline: none;
    }

    .simple-btn-warning:focus {
        background-color: #ffc107;
        color: #fff;
        border: none;
        outline: none;
    }

.datagrid table tbody tr {
    /* height: 40px;*/
}

.import-message > p {
    margin-bottom: 0px;
}

.rz-state-disabled {
    border: 1px solid #ced4da !important;
    border-block-end: 1px solid #ced4da !important;
}

.rz-background-color-primary {
    background-color: var(--primary-light);
}

.rz-button.rz-background-color-primary {
    background-color: var(--primary-light) !important;
}

.rz-background-color-primary-dark {
    background-color: var(--primary-dark);
}

.rz-button.rz-background-color-primary-dark {
    background-color: var(--primary-dark) !important;
}

.rz-background-color-danger {
    background-color: var(--accent-color);
}

.rz-button.rz-background-color-danger {
    background-color: var(--accent-color) !important;
}

.input-component, .input-component:focus, .input-component:hover {
    border: 1px solid #5449e6 !important;
    box-sizing: border-box;
}

.valid.modified:not([type=checkbox]) {
    outline: none;
}

.rz-clear .rz-multiselect-label-container, .rz-clear .rz-dropdown-label {
    padding-right: calc(0 * var(--rz-dropdown-trigger-icon-width));
}

.inner-input-date {
    border: 1px solid #5449e6 !important;
    height: 3em !important;
}

.blazored-toast-container {
    z-index: 2025 !important;
}

.data-grid-setting-popup {
    padding-right: .25rem;
    margin: .25rem !important;
    display: none;
    position: absolute;
    overflow: hidden;
    border: var(--rz-panel-border);
    background-color: var(--rz-panel-background-color);
    box-shadow: var(--rz-panel-shadow);
    border-radius: var(--rz-border-radius);
}

    .data-grid-setting-popup .popup-content {
        padding: 5px;
        height: 100%;
    }

    .data-grid-setting-popup .rz-button {
        width: 100%;
        margin: .25rem !important;
    }

.rt-ticketmod-custom {
}

.rz-group-header {
    display: flex !important;
    /*justify-content: flex-end !important;*/
    flex-direction: row-reverse !important;
    justify-content: unset !important;
}

.invisible-input {
    color: #fff;
    border: #fff;
    outline: none;
    text-decoration: none;
    position: absolute;
    left: -9999px;
}

    .invisible-input :focus {
        color: #fff;
        border: #fff;
        outline: none;
        text-decoration: none;
    }

    .invisible-input :active {
        color: #fff;
        border: #fff;
        outline: none;
        text-decoration: none;
    }

    .invisible-input :hover {
        color: #fff;
        border: #fff;
        outline: none;
        text-decoration: none;
    }

    .invisible-input :focus-visible {
        color: #fff;
        border: #fff;
        outline: none;
        text-decoration: none;
    }

.rz-cell-data > a {
    vertical-align: middle;
}

.rz-selectbar .rz-button.rz-state-active {
    background-color: var(--rz-primary);
    border: var(--rz-primary);
}

.detail-task {
    overflow-y: auto;
}

    .detail-task .rz-cell-data,
    .detail-task .rz-column-title-content {
        overflow: visible !important;
        white-space: normal !important;
    }

.components-rejoining-animation div {
    border: 3px solid #5449e6 !important;
}

button.components-reconnect-failed-visible,
button.components-reconnect-failed-visible:hover {
    background-color: #5449e6 !important;
}

.form-control:disabled, .form-control[readonly] {
    color: var(--rz-input-disabled-color);
    box-shadow: var(--rz-input-disabled-shadow);
    background-color: var(--rz-input-disabled-background-color);
    border: var(--rz-input-disabled-border) !important;
    border-block-end: var(--rz-input-disabled-border-block-end);
    opacity: var(--rz-input-disabled-opacity);
}

.filled-icon {
    font-variation-settings: 'FILL' 1 !important;
    font-size: 1.2em;
}

.filled-icon-rotate {
    font-variation-settings: 'FILL' 1 !important;
    font-size: 1.2em;
    transform: rotate(180deg);
}

.RZDropdown {
    width: 90px;
}

.RZDataPicker {
    width: 160px !important;
}


.DxGrid-Header-SelectAll {
    margin-left: -12.57px !important;
}

.RadzenDropDownDataGrid-Header-SelectAll {
    margin-left: 3.4px !important;
}

    .RadzenDropDownDataGrid-Header-SelectAll .rz-chkbox {
        margin-inline: 0 !important;
    }

.action-custom {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Radzen DataGrid, custom fontSize untuk td */
table.rz-grid-table span.rz-cell-data {
    transform-origin: 0 0;
}

.rz-grid-table thead th .rz-column-title {
    transform-origin: 0 0;
}

/* custom css untuk admin report */
.ticket-report-shell .card-header h5 {
    margin-bottom: 0;
}

.ticket-report-division-chip-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

    .ticket-report-division-chip-group .rz-button {
        margin: 0 !important;
    }

.ticket-report-date-row {
    gap: 0.5rem 0;
}

.ticket-report-date-col {
    padding-left: 1rem;
    padding-right: 1rem;
}

.ticket-report-date-part {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

/* Custom filter layout */
.ticket-report-filter-card {
    align-items: flex-end;
}

    .ticket-report-filter-card label {
        display: block;
        margin-bottom: 0.25rem;
    }

.ticket-report-filter-field-col,
.ticket-report-filter-value-col,
.ticket-report-filter-action-col {
    min-width: 0;
}

.ticket-report-filter-action-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.ticket-report-filter-action-label {
    visibility: hidden;
    display: block;
    margin-bottom: 0.25rem;
}

/* Remove filter button */
.ticket-report-remove-filter-button {
    width: 100%;
    min-width: 42px;
    height: 38px;
    min-height: 38px;
    padding: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

    .ticket-report-remove-filter-button .rz-button-box {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ticket-report-remove-filter-button .rz-button-icon-left,
    .ticket-report-remove-filter-button .rz-button-icon {
        margin: 0 !important;
        font-size: 1.25rem;
        line-height: 1;
    }

@media (min-width: 768px) {
    .ticket-report-date-row {
        margin-left: -0.25rem;
        margin-right: -0.25rem;
    }

    .ticket-report-filter-action-col {
        padding-left: 0.25rem;
    }
}

@media (max-width: 991.98px) {
    .ticket-report-toolbar-row {
        row-gap: 0.75rem;
    }
}

@media (max-width: 767.98px) {
    .ticket-report-shell {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }

        .ticket-report-shell .card-header,
        .ticket-report-shell .card-body {
            padding-left: 0.75rem;
            padding-right: 0.75rem;
        }

        .ticket-report-shell .row {
            margin-left: 0;
            margin-right: 0;
        }

        .ticket-report-shell [class*="col-"] {
            padding-left: 0.25rem;
            padding-right: 0.25rem;
        }

    .ticket-report-filter-action-label {
        display: none;
    }

    .ticket-report-remove-filter-button {
        width: 100%;
        height: 38px;
        min-height: 38px;
        margin-top: 0.25rem;
    }

    .ticket-report-chart-pair > div {
        margin-bottom: 0.5rem;
    }
}

.top-ticket-report-title {
    margin-bottom: 0;
}

.top-ticket-report-header-main {
    justify-content: space-between;
}

    .top-ticket-report-header-main > div:first-child {
        text-align: left;
    }

    .top-ticket-report-header-main > div:last-child {
        text-align: right !important;
    }

.top-ticket-report-mode-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.375rem;
}

.top-ticket-report-mode-row {
    margin-top: 0.75rem;
}

.top-ticket-report-mode-button {
    margin: 0 !important;
    min-width: 44px;
}

.top-ticket-report-export-link h5 {
    margin-bottom: 0;
}

.top-ticket-report-size-row {
    row-gap: 0.75rem;
    justify-content: center;
}

.top-ticket-report-size-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
}

.top-ticket-report-size-input {
    width: 96px;
}

.top-ticket-report-filter-row {
    margin-bottom: 0.25rem;
}

@media (max-width: 991.98px) {
    .top-ticket-report-header {
        row-gap: 0.75rem;
    }

    .top-ticket-report-export-link {
        display: inline-block;
        width: auto;
        text-align: left;
    }

    .top-ticket-report-mode-row {
        margin-top: 0.5rem;
    }
}

@media (min-width: 768px) {
    .top-ticket-report-title {
        text-align: left;
    }

    .top-ticket-report-export-link {
        display: inline-block;
        width: auto;
        text-align: right;
    }
}

@media (max-width: 767.98px) {
    .top-ticket-report-card .card-header,
    .top-ticket-report-card .card-body {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .top-ticket-report-header-main {
        row-gap: 0.5rem;
    }

    .top-ticket-report-title {
        text-align: left;
    }

    .top-ticket-report-export-link {
        display: inline-block;
        width: auto;
        text-align: right;
    }

    .top-ticket-report-size-control {
        justify-content: center;
    }

    .top-ticket-report-filter-row {
        margin-bottom: 0;
    }

    .top-ticket-report-mode-group {
        justify-content: center;
    }

    .top-ticket-report-header-main > div,
    .top-ticket-report-size-row > div {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .top-ticket-report-size-row {
        align-items: center;
    }
}

.CustomColomModal {
}

    .CustomColomModal .rz-dialog-content {
    }

@media (max-width: 428px) {
    /* Styles inside here apply only if screen width is 428px or less */
    .CustomColomModal .rz-dialog-content {
        padding: 0px;
    }
}

/* CSS Radzen DataPicker Data Range*/
[aria-label="DateRangeCustom"] .rz-calendar-view td .rz-state-default.rz-state-focused {
    background: white;
    color: #3a474d;
}

[aria-label="DateRangeCustom"] .rz-calendar-view td .rz-state-default.rz-calendar-today {
    color: white;
    background-color: #1a73e8;
    font-weight: bold;
    border: 2px solid #1a73e8;
}

[aria-label="DateRangeCustom"] .rz-calendar-view td .rz-state-active.rz-calendar-today {
    color: white;
    background-color: #1a73e8;
    font-weight: bold;
    border: 2px solid #1a73e8;
}

[aria-label="DateRangeCustom"] .rz-calendar-view td .rz-state-active {
    background-color: #22c55e !important;
    color: #ffffff !important;
    font-weight: bold !important;
}

    [aria-label="DateRangeCustom"] .rz-calendar-view td .rz-state-active.rz-state-focused {
        background-color: #22c55e !important;
        color: #ffffff !important;
        font-weight: bold !important;
    }


/*Buttons Division Sticky Home Page*/
.division-sticky {
    position: sticky;
    top: 0px;
    z-index: 50;
    transition: all 0.25s ease-in-out;
}

.division-sticky-content {
    background: #fff;
}

.division-sticky--full-width-row {
    margin-left: -15px;
    margin-right: -15px;
}


/* =========================
   RESPONSIVE DISPLAY
   ========================= */

/* <= 1279px */
@media (max-width: 1279px) {
}

/* <= 1023px */
@media (max-width: 1023px) {
    .division-sticky {
        top: 8px;
    }
}

/* <= 767px */
@media (max-width: 767px) {
    .division-sticky {
        left: 0;
        right: 0;
    }

        .division-sticky > .container-fluid {
            padding-left: 0;
            padding-right: 0;
        }

        .division-sticky .row {
            margin-left: 0;
            margin-right: 0;
        }

        .division-sticky .col-12 {
            padding-left: 0;
            padding-right: 0;
        }
}

/* <= 479px */
@media (max-width: 479px) {
}
