@font-face {
    font-family: 'Bogle';
    src: url('/assets/fonts/BOGLEREGULAR.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Bogle';
    src: url('/assets/fonts/BOGLEBOLD.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

html {
    margin: 0;
    padding: 0;
}

body {
    background-color: #041f41;
    background-repeat: round;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

#loading-container {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background-color: #041e42;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#loading-spinner {
    width: 64px;
    animation: spin 2s linear infinite;
}

.fullscreen-container {
    position: absolute;
    width: 100vw;
    height: 100vh;
    margin: 0px;
    padding: 0px;
    z-index: 1000;
}

.lottie-background {
    display: block;
    position: absolute;
    left: 50%;
    width: 250vw;
    height: 250vh;
    transform: translate(-50%, -30%);
}

.lottie-skip {
    display: block;
    position: absolute;
    top: -30px;
    margin: 0px;
    padding: 0px;
}

.lottie-instructions {
    display: block;
    position: absolute;
    bottom: 70px;
}

.lottie-bottom {
    display: block;
    position: absolute;
    bottom: 70px;
}

.lottie-lens {
    display: block;
    position: absolute;
    bottom: 70px;
}

#close-button {
    position: absolute;
    top: 2%;
    right: 20px;
    width: 48px;
    height: 48px;
}

.popup {
    display: block;
    position: absolute;
    z-index: 1000;
    width: 100%;
    top: 2000px;
    transition: top 0.75s ease;
}

.popup-content {
    display: block;
    width: 100%;
    background-color: white;
    height: 100vh;
}

.swipe-bar {
    position: relative;
    display: block;
    transform: translateX(-50%);
    left: 50%;
    width: 30%;
    border-style: solid;
    border-color: #BEBEBE;
    border-width: 2px;
    top: 8px;
}

.animate-popup {
    top: 40%;
}

.animate-popup-full {
    top: 0%;
}

.carousel-image {
    position: absolute;
    transform: translateX(-50%);
    width: 100%;
}

.carousel-center {
    left: 50%;
}

.carousel-left {
    left: -55%;
}

.carousel-right {
    left: 155%;
}

#carousel-container {
    position: absolute;
    width: 85%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.popup-scroll {
    position: relative;
    top: 9%;
    left: 50%;
    transform: translateX(-50%);
    width: 97vw;
    overflow-y: auto;
    overflow-x: hidden;
}

.video {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.text-font {
    font-family: 'Bogle', sans-serif;
}

.font-size {
    font-size: 1em;
}

/* 8thwall Allow access id */
#requestingCameraPermissions {
    font-family: 'Bogle', sans-serif !important;
}

.title-text {
    width: 85%;
    position: absolute;
    transform: translateX(-50%);
    top: 4%;
    left: 50%;
    pointer-events: none;
}

.text-center {
    text-align: center;
    display: block;
    width: 100%;
}

.text-right {
    text-align: right;
    display: block;
    width: 90%;
}

.bold {
    font-weight: bold;
    font-size: 1.3em;
}

.description-text {
    position: absolute;
    display: block;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    left: 50%;
    transform: translateX(-50%);
}

.hide-element {
    display: none;
}

.ignore-pointer {
    pointer-events: none;
}

.camera-indicator {
    width: 32px;
    position: absolute;
    top: 35%;
    opacity: 0;
    animation: fadeLoop 2s linear infinite;
}

.camera-left {
    left: 0px;
    transform-origin: center;
    transform: rotate(180deg);
}

.camera-right {
    right: 0px;
}

.rounder-corner {
    border-radius: 15px;
}

.animate-carousel {
    transition: left 0.5s ease-out;
}

@keyframes fadeLoop {
    0% {
        opacity: 0;
    }
    /* Start at opacity: 0 (initial state) */
    50% {
        opacity: 1;
    }
    /* Fade in to opacity: 1 */
    100% {
        opacity: 0;
    }
    /* Fade out to opacity: 0 */
}