/*
 * Copyright (c) 2024 torplus.co.il
 * All rights reserved.
 *
 * This stylesheet and any associated documentation are the property of torplus.co.il.
 * Unauthorized copying, distribution, or modification of this code, via any medium,
 * is strictly prohibited without prior written permission from torplus.co.il.
 *
 * For licensing inquiries, please contact: support@torplus.co.il
 */

 body,
 html {
     overflow-x: hidden;
 }
 
 .calendar {
     overflow-x: hidden;
     position: relative;
     height: calc((var(--vh, 1vh) * 100) - 70px);
 }
 
 .timeline {
     width: 100%;
     margin: 0 auto;
     position: relative;
     overflow-y: auto;
     overflow-x: hidden;
     user-select: none;
     -webkit-user-select: none;
     -khtml-user-select: none;
     -moz-user-select: none;
     -ms-user-select: none;
     -webkit-touch-callout: none;
 }
 
 .timeline .hour {
     display: flex;
     align-items: stretch;
     background-color: #fff;
     position: relative;
     height: 120px;
     border-bottom: 1px dashed rgba(166, 168, 179, 0.25);
     font-size: 14px;
 }
 
 .timeline .hour .hour-label {
     width: 120px;
     text-align: center;
     border-right: 1px solid #DDD;
     border-left: 1px dashed #EEE;
     padding-left: 0;
     padding-right: 0;
     padding-top: 6px;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     margin-top: 0px;
     background: #FFF;
     color: #99a1a7;
     font-size: 14px;
 }
 
 .calendar .go-to-today {
     position: fixed;
     left: 0;
     right: 0;
     bottom: 106px;
     text-align: center;
     background-color: #0002;
     color: #444;
     font-weight: 500;
     padding: 10px 16px;
     backdrop-filter: blur(4px);
     -webkit-backdrop-filter: blur(4px);
     z-index: 10;
     width: fit-content;
     margin: 0 auto;
     border-radius: 6px;
     display: none;
     transition: opacity .25s, filter .25s, transform .25s;
 }
 
 .go-to-today::before {
     content: '';
     position: absolute;
     left: -4px;
     right: -4px;
     bottom: -4px;
     top: -4px;
     border: 2px solid #0001;
     border-radius: 10px;
 }
 
 .dropzone {
     flex-grow: 1;
     position: relative;
     height: 100%;
 }
 
 .dropzone.active {
     background-color: #FFF;
 }
 
 .dropzones-container {
     display: flex;
     flex-direction: column;
     width: calc(100% - 120px);
     background-color: #F7F7F7;
     background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='white' fill-opacity='0.75' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
 }
 
 .task {
     --task-color: #2196F3;
     --task-bg-color: #2196F322;
     --task-right: 120px;
     --tooltip-top: 0px;
     --task-height: 30px;
     --task-indicator-line: 0px;
     --tooltip-bottom-radius: 'block';
     background-color: var(--task-bg-color);
     color: var(--task-color);
     border-right: 5px solid var(--task-color);
     padding: 8px;
     border-radius: 4px;
     cursor: pointer;
     display: flex;
     position: absolute;
     left: 0;
     right: var(--task-right);
     white-space: nowrap;
     height: var(--task-height);
     box-sizing: border-box;
     z-index: 2;
     transition: left .25s, right .25s, filter .25s, font-size .25s, height .25s, top .25s, box-shadow .5s, border .5s, background-color .5s, padding .25s, opacity .25s, transform .5s;
     backdrop-filter: blur(4px);
     -webkit-backdrop-filter: blur(4px);
     user-select: none;
     -webkit-user-select: none;
     -khtml-user-select: none;
     -moz-user-select: none;
     -ms-user-select: none;
     -webkit-touch-callout: none;
 }
 
 .task.focused {
     background-color: #FFF;
     z-index: 9;
 }
 
 .task:has(.participants) .text {
     float: left;
 }
 
 .task .text {
     float: right;
     height: 100%;
     overflow: hidden;
     width: calc(100% - 35px);
     text-wrap: wrap;
     transition: width .25s;
 }
 
 .task.m1 .text,
 .task.m2 .text {
     white-space: nowrap;
     text-overflow: ellipsis;
 }
 
 .task .participants {
     font-size: 14px;
     background-color: var(--task-color);
     color: #FFF;
     height: 18px;
     padding: 0 6px;
     display: flex;
     justify-content: center;
     align-items: center;
     position: relative;
     right: -8px;
     top: -8px;
     border-radius: 6px 0 0 6px;
     transition: padding .25s, font-size .25s, top .25s;
 }
 
 .task .participants::after {
     content: '';
     position: absolute;
     width: 10px;
     height: 10px;
     box-shadow: 4px -4px var(--task-color);
     border-radius: 6px;
     right: 0px;
     top: 18px;
     transition: top .25s;
 }
 
 .task.m2 .participants::after {
     top: 18px;
 }
 
 .task .participants i {
     font-size: 10px;
     margin-right: 4px;
 }
 
 .task.m1 .participants {
     top: 0;
 }
 
 .task.m2 .participants {
     top: -4px;
 }
 
 .task .time {
     display: flex;
     justify-content: center;
     align-items: center;
     position: absolute;
     top: var(--tooltip-top);
     right: -108px;
     width: 95px;
     background-color: #FFF;
     height: 18px;
     color: var(--task-color);
     font-size: 14px;
     border-radius: 0 6px 6px 0;
     transition: width .3s ease, color .3s ease, background-color .3s ease, right 0.3s ease, left 0.3s ease;
     /* Smooth transition for repositioning */
 
 }
 
 .task.active .time,
 .task.focused:not(.dragging) .time {
     background-color: var(--task-color);
     color: #FFF;
     right: -100px;
     width: 100px;
 }
 
 .task .time::after {
     content: '';
     position: absolute;
     width: 0;
     height: 0;
     box-shadow: 0px 0px var(--task-color);
     border-radius: 0;
     left: 5px;
     top: 18px;
     display: var(--tooltip-bottom-radius);
 }
 
 .task.active .time::after,
 .task.focused .time::after {
     width: 10px;
     height: 10px;
     box-shadow: -3px -3px var(--task-color);
     border-radius: 6px;
     transition: width .5s, height .5s, box-shadow .3s ease .15s, border-radius .3s ease .15s;
 }
 
 .task.m1 .time::after,
 .task.m1 .participants::after {
     display: none;
 }
 
 .task::after {
     content: '';
     position: absolute;
     top: calc(var(--task-height));
     right: -5px;
     height: calc(var(--tooltip-top) - 30px);
     width: 5px;
     background-color: var(--task-color);
 }
 
 .task .drag {
     position: absolute;
     right: -118px;
     top: 3px;
     color: #CFCFCF;
     font-size: 12px;
 }
 
 .task.m1 {
     padding: 0 8px;
     font-size: 12px;
 }
 
 .task.m2 {
     padding: 4px 8px;
     font-size: 14px;
 }
 
 .task.dragging {
     opacity: 0.75;
     z-index: 8;
     transform: scale(1.05);
     transform-origin: center center;
     filter: blur(1px);
 }
 
 .dropzone:hover {
     background-color: #f0f0f0;
 }
 
 .task.disabled {
     opacity: 0.5;
     pointer-events: none;
 }
 
 .task .resizer {
     width: 100%;
     height: 10px;
     cursor: ns-resize;
     position: absolute;
     bottom: 0px;
     left: 0;
     right: 0;
     font-size: 10px;
     text-align: center;
     opacity: .3;
 }
 
 .task .resizer::before {
     content: '';
     position: absolute;
     top: 5px;
     left: 5px;
     right: 5px;
     height: 1px;
     border-radius: 20px;
     background-color: var(--task-color);
 }
 
 .task .label {
     background-color: var(--task-color);
     color: #FFF;
     border-radius: 6px;
     padding: 2px 4px;
     display: inline-block;
     margin: 0 6px;
 }
 
 .calendar .add-button {
     width: 60px;
     height: 60px;
     background-color: #FFF;
     position: fixed;
     z-index: 6;
     bottom: 96px;
     right: 20px;
     border-radius: 100px;
     box-shadow: 0 0 0 4px #0002;
     transition: transform .25s, filter .25s, opacity .25s, fill .25s;
     fill: #444;
 }
 
 .calendar .add-button svg {
     margin: -9px;
 }
 
 .calendar .add-button.clicked {
     transform: rotate(45deg);
     fill: #444A;
 }
 
 .calendar .create-task-blob {
     background-color: #FFF8;
     border-radius: 12px;
     position: fixed;
     bottom: 120px;
     right: 36px;
     padding: 20px;
     z-index: 6;
     backdrop-filter: blur(4px);
     -webkit-backdrop-filter: blur(4px);
     transition: clip-path .75s, bottom .75s ease-out, right .75s ease-out, transform .75s;
     border: 1px solid #0001;
     transform: scale(0) translate(-50%, -50%);
     translate: 50% 50%;
     box-shadow: 0 4px 10px #0001;
 }
 
 .calendar .create-task-blob.show {
     bottom: 170px;
     right: 42px;
     clip-path: circle(150% at right bottom);
     transition: clip-path .75s, bottom .25s, right .25s, transform .25s;
     transform: scale(1) translate(-50%, -50%);
 }
 
 .calendar .create-task-blob .title {
     font-weight: 600;
     position: relative;
     padding-bottom: 10px;
     border-bottom: 1px solid #0001;
 }
 
 .drop-indicator {
     position: absolute;
     left: 0;
     right: 5px;
     border-top: 2px dashed #F00A;
     z-index: 5;
     pointer-events: none;
     transition: top .5s, filter .5s, opacity .5s, transform .5s;
 }
 
 .drop-indicator::after {
     content: '';
     border-radius: 10px;
     background-color: #F00;
     width: 12px;
     height: 12px;
     position: absolute;
     top: -7px;
     right: 0;
     animation: indicatorEffect 1s infinite alternate;
 }
 
 .indicator-time {
     border-radius: 100px;
     padding: 2px;
     position: absolute;
     right: 50px;
     width: 60px;
     text-align: center;
     translate: 0 -50%;
     background-color: #FFF;
     z-index: 1000;
     border: 2px dashed #F00A;
     color: #C00;
     font-weight: bold;
     font-size: 14px;
     transition: top .5s;
 }
 
 .disabler {
     position: fixed;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
     z-index: 8;
     animation: disabler 1s;
     background-color: #0004;
     backdrop-filter: blur(2px);
     -webkit-backdrop-filter: blur(2px);
 
 }
 
 .calendar .header {
     padding: 10px;
     position: fixed;
     left: 0;
     right: 0;
     z-index: 7;
     background-color: #FFF7;
     backdrop-filter: blur(6px);
     -webkit-backdrop-filter: blur(6px);
     border-bottom: 1px dashed #EEE;
     text-align: center;
 }
 
 .week-selector {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }
 
 .week-selector .day {
     flex-grow: 1;
     text-align: center;
     padding: 5px;
     cursor: pointer;
     transition: background-color 0.3s, filter .25s, opacity .25s, transform .25s;
     font-weight: 100;
     font-size: 16px;
 }
 
 .week-selector .day.active {
     font-weight: 500;
     color: #2196F3;
 }
 
 .week-selector .day .day-number {
     border-radius: 20px;
     margin: 6px auto;
     display: flex;
     width: 30px;
     height: 30px;
     justify-content: center;
     align-items: center;
     font-size: 16px;
 }
 
 .week-selector .day.today .day-number {
     background-color: #0001;
 }
 
 .week-selector .day.active .day-number {
     color: #FFF;
     background-color: #2196F3;
     animation: dayNumberEffect 2s infinite alternate;
 }
 
 .week-selector .nav-button {
     display: flex;
     width: 30px;
     height: 30px;
     justify-content: center;
     align-items: center;
     cursor: pointer;
     padding: 5px;
     color: #777;
     font-weight: bold;
     border-radius: 100px;
     transition: background-color .25s;
 }
 
 .week-selector .nav-button:hover {
     background-color: #EEE;
 }
 
 
 .blur-out {
     filter: blur(2px);
     opacity: 0;
     transform: scale(1.25);
 }
 
 .task-modal {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
 }
 
 .task-modal .cancel {
     background-color: #E33;
     color: #FFF;
     border-radius: 100px;
     width: 55px;
     height: 55px;
     font-size: 20px;
     left: 0;
     right: 0;
     margin: 0 auto;
     display: flex;
     justify-content: center;
     align-items: center;
     z-index: 10;
     box-shadow: 0 0 0 6px #0001;
     transition: transform .25s, filter .25s, opacity .25s;
 }
 
 .task-modal .bottom-panel {
     position: fixed;
     bottom: 0;
     z-index: 200;
     left: 0;
     right: 0;
     padding-top: 40px;
     padding-bottom: 40px;
     padding-right: 15px;
     padding-left: 15px;
     transition: transform .25s, filter .25s, opacity .25s;
     color: #FFF;
 }
 
 .bottom-panel::before {
     position: absolute;
     background-image: linear-gradient(0deg, #000A, #0000);
     bottom: 0;
     left: 0;
     right: 0;
     top: -80px;
     content: '';
     pointer-events: none;
 }
 
 .task-modal .bottom-panel .btn,
 .create-task-blob .btn {
     background-color: #AAA;
     color: #FFF;
     border-radius: 100px;
     width: 55px;
     height: 55px;
     font-size: 20px;
     left: 0;
     right: 0;
     margin: 0 auto;
     display: flex;
     justify-content: center;
     align-items: center;
     z-index: 10;
     box-shadow: 0 0 0 6px #0001;
     transition: transform .25s, filter .25s, opacity .25s;
     position: relative;
 }
 
 .create-task-blob .btn {
     margin: 20px;
 }
 
 .task-modal .bottom-panel .btn.red,
 .create-task-blob .btn.red {
     background-color: #F33;
 }
 
 .task-modal .bottom-panel .btn.green,
 .create-task-blob .btn.green {
     background-color: #acd33c;
 }
 
 .task-modal .bottom-panel .btn.yellow,
 .create-task-blob .btn.yellow {
     background-color: #FFAA00;
 }
 
 .task-modal .bottom-panel .btn .label,
 .create-task-blob .btn .label {
     position: absolute;
     bottom: -26px;
     font-size: 14px;
     font-weight: 500;
 }
 
 .create-task-blob .btn .label {
     color: #0008;
 }
 
 .task-modal .bottom-panel .flex,
 .create-task-blob .flex {
     display: flex;
     justify-content: center;
     align-items: center;
     flex-wrap: wrap;
 }
 
 .task-modal .bottom-panel .participant .profile-icon {
     border-radius: 100px;
     width: 35px;
     height: 35px;
     background-color: #FFF;
     position: relative;
     margin-top: 10px;
     margin-bottom: 6px;
     display: flex;
     justify-content: center;
     align-items: center;
     color: #333333;
     font-size: 18px;
 }
 
 .task-modal .bottom-panel .participant .name {
     bottom: 0;
     font-size: 14px;
     text-align: center;
     color: #FFF;
     font-weight: 500;
 }
 
 .task-modal .bottom-panel .participant {
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     position: relative;
     margin-left: 6px;
     margin-right: 6px;
 }
 
 .task-modal .bottom-panel .participants {
     padding: 6px;
     text-align: center;
     margin-bottom: 20px;
     max-height: 128px;
     overflow: auto;
     position: relative;
     border-radius: 10px;
     backdrop-filter: blur(4px);
     background-color: #0001;
     transition: transform .25s, filter .25s, opacity .25s;
 }
 
 /* Worker Selector Container */
 .worker-selector-btn {
     color: #444;
     display: inline-block;
     padding: 4px 8px;
     border-radius: 6px;
     border: 1px solid #EEE;
     background-color: #F7F7F7;
 }
 
 .worker-selector-btn .selector {
     display: flex;
     justify-content: center;
     align-items: center;
     cursor: pointer;
 }
 
 .worker-selector-btn .selector-name {
     font-weight: 500;
 }
 
 .worker-selector-btn .selector-name,
 .worker-selector .worker .worker-name {
     text-align: center;
     padding: 4px;
 }
 
 .calendar .worker-selector {
     position: fixed;
     top: calc(100% + 10px);
     left: 50px;
     right: 50px;
     background-color: #fdfdfdb3;
     backdrop-filter: blur(6px);
     -webkit-backdrop-filter: blur(6px);
     border-radius: 8px;
     clip-path: circle(0px at center 24px);
     visibility: hidden;
     transition: clip-path 0.5s, visibility 0.5s;
     z-index: 10;
     padding: 2px 10px;
 }
 
 .worker-selector .workers-list {
     overflow-y: auto;
     max-height: 200px;
 }
 
 .workers-list::before {
     content: '';
     position: absolute;
     left: -4px;
     right: -4px;
     bottom: -4px;
     top: -4px;
     border: 1px solid #0000000C;
     border-radius: 12px;
 }
 
 .worker-selector .worker:not(:last-child) {
     border-bottom: 1px solid #0001;
 }
 
 .worker-selector .worker {
     position: relative;
     text-align: center;
     padding: 10px;
     cursor: pointer;
     transition: font-weight .25s;
     display: flex;
     justify-content: center;
     align-items: center;
     z-index: 1;
 }
 
 .worker-selector .title {
     font-weight: 600;
     padding: 5px;
     font-size: 14px;
 }
 
 .workers-list .worker {
     position: relative;
     text-align: center;
     padding: 10px;
     cursor: pointer;
     transition: font-weight .25s;
     display: flex;
     justify-content: center;
     align-items: center;
 }
 
 .workers-list .worker:not(:last-child) {
     border-bottom: 1px solid #0001;
 }
 
 .worker-selector.visible {
     clip-path: circle(100% at center 24px);
     visibility: visible;
 }
 
 .workers-list .worker:hover,
 .workers-list .worker.active {
     font-weight: 500;
 }
 
 
 @keyframes indicatorEffect {
     from {
         box-shadow: 0 0 0 #F003;
     }
 
     to {
         box-shadow: 0 0 0 5px #F003;
     }
 }
 
 @keyframes disabler {
     from {
         background-color: #0000;
         backdrop-filter: blur(0px);
         -webkit-backdrop-filter: blur(0px);
     }
 
     to {
         background-color: #0004;
         backdrop-filter: blur(2px);
         -webkit-backdrop-filter: blur(2px);
     }
 }
 
 @keyframes dayNumberEffect {
     from {
         box-shadow: 0 0 0 0 #2196F377;
     }
 
     to {
         box-shadow: 0 0 0 4px #2196F377;
     }
 }
 
 .loading-container::after {
     width: 100%;
     height: 100%;
     content: ' ';
     position: fixed;
     inset: 0;
     z-index: 9998;
     backdrop-filter: blur(4px);
     -webkit-backdrop-filter: blur(4px);
     background-color: #aeaeae4f;
     animation: blurIn .25s;
 }
 
 .loading-container::before {
     content: '';
     width: 85px;
     height: 85px;
     position: fixed;
     left: 50%;
     top: 50%;
     transform: translate(-50%, -50%);
     z-index: 9999;
     background-image: url('../img/icon.svg');
     background-size: contain;
     background-position: center;
     animation: rotate 2s linear infinite;
 }
 
 @keyframes rotate {
     from {
         transform: translate(-50%, -50%) rotate(0deg);
     }
 
     to {
         transform: translate(-50%, -50%) rotate(360deg);
     }
 }
 
 @keyframes blurIn {
     from {
         opacity: 0;
         backdrop-filter: blur(0px);
     }
 
     to {
         opacity: 1;
         backdrop-filter: blur(4px);
     }
 }
 
 .week-selector .day .count-number {
     font-size: 11px;
     border-radius: 6px;
     width: 20px;
     height: 20px;
     display: flex;
     justify-content: center;
     align-items: center;
     margin: 0 auto;
     font-weight: 500;
     background: rgba(208, 104, 211, 0.133);
     color: rgb(208, 104, 211);
     position: relative;
     top: -4px;
     letter-spacing: 0.5px;
 }
 
 .week-selector .day .count-number::before {
     content: '';
     position: absolute;
     inset: -3px;
     border-radius: 9px;
 }
 
 .no-overflow {
     overflow: hidden;
 }
 
  
 .choice-modal-close {
     position: absolute;
     top: 20px;
     left: 20px;
     width: 32px;
     height: 32px;
     border-radius: 50%;
     border: none;
     background: rgba(0, 0, 0, 0.05);
     color: #666;
     font-size: 24px;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.2s ease;
     padding: 0;
     line-height: 1;
 }
 
 .choice-modal-close:hover {
     background: rgba(0, 0, 0, 0.1);
     color: #000;
     transform: rotate(90deg);
 }
 
 .client-queue-show {
     position: fixed;
     inset: 0;
     background: #ffffff;
     z-index: 1000;
     direction: rtl;
     font-family: 'Rubik', sans-serif;
     display: flex;
     flex-direction: column;
     animation: modalSlideUp 0.3s ease-out;
     overflow-y: auto;
 }
 
 .client-queue-show__overlay {
     position: fixed;
     inset: 0;
     background: rgba(0, 0, 0, 0.5);
     backdrop-filter: blur(4px);
     z-index: 999;
     animation: fadeIn 0.3s ease-out;
 }
 
 .client-queue-show__header {
     padding: 20px;
     background: #f8f9fa;
     position: sticky;
     top: 0;
     z-index: 1;
 }
 
 .client-queue-show__title {
     font-size: 1.5rem;
     color: #1a1a1a;
     margin: 0;
     font-weight: 600;
 }
 
 .client-queue-show__content {
     padding: 20px;
     display: flex;
     flex-direction: column;
     gap: 8px;
     flex: 1;
 }
 
 .client-queue-show__info-container {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 12px;
     grid-template-columns: 1fr;
 }
 
 .client-queue-show__field {
     background: #ffffff;
     border-radius: 12px;
     padding: 16px;
     display: flex;
     flex-direction: column;
     gap: 8px;
     border: 1px solid rgba(0, 0, 0, 0.1);
     width: 100%;
     justify-content: center;
 }
 
 .client-queue-show__label {
     font-size: 0.875rem;
     color: #666;
     font-weight: 500;
 }
 
 .client-queue-show__value {
     font-size: 1.125rem;
     color: #1a1a1a;
     font-weight: 500;
 }
 
 .client-queue-show__notes {
     display: flex;
     flex-direction: column;
     gap: 16px;
     margin-top: 8px;
 }
 
 .client-queue-show__note {
     background: #fff5c55c;
     border-radius: 12px;
     padding: 16px;
     display: flex;
     align-items: flex-start;
     gap: 12px;
     border: 3px solid white;
     box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
 }
 
 .client-queue-show__note-content-wrapper {
     flex: 1;
 }
 
 .client-queue-show__note-label {
     font-size: 0.875rem;
     color: #343434;
     margin-bottom: 8px;
     font-weight: 500;
 }
 
 .client-queue-show__note-content {
     font-size: 1rem;
     color: #1a1a1a;
     line-height: 1.5;
 }
 
 .client-queue-show__edit-button {
     background: none;
     border: none;
     padding: 8px;
     color: #343434;
     cursor: pointer;
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.2s ease;
 }
 
 .client-queue-show__edit-button:active {
     transform: scale(0.95);
 }
 
 .client-queue-show__actions {
     padding: 16px;
     position: sticky;
     bottom: 0;
     background: #f8f9fa;
 }
 
 .client-queue-show__call-button {
     display: flex;
     align-items: center;
     justify-content: center;
     background: #343434;
     color: white;
     border: none;
     padding: 16px;
     border-radius: 12px;
     font-size: 18px;
     font-weight: 500;
     width: 100%;
     cursor: pointer;
     transition: all 0.2s ease;
     font-family: 'Rubik', sans-serif;
     gap: 8px;
     text-decoration: none;
 }
 
 .client-queue-show__call-button:active {
     transform: scale(0.98);
 }
 
 .client-queue-show__close {
     background: none;
     border: none;
     position: absolute;
     top: 16px;
     left: 16px;
     cursor: pointer;
     padding: 8px;
     color: #666;
     z-index: 2;
     display: flex;
     align-items: center;
     justify-content: center;
 }
 
 .client-queue-show__close:active {
     transform: scale(0.95);
 }
 
 .client-queue-show .d-flex {
    gap: 8px;
 }
 
 @keyframes modalSlideUp {
     from {
         transform: translateY(100%);
     }
     to {
         transform: translateY(0);
     }
 }
 
 @keyframes fadeIn {
     from {
         opacity: 0;
     }
     to {
         opacity: 1;
     }
 }
 
 @keyframes modalSlideDown {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(100%);
    }
 }
 
 @keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
 }