:not(:defined) > * {
    display: none;
}
@font-face {
    font-family: "MS-Gothic";
    src: url("../fonts/MS-Gothic.ttf");
}

* {
    font-size: 1.25rem;
    font-family: "MS-Gothic";
}

html {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

model-viewer {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
}

#ar-button {
    background-image: url("../imgs/ic_view_in_ar_new_googblue_48dp.png");
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: 12px 50%;
    background-color: #00b0f0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    bottom: 132px;
    padding: 0px 16px 0px 40px;
    font-size: 15px;
    font-weight: bold;
    color:white;
    height: 36px;
    line-height: 36px;
    border-radius: 18px;
    border: 0;
}

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

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

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

@keyframes circle {
    from { transform: translateX(-50%) rotate(0deg) translateX(50px) rotate(0deg); }
    to   { transform: translateX(-50%) rotate(360deg) translateX(50px) rotate(-360deg); }
}

@keyframes elongate {
    from { transform: translateX(100px); }
    to   { transform: translateX(-100px); }
}

model-viewer > #ar-prompt {
    position: absolute;
    left: 50%;
    bottom: 175px;
    animation: elongate 2s infinite ease-in-out alternate;
    display: none;
}

model-viewer[ar-status="session-started"] > #ar-prompt {
    display: block;
}

model-viewer > #ar-prompt > img {
    animation: circle 4s linear infinite;
}

model-viewer > #ar-failure {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 175px;
    display: none;
}

model-viewer[ar-tracking="not-tracking"] > #ar-failure {
    display: block;
}

.slider {
    width: 100%;
    text-align: center;
    overflow: hidden;
    position: absolute;
    bottom: 16px;
}

.slides {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.slide {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #fff;
    margin-right: 10px;
    border-radius: 10px;
    border: none;
    display: flex;
}

.slide.selected {
    border: 2px solid #4285f4;
}

.slide:focus {
    outline: none;
}

.slide:focus-visible {
    outline: 1px solid #4285f4;
}
#error {
     background-color: #ffffffdd;
     border-radius: 16px;
     padding: 16px;
     position: absolute;
     left: 50%;
     top: 50%;
     transform: translate3d(-50%, -50%, 0);
     transition: opacity 0.3s;
 }
#error.hide {
    opacity: 0;
    visibility: hidden;
    transition: visibility 2s, opacity 1s 1s;
}
.flex-container {
    display: flex;
    flex-direction: row;
}

.flex-left-over {
    width: 15%;
    margin: 20px 5px 0px 10px;
    text-align: left;
}

.flex-left {
    width: 65%;
    margin: 20px 0px 0px 0px;
    color: black;
    font-weight: 900;
    font-family: 'MS-Gothic';
}

.flex-right {
    width: 20%;
    margin: 20px 20px 0px 0px;
    text-align: right;
}
img {
    width: 80%;
    height: auto;
}

.img-flex {
    width: 100%;
    height: auto;
}

.volum-modal{
    bottom: 125px;
    position: absolute;
    right: 30px;
    -webkit-overflow-scrolling: touch;
}
#close-app:focus-visible {
    outline: 1px solid #4285f4;
}
#close-app:active {
    background-color: #E8EAED;
}

#close-app:focus {
    outline: none;
}
.close-app{
    flex-shrink: 0;
    display: flex;
    position: absolute;
    bottom: 125px;
    left: 20px;
    width: 40px;
    height: 40px;
    margin: 5px;
    border: solid 1px;
    justify-content: center;
    text-align: center;
    background: #e8eaedba;
    border-radius: 10px;
    -webkit-overflow-scrolling: touch;
}



