<div id="loadingScreen" class="loading-screen {% if showLoading is not defined %}d-none{% endif %}">
<div class="card">
<div class="card-body">
<img src="{{ asset('assets/shop/images/spinner.gif') }}" alt="loading" style="width: 75px"/>
<div id="autoInitRequiredMessage" class="d-none">
<h3>Este necesara reinitializarea automata a vinietelor deoarece comanda este mai veche de 2 ore.</h3>
</div>
<h5>Vă rugăm așteptați</h5>
</div>
</div>
</div>
<style>
.loading-screen {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
min-height: 100vh;
z-index: 999;
position: fixed;
background-color: rgba(0,0,0,0.7);
opacity: 100%;
width: 100%;
height: 100%;
}
</style>