* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "Lufthansa";
    src: url("/asset/font/LufthansaText-Bold.otf") format("opentype");
    font-weight: 700;
}

@font-face {
    font-family: "Lufthansa";
    src: url("/asset/font/LufthansaText-Regular.otf") format("opentype");
    font-weight: 300;
}

@font-face {
    font-family: "Lufthansa";
    src: url("/asset/font/LufthansaOfficeText.ttf") format("truetype");
    font-weight: 100;
}

@font-face {
    font-family: "Lufthansa";
    src: url("/asset/font/LufthansaOfficeHead-Bold.ttf") format("truetype");
    font-weight: 900;
}


.dg.ac {
    position: absolute !important;
    z-index: 100000000 !important;
}

html,
body {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

:root {
    font-family: 'Lufthansa';
    --color-primary: #05164d;
    --color-secondry: #ffad00;
    --color-thursary: #ffffff;
    --color-grey: #747A86;
    --color-grey2: #aeb2b9;
}

#popup-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    /* bottom: -100%; */
    bottom: 100px;
    /* background-color: #c3d0e3; */
    color: #06154c;
    padding: 10px 18px;
    border-radius: 20px;
    text-decoration: none;
    /* box-shadow: 0px 1px 9px 0px #2f2f2fb5; */
    /* cursor: pointer; */
    z-index: 8;
    /* transition: all ease-in .3s; */
    transition: all 0.3s, left 0.3s, top 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
    width: 300px;
}

#popup-container h1 {
    font-size: 36px;
    line-height: 38px;
    text-align: center;
    color: #05164d;
    font-weight: 800;
}

#popup-container h4 {
    font-size: 18px;
    line-height: 20px;
    text-align: center;
    color: #05164d;
    font-weight: 600;
    margin-bottom: 10px;
}

#popup-container .popup-btns {
    display: flex;
    gap: 10px;
    align-items: center;
}

#popup-container a,
button {
    background-color: #c3d0e3;
    color: #06154c;
    padding: 6px 16px;
    border-radius: 20px;
    text-decoration: none;
    box-shadow: 0px 1px 9px 0px #2f2f2fb5;
    cursor: pointer;
    outline: none;
    border: none;
    line-height: 20px;
}

#popup-container img {
    padding-top: 4px;
    height: 20px;
}

#overlay {
    position: relative;
    display: none;
    z-index: 10;
}

#overlay button {
    transition: all 0.2s ease-in;
    background-color: var(--color-primary);
    color: #fff;
    padding: 8px 14px;
    box-shadow: 0px 1px 20px 1px #0303038f;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

#video-popup {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* background-color: rgba(44, 44, 44, 0.137); */
    backdrop-filter: blur(5px);
    z-index: 91000000;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  
  .video-popup-container {
    width: 60%;
    height: 50%;
    background-color: #ffffffe5;
  }

#overlay button:active {
    scale: 1.08;
    box-shadow: 0px 1px 20px 1px #030303e3;

}

#loader {
    display: flex;
    background-image: url('/asset/img/airport.jpg');
}

/* .mindar-ui-overlay{
    color: white;
    background-color: #e5e5f7;
    background-image: radial-gradient(#444df7c6 0.5px, #e5e5f7 0.5px);
    background-size: 10px 10px;
} */
.loader-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #05164d;
    background-color: #e5e5f7;
    background-image: linear-gradient(#ffffff41, #ffffff41), url('/asset/img/airport.jpg');
    /* background-image: radial-gradient(#444df7c6 0.5px, #e5e5f7 0.5px); */
    /* background-size: 10px 10px; */
    background-size: cover;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center !important;
    justify-content: center;
    flex-direction: column;
    z-index: 10;
    width: 100%;
    height: 100lvh;
}

.error-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #e5e5f7;
    background-image: linear-gradient(#ffffff41, #ffffff41), url('/asset/img/airport.jpg');
    z-index: 9;
    width: 100%;
    height: 100lvh;
    background-size: cover;
}

.error-container .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 90%;
    width: max-content;
}

.error-container .redirect {
    transition: all 0.2s ease-in;
    background-color: var(--color-primary);
    padding: 8px 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 40px;
    box-shadow: 0px 1px 20px 1px #0303038f;
}

.error-container .redirect a {
    color: #fff;

}

#loader .header-img {
    width: 80%;
    max-width: 400px;
    aspect-ratio: 1.144;
    margin-top: 30px;
}

#loader h1 {
    font-weight: 800;
    font-size: 56px;
    text-align: center;
}

#loader h4 {
    width: 100%;
    text-align: center;
}

#loader span {
    font-size: 14px;
}

#loader {
    color: var(--color-primary);
}

#logo {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;
    max-width: 300px;
}

.loading-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.hidden {
    display: none;
}

/* Keyframes for infinite rotation */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

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

/* Apply the animation to an element */
.loading-container>img {
    width: 18px;
    animation: rotate 2s linear infinite;
}

/* AR start button */
#start-ar-btn,
#retry-btn {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    font-size: 18px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: none;
    z-index: 10;
}

/* Retry button */
#retry-btn {
    background-color: #dc3545;
    top: 60px;
}

@media(max-width : 900px) {
    .video-popup-container {
      width: 95%;
      height: 50vw;
    }
}

@media (max-width:768px) {

    #loader h4 {
        font-size: 22px;
        text-align: center;
    }
}