body {
    background-color: rgb(255, 219, 227);
}

model-viewer {
    height: 100%;
    width: 100%;
}

p {
    font-size: xxx-large;
    line-height: 1.5;

}

.material-icons {
    font-size: 1em !important;
}

.click {
    pointer-events: none;
    width: 100%;
    height: 200px;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 100;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
    font-size: 11em;
    font-family: helvetica;
}

.size {
    pointer-events: none;
    width: 100%;
    height: 200px;
    position: absolute;
    top: 86%;
    bottom: 0;
    z-index: 100;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
    font-size: 4em;
    font-family: helvetica;

}

.invisible {
    display: none !important;
}

.fileInIndex {
    width: 42%;
    padding: 36px;
    float: left;
    position: relative;
}

.androidIndex {
    height: 500px;
    margin-bottom: 10%;
}

.selected {
    background-color: sandybrown;
}

.index {
    position: absolute;
    width: 100%;
    height: 100%;
}

.errorMode {    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0;
    margin: auto;
    height: 200px;
    overflow: hidden;
    text-align: center;
    font-size: -webkit-xxx-large;
}

.loading {
    color: black;
    position: fixed;
    scroll-behavior: unset;
    height: 30%;
    font-size: 16em;
    font-family: Arial;
    font-weight: 900;
    text-align: -webkit-center;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
}


.fullOn {
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    z-index: 10;
}

a {
    color: black;
    text-decoration: none;
}

f {
    font-size: 1.5em;
    font-weight: 900;
}

g {
    font-size: 1.5em;
    line-height: 1.5em;
}

h {
    font-size: 1.5em;
    line-height: 1.5em;
}

.l {
    display: block;
    text-align: left;
    float: left;
    margin-top: 2em;
}

.r {
    display: block;
    text-align: right;
    margin-top: 2em;
}

.sharebutton {
    padding: inherit;
    margin-left: 0.4em;
    margin-top: 0.4em;
    font-size: 4em;
    position: absolute;
    top: 0;
    left: 0;
}

.fullOnShare {
    margin-left: 0.6em !important;
    margin-top: 0.8em !important;
    font-size: 7em !important;
}

.imgClass {
    width: 100%;
    height: 100%;
    box-shadow: 10px 10px 10px 0px grey;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
}

.modelViewerIndex {
    position: unset !important;
}

#ar-button {
    left: 0%;
    top: 0%;
    height: 100%;
    width: 100%;
    background-size: contain;
} 


 
#ar-button:active {
    background-color: #E8EAED;
}

#ar-button:focus {
    outline: none;
}

#ar-button:focus-visible {
    outline: 1px solid #4285f4;
}










.pure-material-progress-circular {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-sizing: border-box;
    border: none;
    border-radius: 50%;
    padding: 0.25em;
    width: 50em;
    height: 50em;
    color: black;
    background-color: transparent;
    font-size: 16px;
    overflow: hidden;
}

.pure-material-progress-circular::-webkit-progress-bar {
    background-color: transparent;
}

/* Indeterminate */
.pure-material-progress-circular:indeterminate {
    -webkit-mask-image: linear-gradient(transparent 50%, black 50%), linear-gradient(to right, transparent 50%, black 50%);
    mask-image: linear-gradient(transparent 50%, black 50%), linear-gradient(to right, transparent 50%, black 50%);
    animation: pure-material-progress-circular 6s infinite cubic-bezier(0.3, 0.6, 1, 1);
}

:-ms-lang(x),
.pure-material-progress-circular:indeterminate {
    animation: none;
}

.pure-material-progress-circular:indeterminate::before,
.pure-material-progress-circular:indeterminate::-webkit-progress-value {
    content: "";
    display: block;
    box-sizing: border-box;
    margin-bottom: 1.55em;
    border: solid 5em transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    width: 100% !important;
    height: 100%;
    background-color: transparent;
    animation: pure-material-progress-circular-pseudo 0.75s infinite linear alternate;
}

.pure-material-progress-circular:indeterminate::-moz-progress-bar {
    box-sizing: border-box;
    border: solid 5em transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    background-color: transparent;
    animation: pure-material-progress-circular-pseudo 0.75s infinite linear alternate;
}

.pure-material-progress-circular:indeterminate::-ms-fill {
    animation-name: -ms-ring;
}

@keyframes pure-material-progress-circular {
    0% {
        transform: rotate(0deg);
    }

    12.5% {
        transform: rotate(180deg);
        animation-timing-function: linear;
    }

    25% {
        transform: rotate(630deg);
    }

    37.5% {
        transform: rotate(810deg);
        animation-timing-function: linear;
    }

    50% {
        transform: rotate(1260deg);
    }

    62.5% {
        transform: rotate(1440deg);
        animation-timing-function: linear;
    }

    75% {
        transform: rotate(1890deg);
    }

    87.5% {
        transform: rotate(2070deg);
        animation-timing-function: linear;
    }

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

@keyframes pure-material-progress-circular-pseudo {
    0% {
        transform: rotate(-30deg);
    }

    29.4% {
        border-left-color: transparent;
    }

    29.41% {
        border-left-color: currentColor;
    }

    64.7% {
        border-bottom-color: transparent;
    }

    64.71% {
        border-bottom-color: currentColor;
    }

    100% {
        border-left-color: currentColor;
        border-bottom-color: currentColor;
        transform: rotate(225deg);
    }
}