.ajax-loader {
    top: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    text-align: center;
    background: #DA2F30;
    z-index: 99999;
    border-radius: inherit;
}

.ajax-loader-icon {
    position: absolute;
    top: calc(50% - 100px);
    left: calc(50% - 100px);
}

/*  */
input[type="number"]::-webkit-inner-spin-button {
    display: none;
}

input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
}

@keyframes fadeEffect {
    0% {
        opacity: 0.3; /* Start with 50% opacity */
    }
    50% {
        opacity: 1; /* Fade to 100% opacity */
    }
    100% {
        opacity: 0.3; /* Fade back to 50% opacity */
    }
}

#status {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url("../../images/APPETIT_160x77.svg") no-repeat center;
    margin: auto;
    opacity: 0.5; /* Initial opacity */
    animation: fadeEffect 3s infinite; /* 5 seconds for the whole cycle, repeat infinitely */
}

.btn-back {
    z-index: 999;
}