/*html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}*/

.centered-title h1 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: min(20vw, 120px);
    width: 80%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    white-space: nowrap;
    overflow: auto;
    letter-spacing: -0.1em;
}

.description p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 20px;
    width: 50%;
    max-width: 50%;
    margin: 0 auto;
    text-align: center;
    color: black;
    padding-top: 20px;
}
.description h1 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: min(3.5vw, 24px);
    width: 80%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    color: black;
}

.centered-image {
    display: block;
    margin: 0 auto;
    max-width: 40%;
    height: auto;
}

@media (max-width: 768px) {

    .centered-image {
        max-width: 100%;
        height: auto;
    }
}

.button-container {
    text-align: center;
    margin-top: 20px;
}

.availability-notice {
    font-family: 'Open Sans', sans-serif;
    font-size: 10px;
    color: black;
    margin: 0px auto 0;
    margin-bottom: 100px;
    text-align: center;
}

.loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    /* Use full viewport height */
    width: 100vw;
    /* Use full viewport width */
}

#main-content {
    /*padding-top: 75px;*/
    display: flex; /* This line needs to be added */
    flex-direction: row;
    flex: 1;

}


#contents {
    display: flex; /* This line needs to be added */
    flex-direction: row;

}

#hero-text {
    display: flex; /* This line needs to be added */
    flex-direction: column;

}

#not-available {
    font-family: 'Open Sans', sans-serif;
    display: none;
    justify-content: center;
    align-items: center;

    width: 100vw;
    /* Use full viewport width */
    flex-direction: column;

}

#qrCodeImage {
    max-width: 20%;
    /* Or any appropriate size */
    margin: auto;
    /* This centers it within a block context */
    padding-bottom: 100px
}


#desktop-warning {
    padding-top: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* This ensures horizontal centering */
    justify-content: center;
    /* This ensures vertical centering */
}

.model-preview {
    display: flex;
    padding-top: 75px;

}

/*.model-view-css-fix{
    object-fit: contain;
    height: 80vh;
    width:auto;  
  }
  .model-viewer{
    height: inherit;
    width: inherit;
}*/

#reloadText {
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 10px;
    cursor: pointer; /* This makes the cursor change to a pointer on hover */

}

.loader {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 8px solid #433AC2;
    animation:
        l20-1 0.8s infinite linear alternate,
        l20-2 1.6s infinite linear;
}

@keyframes l20-1 {
    0% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%)
    }

    12.5% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%)
    }

    25% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%)
    }

    50% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%)
    }

    62.5% {
        clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%)
    }

    75% {
        clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%)
    }

    100% {
        clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%)
    }
}

@keyframes l20-2 {
    0% {
        transform: scaleY(1) rotate(0deg);
    }

    49.99% {
        transform: scaleY(1) rotate(135deg);
    }

    50% {
        transform: scaleY(-1) rotate(0deg);
    }

    100% {
        transform: scaleY(-1) rotate(-135deg);
    }
}

#inapp-browser-warning {
    text-align: left;
}

#inapp-browser-warning h4 {
    text-align: center;
    font-family: 'Open Sans', sans-serif;

}

#inapp-browser-warning li {
    text-align: left;  /* Center-align only the h4 element */
    font-family: 'Open Sans', sans-serif;

}

#inapp-browser-warning p {
    font-weight: bold;  /* Make paragraph text bold */
    text-align: left;  /* Center-align only the h4 element */
    padding: 15px;
    font-family: 'Open Sans', sans-serif;


}

#inapp-browser-warning {
    position: relative;
    min-height: 100vh; /* Ensures the entire viewport height is covered */
    display: flex;
    flex-direction: column;
    align-items: center; /* This will center the child elements */

}

.model-viewer-container {
    width: 100vh;
    height: 50vh;
    display: flex;
    justify-content: center; 
    flex-direction: column;
    align-items: center;
}