.fr-wrapper > div:first-child{
display:none
}
/********* Onboarding Flow *************/
#onboarding-form {
    padding-bottom: 5rem;
}
.onboarding-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    margin-top: 20px;
}
.onboarding-step {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex: 1;
}
.onboarding-step-number {
    background: #007bff;
    color: white;
    font-size: 1.5rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.onboarding-step.active .onboarding-step-number {
    background: #28a745;
}
.onboarding-step-title {
    font-weight: bold;
}

.onboarding-step-content .onboarding-step-panel {
    display: none;
}
.onboarding-step-content .onboarding-step-panel.active {
    display: block;
}
/********* Onboarding Flow *************/

/********* Employees Table *************/

.employees_table thead th ,
.salon_services_table thead th{
    white-space: nowrap;
}

.employees_table tbody td {
    white-space: nowrap;
}
/********* Employees Table *************/

.error-message,
.backend-error,
#backend-error {
    color: rgb(229 85 85) !important;
}

/* Loader button css */

.loading {
    position: relative;
    pointer-events: none;
    cursor: not-allowed;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.loading:before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    border: 2px solid;
    border-left-color: transparent;
    border-right-color: transparent;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s;
    animation: 0.8s linear infinite rotate;
}

.loading:before {
    transition-delay: 0.5s;
    transition-duration: 1s;
    opacity: 1;
}

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

/* Notify js css */
.notifyjs-corner .notifyjs-wrapper,
.notifyjs-corner .notifyjs-container {
    height: inherit !important;
    width: inherit !important;
    margin: 3px !important;
}

.notifyjs-bootstrap-base {
    padding: 8px 15px 8px 22px !important;
    border: 1px solid #fbeed5;
}

.notifyjs-bootstrap-error {
    background-position: center left !important;
}
