/* include cdn of font family popins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

#simple-table-appointments-wrapper {
  margin-bottom: 20px;
  width: 100%;
  max-width: 100%;
}

.tables-part {
    margin-top: 20px;
}

#simple-table-appointments {
  width: 100%;
}

#button-row button {
  height: 43px;
  padding: 10px;
  margin-top: 23px;
}

.tables-with-chairs-container > div {
  max-width: 347px;
  flex: 1;
}

.tables-with-chairs-container {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}

.tables-with-chairs-container button{
  font-size: 14px!important;
}

.table-wrapper {
  position: relative;
  display: inline-block;
}

.table-wrapper img {
  display: block;
}

.table-labels {
  position: absolute;
  top: 50%;
  white-space: nowrap;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  font-size: 10px;
  pointer-events: none;
}

.table-labels div {
  margin: 0;
  line-height: 1.5;
}

.tb-index {
    font-size: 14px;
}

html {
    font-family: 'Poppins', sans-serif;
}

.skeleton-loader .skeleton-line {
    height: 20px;
    background-color: #e0e0e0;
    border-radius: 4px;
    animation: shimmer 1.2s infinite;
  }

  @keyframes shimmer {
    0% {
      background-position: -1000px 0;
    }

    100% {
      background-position: 1000px 0;
    }
  }

  .skeleton-line {
    width: 100%;
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
  }

.grid-cell {
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border: 1px solid #00b4e5;
    text-align: center;
    border-radius: 10px;
    line-height: 50px;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.grid-cell.selected {
    background-color: #007bff;
    color: white;
}

.grid-cell:not(.selected):hover::before {
    content: '+';
    font-size: 2rem;
    color: #00b4e5;
    font-weight: 500;
    position: absolute;
    inset: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid-cell.dragging {
    opacity: 0.5;
}

.grid-cell.over {
    border: 2px dashed #007bff;
}


/* start line stepper */
.stepper_cmaxe {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
    margin-bottom: 25px;
}

.stepper_qpaxe_dot {
    --color: #AAAAAA;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    border: 2px solid #E5E5E5;
    position: relative;
    cursor: pointer;
    background: white;
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 300;
    text-align: center;

}

.stepper_qpaxe_dot.current,
.stepper_qpaxe_dot.finished {
    --color: #00B4E5;
    border: 2px solid #00B4E5;
}

.stepper_qpaxe_dot.finished {
    background: #00b4e5 url('data:image/svg+xml;utf8,<svg width="14" height="10" viewBox="0 0 14 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 4.79032L5.48511 8L12 2" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center center;
}

.stepper_qpaxe_dot::before {
    content: attr(data-text);
    position: absolute;
    text-wrap: nowrap;
    top: 100%;
    left: 50%;
    color: var(--color);
    transform: translateX(-50%);
}

.stepper_wraxe_line {
    flex-grow: 1;
    border-bottom: 2px dashed #E5E5E5;
}

.stepper_wraxe_line.finished {
    border-color: #00b4e5;
}

/* end line stepper */

.title-content-echo-s {
    font-family: 'Poppins';
    font-size: 25px;
    font-weight: 600;
    line-height: 37.5px;
    text-align: left;
    color: #0C2640;
}

.title-content-zmi {
    font-family: 'Poppins';
    font-size: 20px;
    font-weight: 600;
    line-height: 20.12px;
    text-align: left;
    margin-bottom: 22px;
    color: #0C2640;
}


.edit-mode .title-content-zmi {
    display: none;
}


.title-content-subzmi {
    font-size: 14px;
    font-weight: 600;
    line-height: 20.12px;
    text-align: left;
    margin-bottom: 10px;
    color: #0C2640;
}


.sync-calendar-option {
    border: 1px solid #e5e5e5;
    text-align: center;
    padding-top: 6px;
    border-radius: 5px;
    width: 100%;
    height: 41px;
    cursor: pointer;
}

.sync-calendar-option:has(input:checked) {
    border: 1px solid #00b4e5;
    background: #00b4e5;
    color: white;
}

.sync-calendar-option.disabled {
    background: #f5f5f5;
    color: #b3b3b3;
    cursor: not-allowed;
    pointer-events: none;
}

.sync-calendar-option.disabled img {
    filter: grayscale(100%) brightness(1);
}

.sync-calendar-option:has(input:checked) img.calendar-icon:not(.checked) {
    display: none;
}

.sync-calendar-option:has(input:not(:checked)) img.calendar-icon.checked {
    display: none;
}

.or-another-sync-calendar {
    font-size: 14px;
    font-weight: 400;
    line-height: 20.12px;
    text-align: left;
    display: flex;
    white-space: nowrap;
    align-items: center;
}

.or-another-sync-calendar::after {
    content: '';
    margin-left: 10px;
    margin-right: 10px;
    border-bottom: 1px solid #e5e5e5;
    width: 100%;
    flex-grow: 1;
    transform: translateY(-50%);
}


.radio-checkbox-cmaxe {
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
    cursor: pointer;
    user-select: none;
}

.radio-checkbox-cmaxe input[type="radio"] {
    display: none;
}

.radio-checkbox-cmaxe::before {
    content: '';
    width: 25px;
    height: 25px;
    border: 1px solid #00b4e5;
    border-radius: 3px;
    margin-right: 10px;
}

