@-ms-viewport { width: device-width; }
@media only screen and (min-device-width: 800px) { html { overflow:hidden; } }
* { padding: 0; margin: 0;}
html { height: calc(100vh - calc(100vh - 100%)); background: #FFF;}
body { height: 100%; overflow:hidden; }
div#container { height: 100%; min-height: 100%; width: 100%; margin: 0 auto; }
model-viewer {
    height:100%;
    position:relative;
    overflow:hidden;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}


:not(:defined) > * {
    display: none;
}
body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100%;
}
.fs-16px {
    font-size: 16px;
    margin-bottom: 0.8em;
}
.fs-13px {
    font-size: 13px;
    margin-bottom: 0.8em;
}
.fs-10px {
    font-size: 10px;
    margin-bottom: 0.8em;
}
.fw-bold {
    font-weight: bold;
}
model-viewer {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
}
.progress-bar {
    display: block;
    width: 33%;
    height: 10%;
    max-height: 2%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    border-radius: 25px;
    box-shadow: 0px 3px 10px 3px rgba(38, 94, 132, 0.5), 0px 0px 5px 1px rgba(38, 94, 132, 0.6);
    border: 0px solid rgba(255, 255, 255, 0.9);
    background-color: rgba(38, 94, 132, 1);
}
.progress-bar.hide {
    visibility: hidden;
    transition: visibility 0.3s;
}
.update-bar {
    background-color: rgba(0, 176, 185, 0.9);
    width: 0%;
    height: 100%;
    border-radius: 25px;
    float: left;
    transition: width 0.3s;
}
.browser-icons img {
    width: 15px;
    height: 15px;
    margin-right: 3px;
}
.browser-icons span {
    color: #265E84;
    margin-left: 15px;
}
button.swal2-styled {
    border-radius: 20px!important;
    min-width: 119px;
}
.swal2-styled.swal2-cancel {
    background: #F9665E !important;
}
/*.swal2-container.swal2-center>.swal2-popup {
    background: #265e84;
}*/
.swal2-container {
    font-family: "Open Sans", sans-serif;
}
.swal2-container .swal2-footer {
    padding: 0;
    border: none;
}
.swal2-container a,
.swal2-container a:hover,
.swal2-container a:active,
.swal2-container a:focus,
.swal2-container a:-webkit-any-link{
    color: #00AFB9!important;
    text-decoration: underline;
}
.swal2-modal .swal2-title {
    font-weight: bold;
    font-size: 25px;
}
.swal2-html-container {
    font-weight: 300;
}
button.data-attribution {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: transparent;
    border: none;
    text-decoration: underline;
    cursor: pointer;
}
#ar-button,
#ar-button2 {
    background-color: transparent;
    position: absolute;
    right: 10px;
    bottom: 10px;
    max-height: 46px;
    max-width: 200px;
    width: auto;
    height: auto;
    padding: 0;
    border: 0px;
    z-index: 1;
    cursor: pointer;
    display: none;
    text-align: right;
}
/*@media only screen and (max-width: 600px) {
    #ar-button,
    #ar-button2 {
        max-width: 100px;
        max-height: 38px;
        right: 3px;
        bottom: 3px;
    }

    #ar-button > svg,
    #ar-button2 > svg {
        width: 100%;
        height: 100%;
    }
}*/
#ar-button.rectangle.xs-button, #ar-button2.rectangle.xs-button {
    height: 28px;
    width: 74px;
}
#ar-button.rectangle.sm-button, #ar-button2.rectangle.sm-button {
    height: 38px;
    width: 100px;
}
#ar-button.rectangle.md-button, #ar-button2.rectangle.md-button {
    height: 46px;
    width: 120px;
}
#ar-button.rectangle.lg-button, #ar-button2.rectangle.lg-button {
    height: 58px;
    width: 140px;
}
#ar-button.rectangle.xl-button, #ar-button2.rectangle.xl-button {
    height: 66px;
    width: 160px;
}
#ar-button.square.xs-button, #ar-button2.square.xs-button {
    height: 20px;
    width: 20px;
}
#ar-button.square.sm-button, #ar-button2.square.sm-button {
    height: 30px;
    width: 30px;
}
#ar-button.square.md-button, #ar-button2.square.md-button {
    height: 40px;
    width: 40px;
}
#ar-button.square.lg-button, #ar-button2.square.lg-button {
    height: 50px;
    width: 50px;
}
#ar-button.square.xl-button, #ar-button2.square.xl-button {
    height: 60px;
    width: 60px;
}

#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: 60px;
    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;
}

.variant-controls {
    position: absolute;
    top: env(safe-area-inset-top);
    left: 50%;
    transform: translate(-50%, 0%);
    padding-top: 10px;
}

