/*
html,
body {
    margin: 0;
    padding: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    background: white;
}

#app-shell {

    position: fixed;
    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;
    justify-content: center;

    background: white;

    opacity: 1;

    transition: opacity 600ms ease;
}

#app-shell.shell-fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader-background {

    position: absolute;
    inset: 0;

    background: white;
}

.entry-logo-wrapper {

    position: relative;

    width: 440px;
    height: 915px;

    max-width: 100vw;
    max-height: 100vh;

    display: flex;

    align-items: center;
    justify-content: center;
}

#lottie-loader {
    width: 220px;
    height: 457px;
    
    max-width: 100vw;
    max-height: 100vh;
    
    display: block;

    transform: translateZ(0);
    will-change: transform;
    image-rendering: auto;
}

*/

/*
html,
body {

    margin: 0;
    padding: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    background: white;
}

#app-shell {

    position: fixed;
    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;
    justify-content: center;

    background: white;

    opacity: 1;

    transition: opacity 600ms ease;
}

#app-shell.shell-fade-out {

    opacity: 0;

    pointer-events: none;
}

.loader-background {

    position: absolute;
    inset: 0;

    background: white;
}

.entry-logo-wrapper {

    position: relative;

    width: 440px;
    height: 915px;

    max-width: 100vw;
    max-height: 100vh;

    display: flex;

    align-items: center;
    justify-content: center;
}



#lottie-loader-main,
#lottie-loader-logo {

    position: absolute;

    width: 220px;
    height: 457px;

    max-width: 100vw;
    max-height: 100vh;

    display: block;

    transform: translateZ(0);

    will-change: opacity, transform;

    image-rendering: auto;

    transition: opacity 400ms ease;
}



#lottie-loader-main {

    opacity: 0;

    z-index: 1;
}



#lottie-loader-logo {

    opacity: 0;

    z-index: 2;
}

#lottie-loader-logo.visible {

    opacity: 1;
}




#startup-panel {

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 20;

    background: white;

    border-radius: 24px 24px 0 0;

    padding: 24px;

    transform: translateY(100%);

    transition: transform 500ms ease;

    box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
}

#startup-panel.visible {

    transform: translateY(0%);
}

.startup-content {

    display: flex;

    flex-direction: column;

    gap: 16px;
}
*/





html,
body {
    margin: 0;
    padding: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    /*background: white;*/

    /*font-family: Arial, sans-serif;*/
}

#app-shell {

    position: fixed;
    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;
    justify-content: center;

    /*background-color: #ee5299;*/ /*i need the default color here*/
    /*background-color: #fff;*/ /*i need the default color here*/

    opacity: 1;

    transition: opacity 600ms ease, transform 600ms ease;;

    overflow: hidden;
}

#app-shell.shell-fade-out {

    opacity: 0;
    transform: scale(1.03);/**/
    pointer-events: none;
}

#advanced-loader,
#standard-loader {
    display: none;
}

.loader-background {

    position: absolute;
    inset: 0;

    /*background: white;*/
    /*background-color: #ee5299;*/ /*i need the default color here*/
    /*background-color: #fff;*/ /*i need the default color here*/

    background: transparent;
}

.advanced-loader {
    position: absolute;
    inset: 0;

    /*background: white;*/
}


.entry-logo-wrapper {

    position: relative;

    width: 440px;
    height: 915px;

    max-width: 100vw;
    max-height: 100vh;

    display: flex;

    align-items: center;
    justify-content: center;
}

/* ========================================= */
/* CANVASES */
/* ========================================= */

#lottie-loader-main,
#lottie-loader-logo {

    position: absolute;

    width: 220px;
    height: 457px;

    max-width: 100vw;
    max-height: 100vh;

    display: block;

    transform: translateZ(0);

    will-change: transform, opacity;

    image-rendering: auto;

    transition: opacity 300ms ease;

    opacity: 0;
}

/* logo hidden initially */
#lottie-loader-logo {

    padding: 20px;
    opacity: 0;

    pointer-events: none;
}

/* ========================================= */
/* STARTUP PANEL */
/* ========================================= */

#startup-panel {

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 20;

    background: white;

    border-radius: 24px 24px 0 0;

    padding: 24px;

    box-sizing: border-box;

    transform: translateY(100%);

    transition: transform 500ms ease;

    box-shadow:
        0 -10px 30px rgba(0,0,0,0.08);
}

/* visible state */
#startup-panel.visible {

    transform: translateY(0%);
}

.startup-content {

    display: flex;

    flex-direction: column;

    font-family: Arial, sans-serif;

    gap: 16px;
}

.startup-title {

    margin: 0;

    font-size: 20px;

    font-weight: 600;

    color: #222;
}

#city-select,
#language-select {

    width: 100%;

    height: 48px;

    border-radius: 12px;

    border: 1px solid #ddd;

    padding: 0 12px;

    font-size: 16px;

    background: white;

    outline: none;

    box-sizing: border-box;
}

#startup-continue {

    margin-top: 8px;

    height: 52px;

    border: none;

    border-radius: 14px;

    background: black;

    color: white;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

    transition:
        opacity 200ms ease,
        transform 200ms ease;
}

#startup-continue:active {

    transform: scale(0.98);
}













#app-shell.logo-visible {
  opacity: 1;
  transform: scale(1);
}

.standard-loader {
    position: absolute;
    inset: 0;

    /*background: white;*/
    background: transparent;
}

.standard-entry-logo-wrapper {
  position: relative;
  z-index: 10;
}

.standard-entry-logo-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  z-index: 2;
}

#standard-lottie-loader {
    position: relative;
    width: 260px;
    height: 260px;
    z-index: 3;
}



.standard-loader-center-logo {
  position: absolute;
  width: 162px;
  height: 162px; /*162px*/
  object-fit: contain;
  border-radius: 50%;
  z-index: 4;
  pointer-events: none;
}


.standard-loader-background {
  position: fixed;
  inset: 0;
  /*background-color: white;*/
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

#app-shell,
#advanced-loader,
#standard-loader,
.loader-background,
.standard-loader-background {
    background: transparent;
}