.vx-candidate-card {
  margin-top: 8px;

  .candidate-container-wrapper {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    width: 100%;
    padding: 12px;
    background-color: #F5F5F5;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }

  .candidate-container-wrapper:hover {
    background-color: #EBEBEB;
  }

  .candidate-container-wrapper:hover .card-action-wrapper {
    opacity: 1;
    transition: opacity 0.5s ease;
  }

  .candidate-container-wrapper.active {
    background-color: #BFD2F7;
    box-shadow: inset 0 0 0 2px #2E74FF;
  }

  .candidate-container-header {
    display: flex;
    gap: 8px;
  }

  .candidate-card-avatar {
    height: 41px;
    width: 41px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex: 0 0 auto;
  }

  .candidate-card-avatar-image {
    height: 41px;
    width: 41px;
    border-radius: 50%;
    object-fit: cover;
  }

  .candidate-card-avatar-wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1px;
  }

  /* Rating badge */
  .candidate-rating-badge {
    display: flex;
    align-items: center;
    gap: 3px;

    position: relative;
    top: -3px;

    padding: 3px 6px;
    border-radius: 12px;

    /* GLASS EFFECT */
    background: linear-gradient(
      135deg,
      rgb(50 46 46 / 20%),
      rgba(255, 255, 255, 0.15)
    );

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow:
      0 4px 16px rgba(0, 0, 0, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.6);

    font-size: 12px;
    font-weight: 500;
  }

  .candidate-rating-badge.score-star {
    background: linear-gradient(
      135deg,
      rgba(255, 193, 42, 0.35),
      rgba(255, 255, 255, 0.15)
    );
  }

  .rating-value {
    line-height: 14px;
    color: #1F1F1F;
  }


  .candidate-info {
    display: block;
    flex: 1 1 auto;
    overflow: hidden;
  }

  .candidate-card-name {
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    color: #000000;
  }

  .candidate-details {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 400;
    line-height: 18px;
    font-size: 13px;
    color: #5F636C;
  }

  .candidate-container-footer {
    margin-top: 12px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    gap: 8px;
  }

  .card-footer-text {
    font-size: 11px;
    font-weight: 400;
    line-height: 16px;
    color: #5F636C;
  }

  .card-footer-status {
    height: 20px;
    display: flex;
    align-items: center;
    border-radius: 3px;
    padding: 0px 4px;
    background-color: #FF003D26;
  }

  .card-footer-status-text {
    padding: 0px 4px;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    color: #BD0935;
  }

  .card-footer-icon {
    margin-left: auto;
  }

  .card-action-wrapper {
    display: flex;
    align-items: center;
    height: 28px;
    gap: 4px;
    opacity: 0;
  }

  .card-action-wrapper.show {
    opacity: 1;
    transition: opacity 0.5s ease;
  }

  .card-action-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 0;
    background-color: #EBEBEB;
    border: none;
  }

  .card-action-icon:hover {
    background-color: #0000000A;
  }

  .card-action-stage {
    border-radius: 4px;
    cursor: pointer;
  }

  .card-action-stage:active {
    background-color: #dadada;
  }

  .custom-dropdown {
    box-shadow: 0 8px 24px #00000026;
    border-radius: 8px;
  }

  .move-stages-container {
    box-shadow: 0 8px 24px #00000026;
    border-radius: 8px;
  }

  .move-stages-left {
    right: 97%;
    left: auto;
  }

  .move-stages-right {
    left: 97%;
    right: auto;
  }

  .card-action-stage-dropdown:hover .move-stages-container {
    display: block;
  }
}
.vx-candidate-card.vx-draggable-dragging {
  opacity: 0.4 !important;
}

