.actions {
    position: absolute;
    display: flex;
    bottom: 3%;
    left: 3%;
}

#splash {
    position: fixed;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /* margin: auto;*/
    margin: 0;
    font-size: 12px;
    /*font-family: sans-serif;*/
    font-family: 'founders grotesk - light';
    color: #fff;
    /* text-transform: uppercase;*/
    /*    background-color: rgba(0, 0, 0, .55);*/
    transition: all 1s ease-out;
    letter-spacing: 5px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@font-face {
    font-family: 'founders grotesk - light';
    src: url('../../src/04_metronic/founders grotesk - light.otf') format('opentype');
}

#splash .loading {
    /*  width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 0.25rem solid rgba(255, 255, 255, 0.2);
    border-top-color: #fff;
    animation: spin 1s infinite linear;*/
}


#splash .start-button {
    padding: 10px 30px;
    border-radius: 3px;
    opacity: 0;
    transition: opacity .5s ease;
    cursor: pointer;
    background-color: #292929;
    /*letter-spacing: 1px;*/
}

#splash .start-div {
    padding: 0px;
    border-radius: 3px;
    opacity: 0;
    transition: opacity .5s ease;
    cursor: pointer;
    /*background-color: #292929;*/
}

#splash .howToUse {
    padding: 0px;
    opacity: 0;
}
#splash .howToUseMobile {
    padding: 0px;
    opacity: 0;
}
#splash .howToUseVR {
    padding: 0px;
    opacity: 0;
}

#splash .logo {
    padding: 10px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

    #splash .logo img {
        width: 50%;
    }

#splash .credits {
    position: absolute;
    left: 2em;
    bottom: 2em;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}

    #splash .credits .show-credits {
        opacity: 0;
        transition: opacity .5s ease;
    }

    #splash .credits ul {
        display: none;
        max-height: 200px;
        list-style: none;
        margin-top: 1em;
        line-height: 1.5;
        padding: 0;
        overflow-y: scroll;
        text-transform: capitalize;
    }

    #splash .credits a {
        color: #a2a2a2;
        text-decoration: none;
    }

        #splash .credits a:visited {
            color: #a2a2a2;
        }

            #splash .credits a:hover, #splash .credits a:visited:hover {
                color: #ccc;
            }




/*Model Viewer Css*/

.Hotspot {
    background: #fff;
    border-radius: 32px;
    border: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
    cursor: pointer;
    height: 24px;
    padding: 8px;
    position: relative;
    transition: opacity 0.3s;
    width: 24px;
}

    .Hotspot:not([data-visible]) {
        background: transparent;
        border: 4px solid #fff;
        box-shadow: none;
        height: 32px;
        pointer-events: none;
        width: 32px;
    }

    .Hotspot:focus {
        border: 4px solid rgb(0, 128, 200);
        height: 32px;
        outline: none;
        width: 32px;
    }

    .Hotspot > * {
        opacity: 1;
        transform: translateY(-50%);
    }

.HotspotAnnotation {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
    color: rgba(0, 0, 0, 0.8);
    display: block;
    font-family: 'MyFont';
    font-size: 18px;
    font-weight: 700;
    left: calc(100% + 1em);
    max-width: 128px;
    padding: 0.5em 1em;
    position: absolute;
    top: 50%;
    width: max-content;
}

.Hotspot:not([data-visible]) > * {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(-50% + 4px));
    transition: transform 0.3s, opacity 0.3s;
}

/* This keeps child nodes hidden while the element loads */

#ar-button {
    background-image: url(../img/icon/ic_view_in_ar_new_googblue_48dp.png);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: 12px 50%;
    background-color: rgb(255, 255, 255);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    /* bottom: 132px; */
    bottom: 0px;
    padding: 0px 16px 0px 40px;
    font-family: "Roboto Regular", "Helvetica Neue", sans-serif;
    font-size: 14px;
    color: rgb(66, 133, 244);
    height: 36px;
    line-height: 36px;
    border-radius: 18px;
    border: 1px solid rgb(218, 220, 224);
}

    #ar-button:focus {
        outline: none;
    }

    #ar-button:active {
        background-color: rgb(232, 234, 237);
    }

