@import url("https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap");

body {
}

@media print {
    .noprint {
        visibility: hidden;
    }
}

[data-bs-theme="light"] {
    --bs-body-bg: #f0f6ff;
    --bs-body-bg-rgb: 240, 246, 255;
    --bs-body-color: #333;
}

.material-symbols-outlined {
    font-variation-settings:
        "FILL" 0,
        "wght" 400,
        "GRAD" 0,
        "opsz" 24;
}

:root {
    --bs-body-font-family: "Roboto Flex";
    /* --bs-body-color: #FFF; */
}


.menu .menu-sub > .menu-item > .menu-link::before {
    display: none !important;
}



label:has(+ [required]):after,
label.required:after {
    content: " *";
    font-weight: 700;
}

.swal2-container .swal2-popup .swal2-title {
    font-size: 16px !important;
    line-height: unset;
}

.reservation-service-calendar {
    .fc-daygrid-event {
        align-items: start;
    }


    .fc-event-title {
        white-space: normal !important;
    }
}

.dt-column-order:before, 
.dt-column-order:after{
    visibility: visible !important;
}

.navbar-dropdown.dropdown-notifications .dropdown-notifications-list {
    overflow: auto;
}

#daily_print {
    td,
    th {
        padding: 5px !important;
    }
    font-size: 11px !important;

    .material-symbols-outlined:not(.icon-20px) {
        font-size: 12px !important;
    }
}

.strikethrough {
    text-decoration: line-through;
}

.blink {
    animation: blinker 1s infinite;
}

@keyframes blinker {
    1% {
        /* opacity: 0; */
        color: transparent;
    }
    50% {
        /* opacity: 0; */
        color: transparent;
    }
    51% {
        /* opacity: 100%; */
        color: inherit;
    }
    100% {
        /* opacity: 100%; */
        color: inherit;
    }
}

.btn-super {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 28px;
  background: linear-gradient(145deg, #0f0f0f, #1c1c1c);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  z-index: 1;
  text-decoration: none;
}

.btn-super::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, #00ffff, #ff00ff, #00ffff);
  animation: super_rotate 4s linear infinite;
  z-index: -2;
}

.btn-super::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: #0a0a0a;
  border-radius: inherit;
  z-index: -1;
}

.btn-super:hover {
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.2);
  text-decoration: none;
}



@keyframes super_rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/**
Stepper
*/
.stepper-wrapper {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.stepper-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;

    @media (max-width: 768px) {
        font-size: 12px;
    }
}

.stepper-item::before {
    position: absolute;
    content: "";
    border-bottom: 2px solid #ccc;
    width: 100%;
    top: 20px;
    left: -50%;
    z-index: 2;
}

.stepper-item::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #ccc;
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 2;
}

.stepper-item .step-counter {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ccc;
    margin-bottom: 6px;
}

.stepper-item.active {
    font-weight: bold;
}

.stepper-item.completed .step-counter {
    background-color: #4a7dfe;
    color: #FFF;
}

.stepper-item.completed-red  .step-counter {
    background-color: red;
}

.stepper-item.completed::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #4a7dfe;
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 3;
}

.stepper-item:first-child::before {
    content: none;
}
.stepper-item:last-child::after {
    content: none;
}