.vx-candidate-view {
  .close-page-wrapper {
    padding: 12px;
  }

  .close-page-container {
    display: inline-flex;
    align-items: center;
    border: none;
    border-radius: 8px;
    padding: 9px 16px;
    gap: 8px;
    transition: background-color 0.3s ease;
  }

  .close-page-container:hover {
    background-color: #0000000D;
  }

  .close-page-text {
    font-size: 13px;
    line-height: 18px;
    font-weight: 400;
    color: #2E74FF;
  }

  .candidate-view-content {
    width: 1024px;
    padding-bottom: 24px;
    border-radius: 16px !important;
  }

  .candidate-view-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
  }

  .candidate-view-header-title {
    display: flex;
    align-items: center;
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    color: #000000D9;
  }

  .close-view-icon {
    cursor: pointer;
    border-radius: 6px;
    background-color: #FFFFFF;
    transition: background-color 0.3s ease;
  }

  .close-view-icon:hover {
    background-color: #0000000D;
  }

  .view-body-header-wrapper {
    display: flex;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #0000001A;
    gap: 24px;
    background-color: #ffffff;
  }

  .candidate-view-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    flex: 0 0 auto;
    width: 128px;
    height: 128px;
    max-width: 128px;
    max-height: 128px;
    border-radius: 10px;
    background-color: #FFFFFF;
  }

  .candidate-view-avatar-image {
    width: 128px;
    height: 128px;
    border-radius: 10px;
    object-fit: cover;
  }

  .main-info-container {
    width: calc(100% - 152px);
  }

  .main-info-header {
    display: flex;
    width: 100%;
  }

  .main-info-header-container {
    display: flex;
    flex-direction: column;
  }

  .candidate-name {
    display: flex;
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
    color: #0A0A0A;
    margin-bottom: 8px;
  }

  .candidate-summary-text {
    display: flex;
    font-size: 13px;
    line-height: 18px;
    font-weight: 500;
    white-space: nowrap;
    color: #00000080;
  }

  .candidate-view-action {
    display: flex;
    height: 36px;
    gap: 6px;
    margin-left: auto;
  }

  .view-action-button {
    display: flex;
    align-items: center;
    padding: 9px 16px;
    gap: 8px;
    border-radius: 8px;
    background-color: #0000000D;
    border: none;
  }

  .view-action-button:hover {
    background-color: #00000026;
  }

  .view-action-button-text {
    display: flex;
    align-items: center;
    font-size: 13px;
    line-height: 18px;
    font-weight: 400;
    color: #000000D9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .view-action-button-success {
    display: flex;
    align-items: center;
    padding: 9px 16px;
    gap: 8px;
    border-radius: 8px;
    background-color: #30AA6E;
    border: none;
  }

  .view-action-button-success-text {
    align-items: center;
    font-size: 13px;
    line-height: 18px;
    font-weight: 400;
    color: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .candidate-view-body-wrapper {
    display: flex;
    gap: 12px;
    padding-top: 12px;
  }

  .candidate-view-body-container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 12px;
  }

  .candidate-progress-wrapper {
    width: 100%;
    padding: 12px 12px 28px 12px;
    border-radius: 16px;
    border: 1px solid #0000001A;
    background-color: #ffffff;
  }

  .candidate-progress-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
  }

  .candidate-progress-header-title {
    display: flex;
    align-items: center;
    font-size: 15px;
    line-height: 20px;
    font-weight: 600;
  }

  .candidate-progress-button {
    display: flex;
    align-items: center;
  }

  .next-stage-button {
    display: flex;
    align-items: center;
    padding: 5px 12px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    border: none;
    background-color: #2E74FF;
    gap: 8px;
    transition: background-color 0.3s ease;
    height: 28px;
  }

  .next-stage-button:disabled {
    cursor: not-allowed;
    opacity: 0.8;
  }

  .next-stage-dropdown-button {
    display: flex;
    align-items: center;
    padding: 6px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    background-color: #2E74FF;
    border: none;
    border-left: 1px solid #5F94FF;
    transition: background-color 0.3s ease;
  }

  .next-stage-button:hover,
  .next-stage-dropdown-button:hover {
    background-color: #2B598A;
  }

  .candidate-progress-body {
    display: flex;
    overflow: auto;
    scrollbar-width: thin;
    width: 100%;
    scrollbar-color: #c3c3c3 #FFFFFF;
    padding-bottom: 3px;
  }

  .candidate-progress-item {
    display: flex;
    flex-direction: column;
  }

  .candidate-progress-item.stretch {
    flex: 1;
  }

  .candidate-progress-top {
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 120px;
  }

  .stage-icon {
    flex-shrink: 0;
  }

  .candidate-progress-line {
    flex: 1;
    height: 2px;
    background-color: #30AA6E;
    margin: 0 8px;
    border-radius: 999px;
  }

  .candidate-progress-stage-text {
    margin-top: 6px;
    font-size: 9px;
    line-height: 12px;
    padding-right: 10px;
  }

  .candidate-survey-answers {
    border-radius: 16px;
    border: 1px solid #0000001A;
    padding: 12px 2px 12px 12px;
    background-color: #ffffff;
  }
  
  .candidate-survey-header {
    font-size: 15px;
    line-height: 20px;
    font-weight: 600;
    color: #000000D9;
    margin-bottom: 22px;
  }

  .scroll-wrap {
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #e9e9e9 #ffffff;
  }

  .candidate-survey-body,
  .candidate-comment-body,
  .candidate-view-files {
    width: calc(100% - 10px);
  }

  .candidate-survey-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: calc(100vh - 566px);
    min-height: 100px;
  }

  .candidate-suvey-response {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-bottom: 1.25px solid #E5E7EB;
    padding-bottom: 4px;
  }

  .candidate-suvey-response-title {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #4A5565;
  }

  .candidate-survey-response-answer {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #0A0A0A;
  }

  .file-icon {
    cursor: pointer;
    margin-left: 20px;
    color: #555;
    font-size: 16px;
    transition: 0.2s;
  }

  .file-icon:hover {
    color: #000;
  }

  .candidate-view-wrapper {
    display: flex;
    gap: 12px;
    padding: 0 12px;
  }

  .candidate-comment-container {
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    border-radius: 16px;
    border: 1px solid #0000001A;
    padding: 12px 2px 12px 12px;
    background-color: #ffffff;
  }

  .candidate-comment-title {
    font-size: 15px;
    line-height: 20px;
    font-weight: 600;
    color: #000000D9;
    text-align: start;
    margin-bottom: 22px;
  }

  .candidate-comment-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: calc(100vh - 375px);
  }

  .candidate-comment-feed {
    display: flex;
    gap: 12px;
    padding-bottom: 4px;
  }

  .candidate-feed-info-wrapper {
    display: flex;
    flex-direction: column;
  }

  .candidate-feed-info-status {
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    color: #000000D9;
  }

  .candidate-feed-creater {
    font-size: 13px;
    line-height: 18px;
    font-weight: 500;
    color: #00000080;
  }

  .candidate-feed-stage {
    display: inline-flex;
    gap: 6px;
    font-size: 13px;
    line-height: 18px;
    font-weight: 400;
    color: #000000D9;
  }

  .candidate-feed-created-at {
    font-size: 11px;
    line-height: 16px;
    font-weight: 400;
    color: #0000004D;
    margin-left: auto;
    padding-right: 6px;
    white-space: nowrap;
  }

  .candidate-avatar {
    height: 36px;
    width: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex: 0 0 auto;
  }

  .candidate-avatar-image {
    height: 36px;
    width: 36px;
    border-radius: 50%;
    object-fit: cover;
  }

  .candidate-feed-stage-name {
    display: flex;
    align-items: center;
    min-height: 20px;
    padding: 0 4px;
    border-radius: 4px;
    background-color: #3697F126;
  }

  .candidate-feed-stage-text {
    font-size: 13px;
    line-height: 18px;
    font-weight: 400;
    color: #3072B3;
  }

  .candidate-view-info-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .candidate-view-info-content {
    border-radius: 16px;
    padding: 12px 2px 12px 12px;
    background-color: #FFFFFF;
  }

  .candidate-summary-wrapper {
    display: flex;
    flex-direction: column;
  }

  .candidate-summary-header {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .candidate-summary-body-text {
    display: flex;
    align-items: center;
    line-height: 20px;
    font-size: 15px;
    font-weight: 500;
    color: #000000D9;
    overflow: auto;
    scrollbar-width: none;
  }

  .candidate-view-files {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
    max-height: calc(100vh - 600px)s;
  }

  .candidate-view-file {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .candidate-view-file-content {
    display: flex;
    align-items: center;
    height: 48px;
    border-radius: 16px;
    padding: 6px 12px;
    gap: 12px;
    background-color: #F5F5F5;
  }

  .candidate-view-download-icon {
    cursor: pointer;
    margin-left: auto;
  }

  .candidate-comment-send-container {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    gap: 13px;
    padding-right: 10px;
    padding-top: 6px;
  }

  .candidate-comment-input-wrapper {
    padding: 8px 12px;
    border-radius: 10px;
    border: 1.25px solid #D1D5DC;
    min-height: 90px;
    overflow: hidden;
    scrollbar-width: none;
  }

  .candidate-comment-input-wrapper:focus-visible,
  .candidate-comment-input-wrapper:focus {
    outline: none;
  }

  .candidate-comment-send-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 10px;
    background-color: #0000000D;
    height: 44px;
    border: none;
  }

  .candidate-comment-send-title {
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    color: #30AA6E;
  }
  
  .action-stage {
    border-radius: 8px;
    cursor: pointer;
  }
  
  /* Header */
  .conformity-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* AI Badge */
  .ai-icon-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #EEF2FF 0%, #F5F0FF 100%);
    border: 1px solid #C7D2FE;
    border-radius: 8px;
    padding: 4px 9px;
    font-size: 10.5px;
    font-weight: 700;
    color: #6366F1;
    letter-spacing: 0.04em;
    position: relative;
    cursor: default;
  }

  .ai-icon-badge svg { flex-shrink: 0; }

  .ai-tooltip {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 290px;
    background: #1E1B2E;
    color: #E2E0F0;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.8;
    padding: 11px 14px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.22);
    z-index: 100;
    letter-spacing: 0;
    pointer-events: none;
  }

  .ai-tooltip::before {
    content: '';
    position: absolute;
    top: -5px;
    right: 14px;
    width: 10px;
    height: 10px;
    background: #1E1B2E;
    transform: rotate(45deg);
    border-radius: 2px;
  }

  .ai-tooltip-row {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 1.5px 0;
  }

  .ai-tooltip-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .ai-icon-badge:hover .ai-tooltip { display: block; }

  /* Score row */
  .score-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px;
    border-bottom: 1px solid #F3F4F6;
    border-top: 1px solid #F3F4F6;
    margin-bottom: 0;
  }

  /* Circle */
  .conformity-progress { flex-shrink: 0; }

  .progress-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background .6s ease;
  }

  .progress-circle::after {
    content: "";
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
  }

  .progress-value {
    position: relative;
    z-index: 2;
    text-align: center;
  }

  .progress-value .score {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    color: #0F1117;
  }

  .progress-value .total {
    font-size: 10px;
    color: #9CA3AF;
    font-weight: 500;
    margin-top: 2px;
  }

  /* Right */
  .score-right {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  /* Badge */
  .status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid;
    width: 100%;
  }

  .status-badge-label { font-size: 13px; font-weight: 700; line-height: 1.2; }
  .status-badge-sub   { font-size: 11px; font-weight: 400; opacity: 0.75; margin-top: 1px; }

  .status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
    animation: blink 2s ease-in-out infinite;
  }

  @keyframes blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .45; transform: scale(.75); }
  }

  .status-not-recommended { color: #DC2626; background: #FEF2F2; border-color: #FECACA; }
  .status-not-recommended .status-dot { background: #DC2626; }

  .status-weak { color: #D97706; background: #FFFBEB; border-color: #FDE68A; }
  .status-weak .status-dot { background: #D97706; }

  .status-recommended { color: #CA8A04; background: #FEFCE8; border-color: #FDE68A; }
  .status-recommended .status-dot { background: #CA8A04; }

  .status-strongly-recommended { color: #16A34A; background: #F0FDF4; border-color: #BBF7D0; }
  .status-strongly-recommended .status-dot { background: #16A34A; }

  /* Pros / Cons grid */
  .pc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .pc-col { padding: 14px 0 18px; }

  .pc-col:first-child {
    padding-right: 20px;
    border-right: 1px solid #F3F4F6;
  }

  .pc-col:last-child {
    padding-left: 20px;
  }

  .pc-col-head {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid;
  }

  .pc-col.pros .pc-col-head { color: #16A34A; border-color: #BBF7D0; }
  .pc-col.cons .pc-col-head { color: #DC2626; border-color: #FECACA; }

  .pc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .pc-list li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: 12px;
    color: #4B5563;
    line-height: 1.45;
  }

  .pc-bullet {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .pc-bullet svg { width: 8px; height: 8px; }
  .pros-bullet { background: #DCFCE7; }
  .cons-bullet { background: #FEE2E2; }

  /* AI Disclaimer */
  .ai-disclaimer {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 0 2px;
    border-top: 1px solid #F3F4F6;
    font-size: 11px;
    color: #9CA3AF;
    font-weight: 500;
  }

.ai-disclaimer svg { flex-shrink: 0; color: #C4B5FD; }

  .main-info-body {
    display: flex;
    overflow-x: auto;
    scrollbar-color: #c3c3c3 #FFFFFF;
    padding: 24px 0 12px 0;
    gap: 24px;
  }
}

/* #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;
  }

  .day-kind-badge-wrapper {
    container-type: inline-size;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 6px !important;
    margin: 8px 6px 8px 6px;
    position: relative;
  }

  .day-kind-badge-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);
  }

  .day-kind-badge-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;
  }

  .day-kind-badge-full-name {
    display: flex;
    align-items: center;
    color: #338CDB;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .day-kind-badge-label {
    padding-right: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .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
  }

 .bulk-actions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bulk-action-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 8px;
    font-size: 14px;
    color: #262626;
}

.bulk-action-item:hover {
    background-color: #F3F6F9;
}

.bulk-action-item span {
    flex: 1;
}

  @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;
  }

  .disabled-span {
    pointer-events: none;
    opacity: 0.8;
    cursor: not-allowed;
  }
}

/* #endregion vx-shift-modal */

.vx-survey-question {
    position: absolute;
    width: 100%;
    height: 100%;
    padding-block-start: 0px;
    pointer-events: auto;
    opacity: 1;
    transition: transform 600ms, opacity 300ms;
    -webkit-tap-highlight-color: transparent;
    box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
    
  .slide_section {
    -webkit-tap-highlight-color: transparent;
    height: 100%;
    display: flex;
  }

  .section_wrapper {
    -webkit-tap-highlight-color: transparent;
    box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    flex-direction: column;
    visibility: visible;
  }

  .slide_editor_wrapper {
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    overflow: hidden auto;
    scrollbar-width: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
  }

  .slide_editor_content {
    margin: auto;
    width: 100%;
    padding-top: 0px;
    -webkit-tap-highlight-color: transparent;
    box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
  }

  .slide_section_root {
    -webkit-tap-highlight-color: transparent;
    box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
  }

  .root_wrapper {
    -webkit-tap-highlight-color: transparent;
    box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
    padding-inline: 40px;
    text-align: start;
  }

  .root_content {
    -webkit-tap-highlight-color: transparent;
    box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    max-width: 720px;
    margin: 0px auto;
    padding-inline: 0px;
  }

  .root_spacer {
    -webkit-tap-highlight-color: transparent;
    box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
    margin-block: 32px 144px;
  }

  .question_editor_wrapper {
    -webkit-tap-highlight-color: transparent;
    box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
  }

  .question_title_wrapper {
    position: relative;
    transition: opacity 0.2s;
    -webkit-tap-highlight-color: transparent;
    box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
  }

  .question_header_wrapper {
    max-width: 100%;
    -webkit-tap-highlight-color: transparent;
    box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
  }

  .question_header_content {
    -webkit-font-smoothing: antialiased;
    display: flex;
    position: relative;
    overflow-wrap: break-word;
    -webkit-tap-highlight-color: transparent;
    box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
  }

  .header_counter_position {
    position: relative;
    height: 28px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
    box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
  }

  .header_counter_wrapper {
    position: absolute;
    inset-inline-end: 100%;
    -webkit-tap-highlight-color: transparent;
    box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
  }

  .counter_spacer_wrapper {
    -webkit-tap-highlight-color: transparent;
    box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
    margin-inline-end: 8px;
  }

  .counter_spacer_content {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    color: rgb(4, 69, 175);
    font-size: 14px;
    line-height: 20px;
    height: 100%;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
  }

  .counter_text_wrapper {
    -webkit-tap-highlight-color: transparent;
    box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
    margin: 0px;
    max-width: 100%;
    width: inherit;
    font-weight: unset;
    font-size: 14px;
    line-height: 20px;
  }

  .counter_text_spacer {
    -webkit-tap-highlight-color: transparent;
    box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
    margin-inline-start: 2px;
  }

  .counter_text_spacer_boundary {
    -webkit-tap-highlight-color: transparent;
    box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
  }

  .counter_text_spacer_icon {
    display: block;
    fill: rgb(4, 69, 175);
    transition: fill 0.2s;
    -webkit-tap-highlight-color: transparent;
    box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
  }

  .header_text_wrapper {
    -webkit-tap-highlight-color: transparent;
    box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
    margin: 0px;
    max-width: 100%;
    width: inherit;
    font-weight: unset;
    font-size: 20px;
    line-height: 28px;
    color: rgb(0, 0, 0);
    text-align: start;
  }

  .header_block_title {
    margin: 0px;
    max-width: 100%;
    width: inherit;
    font-weight: unset;
    font-size: 20px;
    line-height: 28px;
  }

  .question_spacer_wrapper {
    -webkit-tap-highlight-color: transparent;
    box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
    margin-block-start: 8px;
  }

  .block_description {
    box-sizing: inherit; 
  }

  .spacer_wrapper {
    -webkit-tap-highlight-color: transparent;
    box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
    margin-block-start: 32px;
  }

  .delay_intersection_disabled_wrapper {
    transition: opacity 0.2s ease-in-out;
    opacity: 1;
    box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
  }

  .textarea_wrapper {
    box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
  }

  .input_wrapper {
    -webkit-tap-highlight-color: transparent;
    box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    position: relative;
  }

  .auto_size_textarea {
    appearance: none;
    display: block;
    width: 100%;
    font-family: inherit;
    color: rgb(4, 69, 175);
    padding-block-start: 0px;
    padding-block-end: 8px;
    padding-inline: 0px;
    border-radius: 0px;
    border: none;
    outline: none;
    background-color: transparent;
    font-size: 24px;
    line-height: 32px;
    resize: none;
    overflow: hidden;
    transition: box-shadow 0.1s ease-out;
    box-shadow: rgba(4, 69, 175, 0.3) 0px 1px;
    overflow-x: hidden;
    overflow-wrap: break-word;
    -webkit-tap-highlight-color: transparent;
    box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
  }

  .auto_size_textarea::placeholder {
    color: rgb(180, 199, 231);
  }

  .auto_size_textarea:focus {
    box-shadow: rgb(4, 69, 175) 0px 2px;
  }

  .input_field {
    -webkit-tap-highlight-color: transparent;
    box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
    display: block;
    width: 100%;
    font-family: inherit;
    color: rgb(4, 69, 175);
    padding-block-start: 0px;
    padding-block-end: 8px;
    padding-inline: 0px;
    border: none;
    outline: none;
    border-radius: 0px;
    appearance: none;
    background-image: none;
    background-position: initial;
    background-size: initial;
    background-repeat: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    transform: translateZ(0px);
    font-size: 24px;
    -webkit-font-smoothing: antialiased;
    line-height: unset;
    animation: 1ms ease 0s 1 normal none running native-autofill-in;
    transition: background-color 1e+08s, box-shadow 0.1s ease-out;
    box-shadow: rgba(4, 69, 175, 0.3) 0px 1px;
    background-color: transparent !important;
    margin: 0px;
  }

  .input_field::placeholder {
    -webkit-text-fill-color: rgb(180, 199, 231);
  }

  .input_field:read-only {
    caret-color: transparent;
  }

  .long_text_note {
    margin-block-start: 12px;
  }

  .number_note {
    margin-block-start: 24px;
  }

  .date_spacer {
    margin-block-start: 300px;
  }

  .date_inputs_root {
    position: relative;
    display: flex;
    -webkit-box-align: baseline;
    align-items: baseline;
    width: 280px;
    -webkit-tap-highlight-color: transparent;
    box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
  }

  .date_input_distribute {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  .input_distribute_spacer {
    flex: 0 0 auto;
    margin-block-end: 8px;
  }

  .input_distribute_text {
    margin: 0px;
    max-width: 100%;
    width: inherit;
    font-weight: unset;
    font-size: 12px;
    line-height: 16px;
    color: rgb(4, 69, 175);
  }

  .input_distribute_wrapper {
    width: 100%;
    position: relative;
    flex: 0 0 auto;
  }

  .data_input_month {
    width: calc(3.5ch);
    display: block;
    width: 100%;
    font-family: inherit;
    color: rgb(4, 69, 175);
    padding-block-start: 0px;
    padding-block-end: 8px;
    padding-inline: 0px;
    border: none;
    outline: none;
    border-radius: 0px;
    appearance: none;
    background-image: none;
    background-position: initial;
    background-size: initial;
    background-repeat: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    transform: translateZ(0px);
    font-size: 24px;
    -webkit-font-smoothing: antialiased;
    line-height: unset;
    animation: 1ms ease 0s 1 normal none running native-autofill-in;
    transition: background-color 1e+08s, box-shadow 0.1s ease-out;
    box-shadow: rgba(4, 69, 175, 0.3) 0px 1px;
    background-color: transparent !important;
    margin: 0px;
  }

  .data_input_month::placeholder {
    color: rgb(180, 199, 231);
  }

  .data_input_month:read-only {
    caret-color: transparent;
  }

  .date_input_separator {
    align-self: flex-end;
    margin-inline: 20px 16px;
    margin-block-end: 8px;
    box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
  }

  .date_input_separator_wrapper {
    margin: 0px;
    max-width: 100%;
    width: inherit;
    font-weight: unset;
    font-size: 24px;
    line-height: 32px;
    color: rgb(4, 69, 175);
  }

  .day_input:focus-within + .bootstrap-datetimepicker-widget.dropdown-menu {
    inset: auto auto auto 0px !important; 
  }

  .month_input:focus-within + .bootstrap-datetimepicker-widget.dropdown-menu {
    inset: auto -80px auto auto !important;
  }

  .year_input:focus-within + .bootstrap-datetimepicker-widget.dropdown-menu {
    inset: auto 0px auto auto !important;
  }

  .multiple_choice_wrapper {
    -webkit-tap-highlight-color: transparent;
    box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
  }

  .multiple_choice_options {
    margin: 0px;
    padding: 0px;
    max-width: 100%;
    min-width: 168px;
    display: inline-flex;
    flex-flow: column wrap;
    -webkit-box-align: stretch;
    align-items: stretch;
    user-select: none;
    margin-block-end: -8px;
  }

  .multiple_choice_option {
    touch-action: manipulation;
    margin-bottom: 8px;
    opacity: 1;
    width: 100%;
    min-width: 150px;
    transition: transform linear;
    margin-block-end: 8px;
    list-style: none;
    display: block;
    outline: none;
    border-radius: 4px;
    text-align: -webkit-match-parent;
    unicode-bidi: isolate;
  }

  .multiple_choice_option_disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
  }

  .multiple_choice_option_checkbox {
    width: 100%;
    height: 100%;
    outline: none;
  }

  .multiple_choice_option_root {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    border-radius: 4px;
    background-color: rgba(4, 69, 175, 0.1);
    box-shadow: rgba(4, 69, 175, 0.6) 0px 0px 0px 1px inset;
    color: rgb(4, 69, 175);
    max-width: 100%;
    height: inherit;
    min-height: 40px;
    outline: 0px;
    padding-block: 4px;
    transition-duration: 0.1s;
    transition-property: background-color, color, border-color, opacity, box-shadow;
    transition-timing-function: ease-out;
    width: 100%;
    word-break: break-word;
    cursor: pointer;
    opacity: 1;
  }

  .multiple_choice_option_root:focus-within {
    box-shadow: rgb(4, 69, 175) 0px 0px 0px 2px inset;
    background-color: rgba(4, 69, 175, 0.3);
  }

  .multiple_choice_option_style:hover {
    background-color: rgba(4, 69, 175, 0.3);
  }

  .multiple_choice_option_style.active {
    box-shadow: rgb(4, 69, 175) 0px 0px 0px 2px inset;
    background-color: rgba(4, 69, 175, 0.3);
  }

  .multiple_choice_option_root_wrapper {
    display: flex;
    align-self: flex-start;
    margin-block-start: 4px;
    margin-block-end: 0px;
    margin-inline-start: 8px;
    margin-inline-end: 8px;
  }

  .multiple_choice_option_root_content {
    position: relative;
    width: 24px;
    min-width: 22px;
    height: 24px;
    border-radius: 2px;
    font-size: 12px;
    line-height: 16px;
    font-family: sans-serif;
    border-color: rgba(4, 69, 175, 0.6);
    background-color: rgba(255, 255, 255, 0.8);
    color: rgb(4, 69, 175);
  }

  .multiple_choice_option_root_content.active {
    border-color: rgb(4, 69, 175);
    background-color: rgb(4, 69, 175);
    color: rgb(255, 255, 255);
  }

  .option_key_wrapper {
    position: absolute;
    inset-inline-end: 0px;
  }

  .option_key_content {
    height: 24px;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    border-width: 1px;
    border-style: solid;
    border-radius: 2px;
    border-color: rgba(4, 69, 175, 0.6);
    background-color: rgb(255, 255, 255);
  }

  .option_key_content.active {
    border-color: rgb(4, 69, 175);
    background-color: rgb(4, 69, 175);
  }

  .key_text {
    display: none;
    padding-inline-start: 7px;
    white-space: nowrap;
  }

  .key_letter {
    width: 22px;
    height: 22px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    font-weight: 700;
    -webkit-box-pack: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  .option_readable_element {
    width: 100%;
    min-width: 100px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    flex: 1 1 0%;
    text-align: start;
    word-break: break-word;
  }

  .option_text_wrapper {
    margin: 0px;
    max-width: 100%;
    width: inherit;
    font-weight: unset;
    font-size: 16px;
    line-height: 24px;
    transition: opacity 90ms ease-in-out;
  }

  .option_text_spacer {
    margin-right: 8px;
  }

  .option_text_input_wrapper {
    display: none;
    user-select: auto;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -webkit-tap-highlight-color: transparent;
    transition: opacity 90ms ease-in-out;
    box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
  }

  .option_text_quill_theme {
    -webkit-tap-highlight-color: transparent;
    transition: opacity 90ms ease-in-out;
    box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
  }

  .option_text_quill_styles {
    position: relative;
    margin-right: 8px;
    margin-left: 8px;
    overflow: visible;
    cursor: text;
  }

  .option_text_quill_editor {
    box-sizing: border-box;
    font-family: inherit;
    font-size: inherit;
    height: 100%;
    margin: 0px;
    position: relative;
    overflow: visible;
  }

  .multiple_choice_option_root:focus-within .option_text_input_wrapper {
    display: unset;
  }

  .multiple_choice_option_root:focus-within .option_readable_wrapper {
    display: none;
  }

  .option_checkbox_content {
    flex-shrink: 0;
    padding-block: 0px;
    padding-inline: 8px 10px;
    opacity: 0;
  }

  .option_checkbox_content.active {
    opacity: 1;
  }

  .option_checkbox_boundary {
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
  }

  .option_checkbox_icon {
    display: block;
    fill: rgb(4, 69, 175);
    transition: fill 0.2s;
  }

  .multiple_choice_count_wrapper {
    min-height: 30px;
    display: inline-block;
    -webkit-tap-highlight-color: transparent;
    box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
  }

  .multiple_choice_count_content {
    margin: 0px;
    max-width: 100%;
    width: inherit;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: rgb(4, 69, 175);
    text-align: start;
  }
}