.radio-checkbox-cmaxe:has(input[type="radio"]:checked)::before {
    background: #00b4e5 url('data:image/svg+xml;utf8,<svg width="14" height="10" viewBox="0 0 14 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 4.79032L5.48511 8L12 2" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center center;
}


.avatar-image-cmaxe {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: #0c2640;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

#button-next-calendar-sync {
    padding: 10px!important;
}

.btn-cmaxe {
    background-color: #e5e5e5;
    width: 100%;
    color: #707070;
    padding: 15px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    height: 41px;
    font-size: 14px;
}

.btn-cmaxe.active {
    background-color: #00b4e5;
    color: white !important;
    cursor: pointer;
}

.btn-cmaxe.active img {
    filter: brightness(5);
}

.jvaxe-container {
    background: white;
    padding: 25px;
    border-radius: 5px;
    border: 1px solid #E5E5E5;
}

.box-gt-row-container {
    margin-bottom: 22px;
}

.breadcrumb_cmqs {
    color: #333333;
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumb_cmqs>span {
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 400;
    color: #333333;
}


.container-gtres {
    display: flex;
    flex-wrap: wrap;
    column-gap: 0.5rem;
    border: 1px solid #00B4E5;
    border-radius: 5px;
    padding: 2px;
    margin-bottom: 22px;
}

.radio-gtreservation {
    background-color: #e5f6f9;
    padding: 10px;
    height: 41px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    color: #707070;
    flex-grow: 1;
    user-select: none;
    margin-bottom: 0;
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}

.radio-gtreservation:has(input:checked) {
    background-color: #00a6d9;
    color: white;
}

.radio-gtreservation.disabled {
    /* opacity: 0.5; */
    /* pointer-events: none; */
}


.delete-section-abf,
.delete-table-abf {
    background: url('data:image/svg+xml,<svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M7.53792 1.00007C7.18029 0.999539 6.8664 0.999071 6.58671 1.10907C6.34215 1.20525 6.12565 1.3613 5.95707 1.56289C5.76427 1.79344 5.66545 2.09137 5.55286 2.43081L5.33218 3.09311H1.52326C1.23427 3.09311 1 3.32738 1 3.61637C1 3.90535 1.23427 4.13962 1.52326 4.13962H2.42522L2.848 11.3268C2.8904 12.0477 2.92405 12.6197 2.98815 13.0804C3.05379 13.5521 3.15621 13.9497 3.35925 14.3107C3.6893 14.8975 4.19025 15.3698 4.79542 15.6649C5.16768 15.8463 5.57064 15.9252 6.04541 15.9631C6.50908 16 7.08211 16 7.80419 16H9.19581C9.91789 16 10.4909 16 10.9546 15.9631C11.4294 15.9252 11.8323 15.8463 12.2046 15.6649C12.8097 15.3698 13.3107 14.8975 13.6408 14.3107C13.8438 13.9497 13.9462 13.5521 14.0119 13.0804C14.0759 12.6197 14.1096 12.0477 14.152 11.327L14.4396 6.43777C14.4566 6.14929 14.2365 5.90166 13.948 5.8847C13.6595 5.86772 13.4119 6.08783 13.3949 6.37632L13.1086 11.2431C13.0646 11.9912 13.033 12.5216 12.9753 12.9362C12.9185 13.3444 12.8413 13.5973 12.7286 13.7977C12.5028 14.1991 12.16 14.5223 11.746 14.7242C11.5394 14.8249 11.2824 14.8871 10.8715 14.9199C10.4542 14.9531 9.92286 14.9535 9.17354 14.9535H7.82646C7.07714 14.9535 6.54576 14.9531 6.12852 14.9199C5.71761 14.8871 5.46065 14.8249 5.25401 14.7242C4.83995 14.5223 4.4972 14.1991 4.27137 13.7977C4.15867 13.5973 4.08148 13.3444 4.02468 12.9362C3.96699 12.5216 3.9354 11.9912 3.8914 11.2431L3.47354 4.13962H5.69553C5.70479 4.13987 5.71402 4.13986 5.72322 4.13962H11.2768C11.286 4.13986 11.2952 4.13987 11.3045 4.13962H15.4767C15.7657 4.13962 16 3.90535 16 3.61637C16 3.32738 15.7657 3.09311 15.4767 3.09311H11.6678L11.4471 2.43081C11.3345 2.09137 11.2357 1.79344 11.0429 1.56289C10.8743 1.3613 10.6578 1.20525 10.4133 1.10907C10.1336 0.999071 9.81971 0.999539 9.46208 1.00007H7.53792ZM10.5647 3.09311L10.4783 2.83378C10.3269 2.37972 10.2884 2.2919 10.2401 2.23423C10.1839 2.16704 10.1118 2.11502 10.0303 2.08296C9.9603 2.05545 9.86479 2.04665 9.38617 2.04665H7.61383C7.13521 2.04665 7.0397 2.05545 6.96974 2.08296C6.88822 2.11502 6.81606 2.16704 6.75986 2.23423C6.71164 2.2919 6.67309 2.37972 6.52174 2.83378L6.4353 3.09311H10.5647Z" fill="%23AAAAAA" stroke="%23AAAAAA" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    color: #AAAAAA;
    background-repeat: no-repeat;
    padding-left: 20px;
    background-position: 0px 50%;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
}

.delete-section-abf:hover,
.delete-table-abf:hover {
    color: #F64E60;
    background: url('data:image/svg+xml,<svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_2234_4185)"><path fill-rule="evenodd" clip-rule="evenodd" d="M7.53792 1.00007C7.18029 0.999542 6.8664 0.999074 6.58671 1.10907C6.34215 1.20525 6.12565 1.3613 5.95707 1.56289C5.76427 1.79344 5.66545 2.09137 5.55286 2.43081L5.33218 3.09311H1.52326C1.23427 3.09311 1 3.32738 1 3.61637C1 3.90535 1.23427 4.13962 1.52326 4.13962H2.42522L2.848 11.3268C2.8904 12.0477 2.92405 12.6197 2.98815 13.0804C3.05379 13.5521 3.15621 13.9497 3.35925 14.3107C3.6893 14.8975 4.19025 15.3698 4.79542 15.6649C5.16768 15.8463 5.57064 15.9252 6.04541 15.9631C6.50908 16 7.08211 16 7.80419 16H9.19581C9.91789 16 10.4909 16 10.9546 15.9631C11.4294 15.9252 11.8323 15.8463 12.2046 15.6649C12.8097 15.3698 13.3107 14.8975 13.6408 14.3107C13.8438 13.9497 13.9462 13.5521 14.0119 13.0804C14.0759 12.6197 14.1096 12.0477 14.152 11.327L14.4396 6.43777C14.4566 6.14929 14.2365 5.90166 13.948 5.8847C13.6595 5.86772 13.4119 6.08783 13.3949 6.37632L13.1086 11.2431C13.0646 11.9912 13.033 12.5216 12.9753 12.9362C12.9185 13.3444 12.8413 13.5973 12.7286 13.7977C12.5028 14.1991 12.16 14.5223 11.746 14.7242C11.5394 14.8249 11.2824 14.8871 10.8715 14.9199C10.4542 14.9531 9.92286 14.9535 9.17354 14.9535H7.82646C7.07714 14.9535 6.54576 14.9531 6.12852 14.9199C5.71761 14.8871 5.46065 14.8249 5.25401 14.7242C4.83995 14.5223 4.4972 14.1991 4.27137 13.7977C4.15867 13.5973 4.08148 13.3444 4.02468 12.9362C3.96699 12.5216 3.9354 11.9912 3.8914 11.2431L3.47354 4.13962H5.69553C5.70479 4.13987 5.71402 4.13986 5.72322 4.13962H11.2768C11.286 4.13986 11.2952 4.13987 11.3045 4.13962H15.4767C15.7657 4.13962 16 3.90535 16 3.61637C16 3.32738 15.7657 3.09311 15.4767 3.09311H11.6678L11.4471 2.43081C11.3345 2.09137 11.2357 1.79344 11.0429 1.56289C10.8743 1.3613 10.6578 1.20525 10.4133 1.10907C10.1336 0.999074 9.81971 0.999542 9.46208 1.00007H7.53792ZM10.5647 3.09311L10.4783 2.83378C10.3269 2.37972 10.2884 2.2919 10.2401 2.23423C10.1839 2.16704 10.1118 2.11502 10.0303 2.08296C9.9603 2.05545 9.86479 2.04665 9.38617 2.04665H7.61383C7.13521 2.04665 7.0397 2.05545 6.96974 2.08296C6.88822 2.11502 6.81606 2.16704 6.75986 2.23423C6.71164 2.2919 6.67309 2.37972 6.52174 2.83378L6.4353 3.09311H10.5647Z" fill="%23DA3743" stroke="%23DA3743" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round"/></g><defs><clipPath id="clip0_2234_4185"><rect width="17" height="17" fill="white"/></clipPath></defs></svg>');
    background-repeat: no-repeat;
    background-position: 0px 50%;
}

.btn-disconnect-google {
    color: #F64E60;
    border: 1px solid #F64E60;
    background-color: #F64E600D;
    font-family: 'Poppins';
    padding: 5px 24px;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}

.btn-connect-google {
    color: #00B4E5;
    border: 1px solid #00B4E5;
    background-color: #00B4E50D;
    font-family: 'Poppins';
    padding: 5px 24px;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}

.app-user-name {
    font-family: 'Poppins';
    font-size: 18px;
    font-weight: 600;
    color: #0C2640;
}

.app-user-email {
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 400;
    color: #707070;
}


.available-cal-select,
.available-cal-select:focus,
.available-cal-select:focus-visible {
    width: 100%;
    border: unset;
    padding: 10px 15px;
    border-radius: 5px;
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
    color: #333333;
    box-shadow: unset;
    cursor: pointer;
    -moz-appearance: none;
    -webkit-appearance: none;
    outline: none;
}

.available-cal-select::-ms-expand {
    display: none;
}

.input-group-cal {
    width: 100%;
    border: 1px solid #00B4E5;
    border-radius: 5px;
    display: flex;
}

.input-group-cal::after {
    content: url(../img/appointments/dropdown-arrow.svg);
    width: 10px;
    height: 10px;
    position: relative;
    right: 10px;
    pointer-events: none;
    top: 7px;
}

.abf-container {
    border: 1px solid #00B4E5;
    display: flex;
    justify-content: space-between;
    border-radius: 5px;
    align-items: center;
    padding-right: 15px;
    background:white;
}

.abf-container input {
    height: 41px;
    border: none;
    outline: none;
    padding: 20px 17px;
    border-radius: 10px;
    font-size: 14px;
    width: 100%;
    font-weight: 400;
    color: #333333;
}

.abf-container input::placeholder {
    font-size: 14px;
    font-weight: 400;
    color: #AAAAAA;
}

.abf-container span {
    color: #AAAAAA;
    white-space: nowrap;
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 300;
    text-align: right;

}

.abf-radio-length {
    cursor: pointer;
    user-select: none;
    margin-bottom: 0px;
    color: #AAAAAA;
    font-weight: 300;
    font-size: 14px;
}

.abf-radio-length:has(input:checked) {
    font-weight: 600;
    color: #0C2640;
}

.abf-radio-length input {
    display: none;
}


.step-6-title {
    font-family: 'Poppins';
    font-size: 20px;
    font-weight: 600;
    line-height: 20.12px;
    text-align: left;
    color: #0C2640;
    margin: 20px 0 15px 0;
}

.step-6-description {
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
    text-align: left;
    color: #707070;
    margin-bottom: 0;
}

/* INDIVIDUAL APPOINTMENTS CSS */

.individual-content {
    display: flex;
    align-items: center;
}

.individual-initials {
    background: #E5E5E5;
    color: #FFFFFF;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
}

.individual-content p {
    margin: 0 0 0 10px;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 600;
    color: #E5E5E5;
}

.individual-slot-row label {
    border: 1px solid #E5E5E5;
    height: 50px;
    display: flex;
    padding: 10px 22px;
    border-radius: 5px;
    transition: border 0.3s ease;
    cursor: pointer;
    margin-bottom: 10px;
    justify-content: space-between;
}

input[name="input_individual_slot"]:checked+label {
    border: 1px solid #00B4E5;
}

input[name="input_individual_slot"]:checked+label .individual-initials {
    background: #0C2640;
    color: #FFFFFF;
}

input[name="input_individual_slot"]:checked+label .individual-content p {
    color: #0C2640;
}

input[name="input_individual_slot"]:checked+label .slot-box:hover,
.simple-appointment-container .slot-box:hover {
    border: 1px solid #00B4E5;
    color: #00B4E5;
}

.slot-box {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    color: #E5E5E5;
    border-radius: 10px;
    margin: 0px 5px;
    height: fit-content;
    padding: 5px;
    width: 120px;
    height: 32px;
}

.slot-box-days {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100%;
}

.slot-box p {
    font-family: 'Poppins';
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 0;
}

.slot-interval p {
    font-weight: 300;
    font-size: 10px;
}

.slot-edit {
    display: none;
}

.slot-edit button {
    border: unset;
    background-color: unset;
    color: #00B4E5;
    padding: 0;
    width: 100%;
    height: 100%;
}

.slot-edit button::before {
    content: '';
    display: inline-block;
    background-image: url(../img/appointments/edit-slot-blue.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 15px;
    height: 15px;
    margin-right: 8px;
    vertical-align: middle;
}

.individual-appointment-container {
    display: flex;
    flex-wrap: wrap;
}

.simple-appointment-container .slot-box.active:hover .slot-edit button::before,
.individual-appointment-container .slot-box.active:hover .slot-edit button::before {
    background-image: url(../img/appointments/edit-slot.svg);
}


input[name="input_individual_slot"]:checked+label .slot-box:hover .slot-edit,
.simple-appointment-container .slot-box:hover .slot-edit {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.simple-appointment-container .slot-box.active:hover .slot-edit button,
.individual-appointment-container .slot-box.active:hover .slot-edit button {
    background-color: #00B4E5;
    color: #FFFFFF;
}

input[name="input_individual_slot"]:checked+label .slot-box:hover .slot-box-days,
.simple-appointment-container .slot-box:hover .slot-box-days {
    display: none;
}

.add-new-employee-container {
    border: 1px solid #E5E5E5;
    border-radius: 5px;
    margin-bottom: 25px;
}

.add-new-employee-container:hover {
    border: 1px solid #00B4E5;
}

.add-new-employee-container button {
    width: 100%;
    background: unset;
    text-align: left;
    padding: 15px 22px;
}

.add-new-employee-container button span {
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 600;
    color: #E5E5E5;
}

.add-new-employee-container button img {
    margin-right: 12px;
}

.add-new-employee-container .btn img {
    transition: opacity 0.3s ease;
}

.add-new-employee-container .btn:hover img {
    content: url("../img/appointments/new-emp-btn-blue.svg");
}

.add-new-employee-container .btn:hover span {
    color: #00B4E5;
}


.custom-checkbox-individual input[type="checkbox"] {
    display: none;
}

.custom-checkbox-individual {
    display: flex;
    align-items: center;
    color: #333333;
    cursor: pointer;
    user-select: none;
    margin-bottom: 25px;
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 400;
}

.custom-checkbox-individual::before {
    content: '';
    width: 25px;
    height: 25px;
    border: 1px solid #00b4e5;
    border-radius: 3px;
    margin-right: 10px;
}

.custom-checkbox-individual:has(input[type="checkbox"]:checked)::before {
    background: #FFFFFF url('data:image/svg+xml;utf8,<svg width="14" height="10" viewBox="0 0 14 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 4.79032L5.48511 8L12 2" stroke="%2300b4e5" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center center;
}

/* SIMPLE APPOINTMENTS CSS */

.simple-appointment-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.simple-appointment-container .slot-box {
    padding: 5px;
    width: 145px;
    height: 54px;
}

.simple-appointment-container .slot-box.active,
input[name="input_individual_slot"]:checked+label .individual-appointment-container .slot-box.active {
    background-color: #00B4E5;
    color: #FFFFFF;
}

.create-new-table {
    margin: 12px;
}

@media (max-width: 1024.98px) {
    .new-sys-sidebar {
        width: 100%;
        z-index: -1;
        height: 0px;
    }

    .sidebar-expanded {
        z-index: 999;
    }

    .new-sidebar-top {
        padding-left: 35px;
        padding-right: 35px;
        justify-content: space-between;
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100%;
        right: 0px;
    }

    .toggle-sidebar-icon {
        display: block;
    }

    .sidebar-main-elements {
        height: 0px;
        opacity: 0;
        visibility: hidden;
        transition: transform 0.5s ease-out;
        transform-origin: top left;
    }

    .sidebar-main-elements.active {
        height: calc(100vh - 52px);
        opacity: 1;
        visibility: visible;
        transition: all .5s linear;
    }

    .parent-ul-container {
        height: calc(100vh - 200px);
    }

    .draft-warning {
        padding-left: 5px;
    }

    .body-wrapper {
        position: relative;
    }

    .toggle-navbar-icon {
        display: block;
        padding-right: 10px;
        cursor: pointer;
    }

    .search-admin-section {
        padding: 10px;
        border-bottom: 1px solid #e1e1e1;
    }

    .notifications-text-info {
        padding: unset !important;
    }

    .notification-check-text {
        flex-wrap: wrap;
    }

    .collapse-arrow-down:after {
        right: -25px;
    }

    .visible-navbar {
        visibility: visible !important;
        opacity: 1 !important;
    }

    #sidebar-container {
        position: absolute;
        top: -445px;
        transition: 0.3s all ease-in-out;
        visibility: hidden;
        opacity: 0;
        z-index: 99 !important;
    }

    #sidebar-container,
    .sidebar-expanded {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        bottom: -100px;
    }

    .administration-section {
        margin-left: 0px !important;
        margin-top: 55px !important;
        padding-top: 10px;
        overflow-x: unset;
    }

    .mydev-datatable-header input.mydev-datatable-forms,
    .mydev-datatable-actions>a,
    .mydev-datatable-actions>button {
        margin-top: 15px;
    }

    .mydev-datatable-actions {
        flex-wrap: wrap;
    }

    .mydev-datatable-header {
        flex-wrap: wrap;
    }

    .mydev-datatable-table .mydev-datatable-actions {
        flex-wrap: unset;
    }

    .mydev-datatable-table .mydev-datatable-actions a,
    .mydev-datatable-table .mydev-datatable-actions button {
        margin-top: 0px;
    }

    .mydev-datatable-header .mydev-datatable-actions {
        justify-content: flex-start;
        margin-top: 10px;
    }

    .mydev-datatable-custom td {
        word-break: normal !important;
    }

    .main-admin-color {
        padding: 0px;
    }

    .no-sidebar-layout .administration-section {
        margin-top: 0px !important;
        padding-top: 0px !important;
        padding-left: 0px !important;
    }

    .no-sidebar-layout {
        padding: 40px 40px 0px 40px;
    }

    .search-user-holder {
        margin-left: 0px;
        left: 0px;
        right: 0px;
        width: 100%;
        height: fit-content;
        top: 100px;
        transition: 0.3s all ease-in-out;
        visibility: hidden;
        opacity: 0;
        z-index: 1;
    }

    .search-admin-section {
        margin-left: 0px;
        position: absolute;
        height: fit-content;
        border-radius: 0px;
        left: 0px;
        right: 0px;
        top: -50px;
        width: 100%;
        transition: 0.3s all ease-in-out;
        z-index: 1;
    }

    .searchbox-adm.searchbox-adm-open {
        width: 395px;
        margin-right: 15px;
    }

    /* .admin-input-holder {
        position: absolute;
        right: -10px;
        bottom: -45px;
        top: unset;
    } */
    .icon-account-mobile {
        position: fixed;
        top: 38px;
        right: 95px;
        z-index: 999;
        display: block;
        cursor: pointer;
    }

    .icon-account-mobile span {
        font-size: 20px;
        color: #fff;
    }

    .icon-menu-mobile {
        position: fixed;
        top: 33px;
        right: 40px;
        z-index: 999;
        display: block;
        cursor: pointer;
    }

    .header-logo-mobile {
        position: fixed;
        width: 100%;
        z-index: 100 !important;
        background: inherit;
        height: 100px;
        padding: 30px 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        background: #25313C;
        display: block;
    }

    .header-logo {
        display: none;
    }

    .sidebar-menu-navigation {
        margin-top: 20px !important;
    }

    .sidebar-menu-navigation .menu-list {
        margin-top: 0px;
        width: 100%;
    }

    .sidebar-menu-navigation>li>a {
        margin-bottom: 0px;
    }

    .sidebar-menu-navigation>li.active>.menu-list {
        border-bottom-left-radius: 0px;
    }

    .sidebar-menu-navigation .menu-list .menu-list {
        top: 15px;
    }

    .sidebar-menu-navigation>li.active>a.menu-item:after,
    .sidebar-menu-navigation>li.active>a.menu-item:before {
        content: unset;
    }

    .sidebar-menu-navigation>li.active>.menu-list.menu-open>li.active:after,
    .sidebar-menu-navigation>li.active>.menu-list.menu-open>li.active:before {
        content: unset;
    }

    .search-user-holder.open {
        transition: 0.3s all ease-in-out;
        visibility: visible;
        opacity: 1;
        z-index: 999;
    }

    .search-user-holder.open .search-admin-section {
        top: 0px;
        visibility: visible;
        opacity: 1;
    }

    .modal .modal-dialog-aside {
        width: 100%;
        max-width: 100%;
    }

    .notification-body-modal .nav-link {
        padding: 13px 10px;
    }

    #sidebar-container.open {
        top: 100px;
        transition: 0.3s all ease-in-out;
        visibility: visible;
        opacity: 1;
    }

    .admin-menu-toggle {
        display: none;
    }

    .admin-user-holder .dropdown-menu {
        left: 5px !important;
    }

    .notification-fixed-left {
        z-index: 99999;
    }

    .help-center-section {
        width: 180px;
        height: 180px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        margin: 0 auto;
        text-align: center;
        padding-top: 25px;
        left: -15px;
        bottom: 40px;
    }

    .help-center-title h6 {
        font-style: normal;
        font-weight: 300;
        font-size: 16px;
        line-height: 19px;
        color: #FFFFFF;
    }

    .help-center-image img {
        max-width: 70px;
        max-height: 105px;
        width: auto;
        height: auto;
    }

    .help-center-click {
        width: 111px;
        height: 39px;
        background: #18527D;
        border-radius: 10px;
        margin: 0 auto;
        text-align: center;
        line-height: 39px;
    }

    .help-center-click a {
        font-style: normal;
        font-weight: normal;
        font-size: 12px;
        line-height: 14px;
        color: #FFFFFF;
    }

    .back-menu-adm-title {
        position: unset;
        top: unset;
    }

    .li-items-list {
        top: unset;
    }

    .li-items-list-submenu {
        top: 0px;
    }

    #sidebar-container.open {
        z-index: 999 !important;
    }

    .feature-status-info {
        flex-shrink: 0;
    }

    .dashboard-feature-status button {
        font-size: 20px;
        top: 0px;
        right: 5px;
    }

    .feature-info-dashboard {
        font-size: 14px;
    }

    .show-more-info .feature-info-description {
        flex-wrap: wrap;
    }

    .feature-info-description p {
        font-size: 12px;
    }

    .feature-info-description {
        padding-top: 20px;
    }

    .info-description-holder {
        margin-right: 0px;
    }

    .switch-platform-btn .switch-dropdown-holder.show {
        left: unset !important;
        right: 0;
        max-height: 65vh;
        overflow-y: auto;
    }

    /* width */
    .switch-platform-btn .switch-dropdown-holder::-webkit-scrollbar {
        width: 3px;
    }

    /* Track */
    .switch-platform-btn .switch-dropdown-holder::-webkit-scrollbar-track {
        background: #e5e5e5;
    }

    /* Handle */
    .switch-platform-btn .switch-dropdown-holder::-webkit-scrollbar-thumb {
        background: #CFD8DC;
    }

    /* Handle on hover */
    .switch-platform-btn .switch-dropdown-holder::-webkit-scrollbar-thumb:hover {
        background: #CFD8DC;
    }

    .info-text .mydevicon-info-tooltip {
        font-size: 9px;
        height: 16px;
        width: 16px;
    }

    .request-payout {
        width: 100% !important;
    }

    .mydev-datatable-table .set-primary {
        display: flex;
        flex-shrink: 0;
        width: 105px;
        justify-content: center;
    }

    #chat-window-iframed {
        display: none;
    }

    .live-chat-content {
        display: none;
    }

    .live-chat-content-mobile {
        display: block;
        position: fixed;
        bottom: 10px;
        left: 0;
        right: 0;
        margin: 0 auto;
        background: inherit;
        width: 100%;
        text-align: center;
        padding: 10px 0px 10px 0px;
    }

    .live-chat-content-mobile .live-chat-btn img {
        margin-left: 10px;
    }

    .live-chat-logo {
        background-color: transparent !important;
        border-radius: 0px !important;
        margin-left: 0px !important;
    }

    .live-chat-content-mobile .live-chat-btn span {
        margin-left: 40px;
    }

    .live-chat-content-mobile .live-chat-btn {
        background: rgba(24, 174, 227, 0.13);
        border-radius: 35px;
        outline: none;
        border: 1px solid rgba(24, 174, 227, 0.13);
        cursor: pointer;
        padding: 4px 6px 4px 6px;
        width: 260px;
        margin: 0 auto;
    }

}