.variant-select {
    display: block;
    font-size: 12px;
    font-family: 'K2D', sans-serif;
    font-weight: 500;
    color: #444;
    line-height: 1.3;
    padding: .6em 1.4em .5em .8em;
    width: 140px;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
    border: 1px solid #aaa;
    box-shadow: 0 1px 0 1px rgba(0,0,0,.04);
    border-radius: .5em;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'),
    linear-gradient(to bottom, #ffffff 0%,#e5e5e5 100%);
    background-repeat: no-repeat, repeat;
    background-position: right .7em top 50%, 0 0;
    background-size: .65em auto, 100%;
}
.variant-select::-ms-expand {
    display: none;
}

.variant-select:hover {
    border-color: #888;
}
.variant-select:focus {
    border-color: #aaa;
    box-shadow: 0 0 1px 3px rgba(0, 175, 185, .7);
    box-shadow: 0 0 0 3px -moz-mac-focusring;
    color: #222;
    outline: none;
}
.variant-select option {
    font-weight:normal;
}
/* Support for rtl text, explicit support for Arabic and Hebrew */
*[dir="rtl"] .variant-select, :root:lang(ar) .variant-select, :root:lang(iw) .variant-select {
    background-position: left .7em top 50%, 0 0;
    padding: .6em .8em .5em 1.4em;
}
/* Disabled styles */
.variant-select:disabled, .variant-select[aria-disabled=true] {
    color: graytext;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22graytext%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'),
    linear-gradient(to bottom, #ffffff 0%,#e5e5e5 100%);
}
.variant-select:disabled:hover, .variant-select[aria-disabled=true] {
    border-color: #aaa;
}
.full-screen,
.exit-full-screen {
    position: absolute;
    top: 5px;
    right: 5px;
    color: #000;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 30px;
    height: 30px;
    font-size: 0px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}
.full-screen {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAAYUlEQVRIiWMYKMAIslctruU/MfbfWlTDiE+eFHOYBsrHI89iFmyChOISF8ClD1vcj8bxqMWjYBSMglGAE2BtgZBbO+EC2MwfLatHLaYZwNrmwtU+pla7mmE0joc/YGBgAAC3hBwrDs9jSgAAAABJRU5ErkJggg==');
}
.exit-full-screen {
    visibility: hidden;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAAXElEQVRIiWMYKMCIz161uJb/yPxbi2qopp5poHw8avHwt5iFAUtqpBbAZS4otY8mrlEwCkbBKCAagFsIxJbVpLZA8JkzWlbTDYDrY1xxR2k9PdrKHLV4BAEGBgYAMp8cK9X0lbEAAAAASUVORK5CYII=');
}
.two-column {
    clear: both;
}
.two-column > div {
    width: 50%;
    float: left;
    text-align: center;
}

@media only screen and (max-width: 600px) and (min-width: 401px) {
    .swal2-container {
        padding-bottom: 0.2em !important;
    }
    .swal2-modal.swal2-popup {
        padding-bottom: 0.2em;
    }
    .swal2-modal .swal2-image {
        margin: 7px auto 10px;
        height: 35px !important;
    }
    .swal2-modal .swal2-title {
        font-size: 0.84rem;
        padding-top: 0;
    }
    .swal2-modal .swal2-html-container {
        font-size: 0.7rem;
    }
    .swal2-modal .swal2-footer {
        font-size: 0.64rem;
        padding: 0.5em 0.5em;
    }
    .swal2-modal .swal2-actions {
        margin-top: 0.25em;
    }
    .swal2-modal .swal2-styled.swal2-cancel {
        font-size: 0.55rem;
    }
    .swal2-modal #qr-code-holder canvas {
        width: 82px;
        height: 82px;
        margin-top: 5px;
    }
}


@media only screen and (max-width: 400px) and (min-width: 301px) {
    .swal2-container {
        padding-bottom: 0.2em !important;
    }
    .swal2-modal.swal2-popup {
        padding-bottom: 0.2em;
    }
    .swal2-modal .swal2-image {
        margin: 10px auto;
        height: 60px !important;
    }
    .swal2-modal .swal2-title {
        font-size: 1rem;
        padding-top: 0;
    }
    .swal2-modal .swal2-html-container {
        font-size: 0.84rem;
    }
    .swal2-modal .swal2-footer {
        font-size: 0.84rem;
        padding: 0.5em 0.5em;
    }
    .swal2-modal .swal2-actions {
        margin-top: 0.25em;
    }
    .swal2-modal .swal2-styled.swal2-cancel {
        font-size: 0.84rem;
    }
    .swal2-modal #qr-code-holder canvas {
        width: 100px;
        height: 100px;
        margin-top: 5px;
    }
}

@media only screen and (max-width: 300px) and (min-width: 250px)  {
    .swal2-container {
        padding-bottom: 0.2em !important;
    }
    .swal2-modal.swal2-popup {
        padding-bottom: 0.2em;
    }
    .swal2-modal .swal2-image {
        margin: 10px auto;
        height: 60px !important;
    }
    .swal2-modal .swal2-title {
        font-size: 1rem;
        padding-top: 0;
    }
    .swal2-modal .swal2-html-container {
        font-size: 0.75rem;
    }
    .swal2-modal .swal2-footer {
        font-size: 0.75rem;
        padding: 0.5em 0.5em;
    }
    .swal2-modal .swal2-actions {
        margin-top: 0.25em;
    }
    .swal2-modal .swal2-styled.swal2-cancel {
        font-size: 0.75rem;
    }

    .swal2-modal #qr-code-holder canvas {
        width: 100px;
        height: 100px;
        margin-top: 5px;
    }
}

@media only screen and (max-width: 249px)  {
    .swal2-container {
        padding-bottom: 0.2em !important;
    }
    .swal2-modal.swal2-popup {
        padding-bottom: 0.2em;
    }
    .swal2-modal .swal2-image {
        margin: 10px auto;
        height: 40px !important;
    }
    .swal2-modal .swal2-title {
        font-size: 0.8rem;
        padding-top: 0;
    }
    .swal2-modal .swal2-html-container {
        font-size: 0.65rem;
    }
    .swal2-modal .swal2-footer {
        font-size: 0.65rem;
        padding: 0.5em 0.5em;
    }
    .swal2-modal .swal2-actions {
        margin-top: 0.25em;
    }
    .swal2-modal .swal2-styled.swal2-cancel {
        font-size: 0.65rem;
    }

    .swal2-modal #qr-code-holder canvas {
        width: 100px;
        height: 100px;
        margin-top: 5px;
    }
}

