/* #region vx-employee-card */

.vx-employee-card {
  .shift-employee-container-wrapper {
    container-type: inline-size;
  }

  .shift-employee-container {
    user-select: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    width: 100%;
    border: 1px solid #E5EAEE;
    background-color: #fff;
    margin-bottom: 4px;
    /* padding: 8px; */
  }

  .shift-employee-container-content {
    height: 42px;
    display: flex;
    align-items: center;
    padding: 6px;
    gap: 6px;
  }

  .shift-employee-avatar {
    width: 32px;
    height: 32px;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex: 0 0 auto;
  }

  .shift-employee-avatar-image {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
  }

  .shift-employee-info {
    display: block;
    flex: 1 1 auto;
    overflow: hidden;
  }

  .shift-employee-name {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 600;
  }

  .shift-employee-job {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 8px;
    color: #80808F;
  }

  .shift-employee-container-wrapper:not(.ui-draggable-dragging) .shift-employee-container.selected {
    border-color: #3696F24D;
    background-color: #3696F24D;
  }

  .shift-employee-container-wrapper:not(.ui-draggable-dragging) .shift-employee-container:hover.selected {
    border-color: #3696F280;
    background-color: #3696F280;
  }

  .shift-employee-container-wrapper:not(.ui-draggable-dragging) .shift-employee-container:hover {
    border-color: #00000026;
    background-color: #0000000D;
  }
}

/* #endregion vx-employee-card */