.collapse-bridge{
    display:none;
}

.edit-mode .collapse-bridge {
    /* padding: 10px 0; */
    /* margin-bottom: 10px; */
    /* padding-left: 25px; */
    position: relative;
    display: flex;
    margin-right: 20px;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
    padding-left: 16px;
}

.edit-mode .collapse-bridge::before {
    content: '►';
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%) rotate(90deg);
    font-size: 20px;
    z-index: 1;
    color: #333333;
    font-size: 12px;
}

.edit-mode .collapse-bridge::after {
    font-family: fantasy;
    color: #e8e8e8;
    content: '------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------';
}

.edit-mode .expandable-content {
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
}

.edit-mode .collapse-bridge:has(input:not(:checked))::before {
    transform: translateY(-50%) rotate(270deg);
}

.edit-mode .collapse-bridge:has(input:checked)+.expandable-content {
    display: block;
    opacity: 1;
}

.edit-mode .collapse-bridge:has(input:checked)::before {
    transform: translateY(-50%) rotate(90deg);
}

/*  */


.edit-mode #Step_1,
.edit-mode .abf-form,
.edit-mode #step_3_individual,
.edit-mode #step_3_simple,
.edit-mode #step_4_table_layout{
    margin-bottom:40px;
}

.edit-mode #step_3_table_section{
    margin-top:10px;
}