.hotspot {
    position: relative;
    background: #ddd;
    border-radius: 32px;
    box-sizing: border-box;
    border: 0;
    --min-hotspot-opacity: 0.5;
    width: 24px;
    height: 24px;
    padding: 8px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

    .hotspot:focus {
        border: 4px solid rgb(0, 128, 200);
        width: 32px;
        height: 32px;
        outline: none;
    }

    .hotspot > * {
        transform: translateY(-50%);
        opacity: 1;
    }

    .hotspot:not([data-visible]) > * {
        pointer-events: none;
        opacity: 0;
        transform: translateY(calc(-50% + 4px));
        transition: transform 0.3s, opacity 0.3s;
    }



/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    model-viewer {
        width: 100%;
        height: 200px;
        top: 0px;
        position: sticky;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    model-viewer {
        width: 100%;
        height: 300px;
        top: 0px;
        position: sticky;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    model-viewer {
        width: 100%;
        height: 600px;
        top: 0px;
        position: sticky;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    model-viewer {
        width: 100%;
        height: 350px;
        top: 0px;
        position: sticky;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    model-viewer {
        width: 100%;
        height: 600px;
        top: 0px;
        position: sticky;
    }
}

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;
}

model-viewer#reveal {
    --poster-color: #212529;
}



#gameframe img {
    display: none;
}

.gameframe img {
    display: none;
}

.main-button button {
    position: fixed;
    /*    height:80px;
                                                                                 width:80px;
                                                                                 bottom:80px;
                                                                                 right:100px;
                                                                                 font-size:30px;*/
}

.main-button:hover .fa-plus {
    transform: rotate(45deg);
    transition: 0.5s;
}

.location-btn {
    opacity: 1;
    display: block;
    position: fixed;
    /*         bottom:150px;
                                                                                 right:100px;*/
    bottom: 60px;
    right: 20px;
    transition: opacity 0.7s;
}

.main-button:hover > .location-btn {
    opacity: 1;
    display: block;
}

.location-btn li i {
    float: right;
    font-size: 17px;
    margin-top: 10px;
}

.main-button ul li {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    font-weight: bold;
    height: 50px;
    font-size: 18pt;
}

    .main-button ul li:hover i {
        font-size: 25px;
    }

@@media only screen and (max-width: 600px) {

    .main-button ul li {
        /*           width: 100%;
                                                                        text-align: center;
                                                                        margin-bottom: 10px;
                                                                        font-weight: bold;
                                                                        height: 50px;
                                                                        font-size: 9pt;*/

        width: 100%;
        text-align: center;
        font-weight: bold;
        height: 25px;
        font-size: 9pt;
        padding: 5px;
        margin: 5px;
    }

        .main-button ul li:hover i {
            font-size: 12px;
        }
}

.location-btn .Facebook, .location-btn .Twitter, .location-btn .Whatsapp, .location-btn .Google-plus, .location-btn .YouTube {
    background-color: #4267B2;
    color: #fff;
}

.location-btn .Twitter {
    background-color: #1DA1F2;
}

.location-btn .Whatsapp {
    background-color: #009688;
}

.location-btn .Google-plus {
    background-color: #D0463B;
    /*   background-color: #898584;*/
}

.location-btn .YouTube {
    background-color: #ED2423;
}

.main-button ul li i {
    position: absolute;
    right: 20px;
}

.a-modal {
}

.a-dialog {
    background-color: #333;
}

.a-dialog-text {
    font-size: 12px;
    text-align: justify;
    color: white;
}

.a-dialog-text-container {
}

.a-dialog-buttons-container {
}

.a-dialog-allow-button {
    background-color: green;
    color: white;
    border-radius: 5px;
}

.a-dialog-deny-button {
    background-color: red;
    color: white;
    border-radius: 5px;
}

.a-dialog-ok-button {
    background-color: green;
    color: white;
    border-radius: 5px;
}