/* #region vx-shift-calendar */
.vx-shift-calendar {
  .shift-grid,
  .shift-grid-header,
  .shift-grid-header-employees-filter,
  .shift-grid-header-days-panel,
  .shift-grid-header-days,
  .shift-grid-header-day,
  .shift-grid-content,
  .shift-grid-content-employees-filter,
  .shift-grid-content-view-panel,
  .shift-grid-content-view-panel-job,
  .shift-grid-content-view-panel-days,
  .shift-grid-content-view-panel-day,
  .shift-grid-header-day-number,
  .shift-grid-header-day-name,
  .shift-grid-content-view-panel-footer {
    margin: 0 !important;
    padding: 0 !important;
  }

  .shift-grid-wrapper {
    /* position: relative; */
  }

  .shift-grid {
    /* margin: 10px !important; */
    background-color: #fff;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 100px);
    position: relative;
  }

  .shift-grid-footer {
    height: 42px;
    width: 100%;
    background-color: #eeeeef;
    bottom: 0;
    position: sticky;
    z-index: 2;
  }

  .shift-grid-footer-inner {
    border-top: 1px solid #E5EAEE;
    background-color: #fff;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    cursor: default;
  }


  .shift-grid-header {
    /* position: sticky; */
    /* top: 45px; */
    /* z-index: 2; */
    background-color: #fff;
    align-items: stretch;
    border-bottom: 1px solid #E5EAEE;
    height: 46px !important;
  }

  .shift-grid-header-days {
    height: 100%;
  }

  .shift-grid-header-employees-filter {
    padding: 8px 12px 8px 12px !important;
  }

  .shift-grid-header-employees-filter input {
    border-radius: 8px !important;
  }

  .shift-grid-header-day {
    padding: 4px 12px 4px 12px !important;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    align-content: center;
  }

  .shift-grid-header-day-number {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
  }

  .shift-grid-header-day-name {
    font-size: 10px;
    font-weight: 400;
    text-align: center;
  }

  .shift-grid-content {
    position: relative;
    display: flex;
    align-items: stretch;
    flex-grow: 1;
    background-color: #fff;
  }

  .shift-grid-content-view-panel {
    flex: 1;
  }

  .shift-grid-content-view-panel-container {
    width: 100%;
  }

  .shift-grid-content-view-wrapper:not(:last-child) {
    border-bottom: 1px solid #E5EAEE;
  }

  .shift-grid-content-employees-filter {
    border-right: 1px solid #E5EAEE;
    padding: 6px !important;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(200, 200, 220, .5) #f0f0fa;
  }

  .shift-grid-content-view-panel-day {
    padding: 0 0 40px 0 !important;
    border-right: 1px solid #E5EAEE;
  }

  .shift-grid-content-view-panel-day.active {
    padding: 0 0 0 0 !important;
  }

  .shift-grid-content-view-panel-days .shift-grid-content-view-panel-day:last-child {
    border-right: none;
  }

  .ui-droppable-hover.shift-grid-content-view-panel-day {
    background-color: #F3F6F9;
  }

  .shift-grid-content-view-panel-job {
    padding: 4px 4px 4px 4px !important;
  }

  .shift-grid-content-view-panel-job-icon {
    padding-right: 6px;
    align-content: center;
  }

  .shift-grid-content-view-panel-job[aria-expanded=false] .shift-grid-content-view-panel-job-icon .chevron-down {
    display: none;
  }

  .shift-grid-content-view-panel-job[aria-expanded=true] .shift-grid-content-view-panel-job-icon .chevron-right {
    display: none;
  }

  .shift-grid-content-view-panel-job-name {
    font-size: 12px;
    align-content: center;
  }

  .shift-grid-content-view-panel-plus-icon {
    cursor: pointer;
    user-select: none;
    font-size: 12px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0 10px 0;
  }

  .shift-grid-content-view-panel-plus-icon:hover {
    background-color: #F3F6F9;
  }

  #publishBtn {
    border-radius: 8px;
  }

  #publishBtn:disabled {
    color: #0000004D;
    background-color: #0000000D;
    border-color: #0000000D;
  }

  .btn-light-custom {
    color: #464E5F;
    border-color: #D6DBE0;
    background-color: white;
    border-radius: 8px;
  }

  .icon-with-line {
    position: relative;
    display: inline-block;
  }

  .icon-with-line::after {
    content: "";
    position: absolute;
    top: 40%;
    left: -3px;
    width: 100%;
    height: 2px;
    background-color: #6993FF;
    transform: rotate(45deg);
    transform-origin: center;
  }

  .dropdown-item {
    background-color: transparent !important;
  }

  .shift-grid-content-view-panel-footer {
    padding: 12px !important;
    cursor: pointer;
  }

  .shift-grid-content-view-panel-footer:hover {
    background-color: #F3F6F9;
  }

  .shift-grid-content-view-panel-footer-icon {
    font-size: 12px;
    align-content: center;
    padding-right: 8px;
    color: #1B82E3;
  }

  .shift-grid-content-view-panel-footer-text {
    font-size: 12px;
    align-content: center;
    color: #1B82E3;
  }

  .dropdown-menu-left {
    left: auto !important;
    right: 0 !important;
  }

  .shift-grid .switch input[type=checkbox]~span::before {
    top: 4px;
    height: 21px;
    width: 36px;
  }

  .shift-grid .switch input[type=checkbox]:checked~span::after {
    margin-left: 20px;
  }

  .vx-view-mode-button-group .btn.vx-view-mode-button {
    background-color: inherit;
    border-color: #0000001A;
  }

  .vx-by-button-group .btn.vx-by-button {
    background: none;
    border-color: #0000001A;
  }

  .vx-by-button-group .btn.vx-by-button.active,
  .vx-by-button-group .btn.vx-by-button.focus:not(.btn-text),
  .vx-by-button-group .btn.vx-by-button:focus:not(.btn-text),
  .vx-by-button-group .btn.vx-by-button:hover:not(.btn-text):not(:disabled):not(.disabled) {
    border-color: #338CDB; 
    background-color: #3696F24D;
  }

  .vx-view-mode-button-group .btn.vx-view-mode-button.active,
  .vx-view-mode-button-group .btn.vx-view-mode-button.focus:not(.btn-text),
  .vx-view-mode-button-group .btn.vx-view-mode-button:focus:not(.btn-text),
  .vx-view-mode-button-group .btn.vx-view-mode-button:hover:not(.btn-text):not(:disabled):not(.disabled) {
    background-color: #3696F24D;
    border-color: #338CDB;
  }

  .vx-view-mode-button-group .btn.vx-view-mode-button:first-child {
    border-top-left-radius: 8px !important;
    border-bottom-left-radius: 8px !important;
  }

  .vx-view-mode-button-group .btn.vx-view-mode-button:last-child {
    border-top-right-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
  }

  form[name="vxCalendarConfirmModal"] .modal-footer button {
    width: 120px;
    height: 36px;
    border-radius: 8px;
    transition: none !important;
  }

  #btnDefault:hover,
  #btnDefault:focus,
  #btnDefault:active {
    background-color: inherit !important;
    color: inherit !important;
  }

  #btnLightPrimary:hover,
  #btnLightPrimary:focus,
  #btnLightPrimary:active {
    background-color: #e1e9ff;
    color: #6993ff;
  }

  #btnLightDanger:hover,
  #btnLightDanger:focus,
  #btnLightDanger:active {
    background-color: #ffe2e5;
    color: #f64e60;
  }

  .open-shift-container-wrapper {
    container-type: inline-size;
  }

  .open-shift-container {
    user-select: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    width: 100%;
    border: 1px solid #E5EAEE;
    background-color: #fff;
    margin-bottom: 4px;
  }

  .open-shift-container-content {
    height: 42px;
    display: flex;
    align-items: center;
    padding: 6px;
    gap: 6px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none; 
    -ms-user-select: none;
  }

  .open-shift-container-wrapper:not(.ui-draggable-dragging) .open-shift-container.selected {
    border-color: #3696F24D;
    background-color: #3696F24D;
  }

  .open-shift-container-wrapper:not(.ui-draggable-dragging) .open-shift-container:hover.selected {
    border-color: #3696F280;
    background-color: #3696F280;
  }

  .open-shift-container-wrapper:not(.ui-draggable-dragging) .open-shift-container:hover {
    border-color: #00000026;
    background-color: #0000000D;
  }

  .open-shift-avatar {
    width: 32px;
    height: 32px;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex: 0 0 auto;
  }

  .open-shift-name {
    color: #0D8F89;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 600;
  }

  .open-shift-info {
    display: block;
    flex: 1 1 auto;
    overflow: hidden;
  }

  .open-shifts-count-card-wrapper {
    container-type: inline-size;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 6px !important;
    margin: 8px 6px 8px 6px;
    position: relative;
  }

  .open-shifts-count-card-container {
    user-select: none;
    position: relative;
    border-radius: 6px;
    width: 100%;
    display: inline-block;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  }

  .open-shifts-count-card-content {
    background-color: #3697F126;
    padding: 4px 4px 4px 4px;
    height: 42px;
    border-radius: 6px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .open-shifts-count-card-content:hover {
    background-color: #3697F14D;
  }

  .open-shifts-count-card-content.active {
    background-color: #3697F180;
  }

  .open-shifts-count-card-full-name {
    display: flex;
    align-items: center;
    color: #338CDB;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .open-shifts-label {
    padding-right: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .open-shifts-count {
    flex-shrink: 0;
  }

  .open-shifts-count-card-name {
    display: none;
    color: #338CDB;
    font-size: 12px;
    font-weight: 600;
  }

  .open-shifts-dropdown-cards-wrapper {
    max-height: 250px;
    overflow-y: auto;
  }

  .open-shifts-dropdown {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    z-index: 999;
    position: absolute;
    width: 100%;
    min-width: 162px;
  }

  .open-shifts-dropdown.align-right {
    left: auto;
    right: 0;
  }

  .open-shifts-dropdown-wrapper {
    padding: 4px 6px 10px 6px;
  }

  .open-shifts-dropdown-title {
    font-size: 16px;
    font-weight: 400;
    padding: 16px 6px 0 6px;
  }

  .open-shifts-dropdown-date {
    font-size: 10px;
    font-weight: 400;
    padding: 0px 6px 6px 6px;
  }

  .open-shifts-dropdown-cards .shift-container-border {
    border: 1px dashed #E5EAEE !important;
    box-shadow: none !important;
  }

  .open-shifts-dropdown-seacrh {
    border-radius: 6px;
    padding: 6px 6px 14px 6px;
  }

  .shift-employee-container-content {
    height: 42px;
    display: flex;
    align-items: center;
    padding: 6px;
    gap: 6px;
  }

  .shift-employee-avatar {
    width: 32px;
    height: 32px;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex: 0 0 auto;
  }

  .shift-employee-avatar-image {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
  }

  .shift-employee-info {
    display: block;
    flex: 1 1 auto;
    overflow: hidden;
  }

  .shift-employee-name {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 600;
  }

  .shift-employee-job {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 8px;
    color: #80808F;
  }

  .shift-group-filter-wrapper,
  .shift-job-filter-wrapper,
  .shift-status-filter-wrapper {
    max-width: 332px;
    width: 100%;
    padding: 0 6px 0 6px;
  }

  .selected-groups-wrapper,
  .selected-jobs-wrapper {
    display: inline-flex;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .selected-groups-wrapper::-webkit-scrollbar,
  .selected-jobs-wrapper::-webkit-scrollbar {
    display: none;
  }

  #job:hover,
  #shiftGroup:hover,
  #status:hover {
    border-color: #00000026;
    background-color: #0000000D;
  }

  .shift-changes-grid-footer {
    height: 52px;
    width: 100%;
    bottom: 0;
    position: sticky;
    z-index: 2;
  }

  .shift-changes-grid-footer-inner {
    display: flex;
    align-items: center;
    height: 52px;
    padding: 12px 16px 12px 16px;
    border-top: 1px solid #D6DBE0;
    background-color: #0000001A;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    cursor: default;
  }

  .shift-changes-delete-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 30px;
    margin-left: auto;
    background-color: #0000000D;
  }

  .shift-changes-delete-button:focus {
    border-color: #0000000D;
  }

  .openImportModalContent {
    margin-left: 6px;
    margin-right: 6px;
  }

  .openImportModalContent:hover {
    border-radius: 6px;
    background-color: #0000000D;
  }

  .importShiftsModalWrapper {
    position: absolute; 
    top: 110px; 
    left: 50%;
    transform: translateX(-50%) !important;
    width: 488px;
    height: 385px;
  }

  .importShiftsModalContent {
    border-radius: 8px;
    padding: 0 32px;
  }

  .importShiftsModalHeader {
    font-weight: 500;
    padding: 12px 0 8px 0;
  }

  .importShiftsModalBody {
    padding: 8px 0 0 0;
  }

  .importModalFirstDescription {
    color: #000000D9;
  }
  
  .importModalLastDescription {
    padding-top: 16px;
    padding-bottom: 16px;
    color: #000000D9;
  }

  .importModalDropzoneWrapper {
    width: 100%;
    height: 146px;
  }

  .importModalDropzone .b-dropzone {
    height: 146px !important;
  }

  .importModalDropzone .b-dropzone>div {
    padding: 32px !important;
    background-color: #0000000D !important;
    border-radius: 5px !important;
    border: 1px dashed #0000001A !important;
    color: #0000004D;
  }

  .importModalDropzone.active .b-dropzone>div {
    padding: 32px !important;
    background-color: #0000000D !important;
    border-radius: 5px !important;
    border: 1px dashed #0000001A !important;
    color: #00000080;
  }  

  .importModalDropzone .b-dropzone>div:hover {
    padding: 32px !important;
    background-color: #00000026 !important;
    border-radius: 5px !important;
    border: 1px dashed #00000026 !important;
    color: #000000D9;
  }
  
  .importModalDropzone.active .b-dropzone>div .file {
    color: #338CDB;
  }

  .importShiftsModalFooter {
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
  }

  .importTemplate {
    display: flex;
    justify-content: center;
    font-size: 13px;
  }

  .nextButton {
    padding: 0;
    width: 128px;
    height: 36px;
    background-color: #0000000D;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }

  .nextButton.active {
    background-color: #3696F2;
  }

  .nextButtonText {
    font-size: 13px;
    color: #0000004D;
  }

  .nextButtonText.active {
    font-size: 13px;
    color: #FFFFFF;
  }

  .importErrorsModalWrapper {
    position: absolute; 
    top: 110px; 
    left: 50%;
    transform: translateX(-50%) !important;
    width: 723px;
    height: 500px;
  }

  .importErrorsModalContent {
    border-radius: 8px;
    padding: 0 32px;
  }

  .importErrorsModalHeader {
    font-weight: 500;
    padding: 12px 0 8px 0;
  }

  .importErrorsModalBody {
    padding: 8px 0 0 0;
  }

  .importNoErrors {
    font-size: 13px;
  }

  .importHasErrors {
    padding: 16px 0 16px 0;
    font-size: 13px;
  }

  .importErrorsList {
    border: 1px solid #0000001A;
    border-radius: 5px;
    padding: 10px;
  }

  .importErrorsList b-pg-grid .tbl {
    font-size: 13px;
    height: 216px !important;
  }

  .importErrorsModalFooter {
    padding: 28px 0;
  }

  .importButton {
    padding: 0;
    width: 133px;
    height: 36px;
    background-color: #3696F2;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }

  .importButtonText {
    font-size: 13px;
    color: #FFFFFF;
  }

  .backButton {
    padding: 0;
    width: 128px;
    height: 36px;
    font-size: 13px;
    background-color: #fff;
    border: none
  }

  @container (max-width: 70px) {
    .open-shifts-count-card-full-name {
      display: none;
    }

    .open-shifts-count-card-name {
      display: flex;
      align-items: center;
    }
  }

}

/* #endregion vx-shift-calendar */

/* #region vx-shift-card */
.vx-shift-card.vx-draggable-dragging .shift-container-wrapper * {
    visibility: hidden;
}

.vx-shift-card.vx-draggable-dragging .shift-container-wrapper-content {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    visibility: visible;
    border-radius: 6px;
}

.vx-shift-card {
    .shift-wrapper {
        container-type: inline-size;
    }

    .shift-container-wrapper {
        background-color: rgba(255, 255, 255, 1);
        border-radius: 6px !important;
        margin: 6px 6px 0 6px;
        position: relative;
    }

    .shift-wrapper.ui-droppable-hover .shift-container {
        background-color: rgba(0, 123, 255, 0.1) !important;
    }

    .shift-wrapper.ui-droppable-hover .shift-container-border {
        display: block !important;
        box-shadow: inset 0 0 0 1px #007BFF !important;
    }

    /* Shift Container */
    .shift-container {
        /* opacity: 0.3 !important; */
        user-select: none;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        border-radius: 6px;
        width: 100%;
    }

    .shift-container-border {
        display: none;
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        pointer-events: none;
        z-index: 1;
        border-radius: 6px;
    }

    /* Status Indicators */
    .shift-status-indicator {
        width: 20px;
        height: 20px;
        bottom: -10px;
        right: -10px;
        position: absolute;
        transform: rotate(45deg);
    }

    /* Shift Border */
    .shift-left-badge {
        width: 6px;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

    .shift-content {
        padding: 4px 4px 4px 10px;
        height: 47px;
    }

    /* Shift Header */
    .shift-header {
        display: flex;
        align-items: center;
        gap: 4px;
        overflow: hidden;
    }

    /* Shift Name */
    .shift-name {
        color: inherit !important;
        min-width: 0;
        font-size: 10px;
        font-family: Open Sans;
        font-weight: 600;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        flex: 1 1 auto;
    }

    /* Shift Time */
    .shift-time {
        white-space: nowrap;
        color: inherit !important;
        font-size: 10px;
        font-family: Open Sans;
        font-weight: 400;
        display: flex;
        flex: 0 0 auto;
        text-align: right;
        /* word-wrap: break-word; */
    }

    .shift-begin-time {
        white-space: nowrap;
        color: inherit !important;
        font-size: 10px;
        font-family: Open Sans;
        font-weight: 400;
        word-wrap: break-word;
    }

    .shift-end-time {
        white-space: nowrap;
        color: inherit !important;
        font-size: 10px;
        font-family: Open Sans;
        font-weight: 400;
        word-wrap: break-word;
    }

    /* Shift User and job Info */
    .shift-user-job-info {
        display: flex;
        margin-top: 4px;
    }

    /* User and job Avatar */
    .shift-user-job-avatar {
        width: 20px;
        height: 20px;
    }

    .shift-avatar-image {
        width: 20px;
        height: 20px;
        border-radius: 20px;
    }

    /* User and job Name */
    .shift-user-job-name {
        color: inherit !important;
        font-size: 10px;
        font-family: Open Sans;
        font-weight: 400;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        padding-left: 4px;
        align-content: center;
    }

    @container (max-width: 110px) {
        .shift-content {
            padding: 4px 4px 4px 10px;
            height: 62px;
        }

        .shift-header {
            all: unset;
        }

        .shift-name {
            flex: unset;
        }

        .shift-time {
            text-overflow: clip;
            white-space: nowrap;
            padding-top: 4px;
            flex: unset;
            text-align: left;
        }

        .shift-user-job-info {
            display: inherit;
        }

        .shift-user-job-avatar {
            display: none;
        }

        .shift-user-job-name {
            padding-left: 0px;
        }
    }

    @container (max-width: 70px) {
        .shift-container-wrapper {
            margin: 6px 2px 0 2px;
        }

        .shift-content {
            padding: 4px 2px 4px 6px;
            height: 38px;
        }

        .shift-left-badge {
            width: 4px;
        }

        .shift-status-indicator {
            width: 14px;
            height: 14px;
            bottom: -7px;
            right: -7px;
        }

        .shift-header {
            all: unset;
        }

        .shift-time {
            all: unset;
        }

        .shift-name {
            display: none;
        }

        .shift-time-separator {
            display: none;
        }

        .shift-user-job-info {
            display: none;
        }
    }

}

/* #endregion vx-shift-card */

/* #region vx-shift-modal */
.vx-shift-modal {
  #vxShiftModal ~ .modal-backdrop {
    background-color: transparent !important;
  }

  form[name="vxConfirmModal"] .modal-backdrop{
    z-index: 1051 !important;
  }

  .employee-dropdown {
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 8px;
    top: 70px !important;
    left: 19px !important;
    transform: none !important;
    padding: 0;
  }

  .employee-list {
    max-height: 250px;
    overflow-y: auto;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
  }


  #vxShiftModal .modal-footer button {
    height: 36px;
    padding: 0px 16px 0px 16px;
    border-radius: 8px;
    transition: none !important;
  }

  #vxConfirmModal .modal-footer button {
    width: 120px;
    height: 36px;
    border-radius: 8px;
    transition: none !important;
  }

  .b-input .hint-body {
    overflow-x: hidden;
  }

  #btnDefault:hover,
  #btnDefault:focus,
  #btnDefault:active,
  #btnDefault i {
    background-color: inherit !important;
    color: inherit !important;
  }

  #btnLightDanger:hover,
  #btnLightDanger:focus,
  #btnLightDanger:active,
  #btnLightDanger i {
    background-color: #ffe2e5;
    color: #f64e60;
  }

  #btnLightPrimary:hover,
  #btnLightPrimary:focus,
  #btnLightPrimary:active,
  #btnLightPrimary i {
    background-color: #e1e9ff;
    color: #6993ff;
  }

  #btnPrimary:hover,
  #btnPrimary:focus,
  #btnPrimary:active {
    background-color: #6993ff;
    border-color: #6993ff;
  }
}

/* #endregion vx-shift-modal */