/*  */
#section-select-container:empty {
    position: relative;
    height: 60px;
}

#section-select-container:empty::before {
    content: "No Section Created";
    display: block;
    text-align: center;
    color: #707070;
    font-size: 14px;
    font-weight: 400;
    padding: 10px;
    height: 60px;
    background-color: #f5f5f5;
    border-radius: 5px;
    width: 100%;
    height: 100%;
    padding-top: 17px;
}

.jvaxe-container-x{
    background: white;
    padding: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
}


.ts-dropdown-container {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}

.ts-dropdown-header {
  border: 1px solid #00b4e5;
  border-radius: 6px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: white;
}

.ts-dropdown-text {
    color: #a0a0a0;
    font-size: 14px;
}

.ts-dropdown-arrow {
    color: #666;
    font-size: 12px;
}

.ts-dropdown-options {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    right: 0;
    border: 2px solid #bde0fe;
    border-top: none;
    border-radius: 0 0 8px 8px;
    background-color: white;
    padding: 10px;
    box-sizing: border-box;
    display: none;
    z-index: 10;
}

.ts-dropdown-options.show{
    display: block;
}

.option-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 10px;
}

.option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
}

/* Custom checkbox */
.checkbox-wrapper {
    position: relative;
    width: 25px;
    height: 25px;
    display: inline-block;
}

