html {
    margin: 0;
    height: 100%;
    overflow: hidden;
}

body {
    margin: 0px;
    height: 100%;
    overflow: hidden;
    font-family:  'SF Pro Text','SF Pro Icons','Helvetica Neue','Helvetica','Arial',sans-serif;
    font-size: 14px;
    color: #fff;
    background: #000;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    text-align: center;
}

a {
    text-decoration: none;
}

#model-container {
    height: 365px;
}
model-viewer {
    width: 100%;
    height: 350px;
    --poster-color:transparent;
    z-index: 1;
}

model-viewer:focus {
    outline:0 !important;
}

#title {
    margin-top: -4px;
    font-weight: bold;
    font-size: 20px;
}
#subtext {
    margin: 17px 0px 16px;
}

#ar-button {
    background-color: transparent;
    border-radius: 4px;
    border: none;
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: none;
}

#quicklook {
    width: 30px;
    height: 30px;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


#biojam {
    display: block;
    z-index:10;
}
.preloader-1 {
    margin: -170px auto 0;
    width: 100%;
    height: 12px;
}

.img-circle {
    border-radius: 50%;
}

#cta-left, #cta-right, #cta-leftest, #cta-rightest {
    margin: 18px 7px;
    border-radius: 50px;
    box-shadow: 0px 0px 4px rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    opacity: 1;
}

#cta-leftest, #cta-rightest {
    opacity: 0;
}

#cta-middle {
    margin: 5px 5px;
    border-radius: 50px;
    box-shadow: 0px 0px 10px rgba(255,255,255,0.4);
    width: 70px;
    height: 70px;
}

@keyframes opacity-1 {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes opacity-2 {
    0% {
        opacity: 1;
        height: 15px;
    }
    50% {
        opacity: 0;
        height: 12px;
    }
    100% {
        opacity: 1;
        height: 15px;
    }
}

.fade-out {
    animation: fadeOut ease 5s;
    -webkit-animation: fadeOut ease 5s;
    -moz-animation: fadeOut ease 5s;
    -o-animation: fadeOut ease 5s;
    -ms-animation: fadeOut ease 5s;
}

@keyframes fadeOut {
    0% {
        opacity:1;
    }
    100% {
        opacity:0;
        visibility: hidden;
    }
}

@-moz-keyframes fadeOut {
    0% {
        opacity:1;
    }
    100% {
        opacity:0;
        visibility: hidden;
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity:1;
    }
    100% {
        opacity:0;
        visibility: hidden;
    }
}

@-o-keyframes fadeOut {
    0% {
        opacity:1;
    }
    100% {
        opacity:0;
        visibility: hidden;
    }
}

@-ms-keyframes fadeOut {
    0% {
        opacity:1;
    }
    100% {
        opacity:0;
        visibility: hidden;
    }
}

.fade-in {
    animation: fadeIn ease 5s;
    -webkit-animation: fadeIn ease 5s;
    -moz-animation: fadeIn ease 5s;
    -o-animation: fadeIn ease 5s;
    -ms-animation: fadeIn ease 5s;
}

@keyframes fadeIn {
    0% {
        opacity:0;
        visibility: hidden;
    }
    100% {
        opacity:1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity:0;
        visibility: hidden;
    }
    100% {
        opacity:1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity:0;
        visibility: hidden;
    }
    100% {
        opacity:1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity:0;
        visibility: hidden;
    }
    100% {
        opacity:1;
    }
}

@-ms-keyframes fadeIn {
    0% {
        opacity:0;
        visibility: hidden;
    }
    100% {
        opacity:1;
    }
}