.checkbox-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.ts-checkbox-custom {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: white;
    border: 1px solid #00b4e5;
    border-radius: 2px;
}

/* Custom radio */
.ts-radio-wrapper {
    position: relative;
    width: 25px;
    height: 25px;
    display: inline-block;
}

.radio-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.ts-radio-custom {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: white;
    border: 1px solid #00b4e5;
    border-radius: 50%;
}

.add-dropdown {
    padding: 10px 15px;
    background-color: #4a90e2;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

.add-dropdown:hover {
    background-color: #3a80d2;
}

.modal-md-lg {
    max-width: 800px;
}

.modal-title {
    margin: 0 !important;
  }

.add-new-template-table-button{
  margin-top: 20px;
  width: 41px;
  height: 41px;
  background-color: #ffffff;
  cursor: pointer;
  border: 1px solid #e5e5e5;
  font-size: 41px;
  color: #e5e5e5;
  font-weight: 200;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.add-new-template-table-button:hover{
  /* background-color: #00b4e5; */
  color: #00b4e5;
  border: 1px solid #00b4e5;
}


.assigned-employee {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 255px;
  width: 100%;
  position: relative;
  transition: opacity 0.3s;
  padding-right: 10px;
  cursor: pointer;
}

.assigned-employee .avatar-iniciale {
  height: 41px;
  width: 41px;
  background-color: #0c2640;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  flex-shrink: 0;
}

.assigned-employee .text-full_name {
  color: #0C2640;
}

.assigned-employee .remove-avatar-icon,
.assigned-employee .remove-employee-text {
  height: 41px;
  display: none;
}

.assigned-employee .remove-employee-text {
  padding: 10px 0;
  color: #f64e60;
}

.assigned-employee:hover .remove-avatar-icon,
.assigned-employee:hover .remove-employee-text {
  display: block;
}

.assigned-employee:hover .remove-employee-text {
  padding: 10px 0;
}

.assigned-employee:hover .avatar-iniciale,
.assigned-employee:hover .text-full_name {
  display: none;
}

.check-icon-into-background::before {
    content: '[]';
    background: url('data:image/svg+xml,<svg width="26" height="18" viewBox="0 0 26 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 8.51075L9.66725 16L24 2" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 100%;
    width: 20px;
    display: inline-block;
    color: transparent;
    margin-right: 0.3rem;
}

.headline-text-to1 {
    color: #0C2640;
    font-size: 20px;
    font-family: 'Poppins';
}

.description-text-to1 {
    color: #AAAAAA;
    font-family: 'Poppins';
    padding: 0px 28px;
    font-size: 14px;
}

.btn-to1 {
    font-family: 'Poppins';
    min-height: 55px;
}

/* CLIENT SIDE APPOINTMENTS STYLES */

.stepper-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.stepper-step {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
}

.checkmark {
    display: none;
    font-size: 18px;
}

.stepper-step.completed .number {
    display: none;
}

.stepper-step.completed .checkmark {
    display: flex;
}

.stepper-step.active .step-circle,
.stepper-step.completed .step-circle {
    background-color: var(--primary-color);
}

.stepper-step.active .step-label {
    color: var(--primary-color);
}

.step-label {
    color: #707070;
    margin-left: 10px;
    white-space: nowrap;
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
}

.connector-line {
    flex-grow: 1;
    height: 2px;
    background-color: #e0e0e0;
    margin: 0 20px;
    transition: background-color 0.3s ease;
    width: 40px;
}

.client-navigation-btn {
    width: 100%;
    padding: 15px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: unset;
    cursor: pointer;
    font-family: Poppins;
    font-weight: 300;
    font-size: 16px;
    margin: 25px 0;
}

.client-navigation-btn:focus {
    outline: none;
}

.client-previous-btn {
    background-color: #E5E5E5;
    color: #707070;
}

.client-previous-btn:hover {
    background-color: #E5E5E5;
}

.client-next-btn {
    background-color: var(--primary-color);
    color: white;
}

.client-next-btn:hover {
    background-color: var(--primary-color);
}

.client-navigation-btn img {
    width: 18px;
    margin-right: 15px;
}

.client-next-btn img {
    height: 16px;
    width: 16px;
    margin-right: 8px;
}

.step-container {
    display: none;
}

.step-container.active {
    display: block;
}

.step-container .step-title {
    color: var(--primary-color);
    font-family: Poppins;
    font-weight: 600;
    font-size: 24px;
}

.steps-description {
    margin: 20px 0;
    font-family: Poppins;
    font-weight: 300;
    font-size: 16px;
    line-height: 18px;
    color: #707070;
}

.steps-description li {
    margin-top: 15px;
}

.steps-description li a{
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.reservation-details-container {
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    padding: 35px 45px;
}

.reservation-details-container p {
    color: var(--primary-color);
    font-family: Poppins;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 0;
}

.reservation-details-container span {
    color: #333333;
    font-family: Poppins;
    font-weight: 300;
    font-size: 14px;
}

.cl-section-header {
    display: flex;
    cursor: pointer;
    align-items: center;
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    color: #333333;
    padding: 10px 0;
}

.cl-section-header::after {
    content: '';
    margin-left: 10px;
    margin-right: 10px;
    border-bottom: 1px solid #e5e5e5;
    width: fit-content;
    flex-grow: 1;
    transform: translateY(-50%);
    display: flex;
}

.cl-section-content {
    display: block;
}

.collapsed .cl-section-content {
    display: none;
}

.collapsible-icon {
    transition: transform 0.3s ease-in-out;
}

.collapsed .collapsible-icon {
    transform: rotate(180deg);
}

.cal-view-form .input-wrapper.user-address::after{
    content: url(../img/appointments/user-address.svg);
}

.cal-view-form .input-wrapper.user-postal::after{
    content: url(../img/appointments/postal-code.svg);
}

.cal-view-form .input-wrapper.user-city::after{
    content: url(../img/appointments/user-city.svg);
}

.cal-view-form .input-wrapper.user-state::after{
    content: url(../img/appointments/user-state.svg);
}

.cal-view-form .input-wrapper.user-country::after{
    content: url(../img/appointments/user-country.svg);
}

.cal-view-form .input-wrapper.reservation-details::after{
    content: url(../img/appointments/reservation-details.svg);
}

.cal-view-form .input-wrapper.reservation-fee::after{
    content: url(../img/appointments/reservation-fee.svg);
}

.cal-view-form .input-wrapper.user-card-number::after{
    content: url(../img/appointments/user-card.svg);
}

.cal-view-form .input-wrapper.expiration-date::after{
    content: url(../img/appointments/expiration-date.svg);
}

.cal-view-form .input-wrapper.security-code::after{
    content: url(../img/appointments/security-code.svg);
}

.cal-view-form .input-wrapper.card-user-name::after {
    content: url(../img/appointments/user-outline.svg);
}

.client-sections-container{
    display: flex;
    flex-wrap: wrap;
    column-gap: 0.5rem;
    border: 1px solid var(--input-border-color);
    border-radius: 5px;
    padding: 2px;
    margin-bottom: 22px;
}

.cl-reservation-radio{
    background-color: #f5f5f5;
    padding: 15px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    color: #707070;
    flex-grow: 1;
    user-select: none;
    margin-bottom: 0;
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}

.cl-reservation-radio:has(input:checked) {
    background-color: var(--primary-color);
    color: white;
}

.error-message.text-danger{
    font-size: 12px;
    font-family: 'Poppins';
}

/* END OF CLIENT SIDE APPOINTMENTS STYLES */
