@import url('./monteserrat_300_700.css');


body {
    overflow: hidden;
}

#bodyId {
    padding: 0;
}

:root {
    --ar-button-scale: 1;
    --poster-color: transparent;
    --progress-bar-height: 0;
}


mazing-viewer {
    width: 100%;
    height: 90%;
}

.ar-btn-container {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 10px;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.ar-button {
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    width: fit-content;
    display: flex;
    align-items: center;
    z-index: 1000;
    background: #E7EDF1;
    border: 0;
    padding: 10px 16px 10px 10px;
}



.ar-button:active:focus {
    border-color: rgb(126, 126, 126);
    transform: translateY(+1px);
}

.pulse-button {
    box-shadow: 0 0 0 0 rgb(68, 85, 131);
    cursor: pointer;
    -webkit-animation: pulse 2.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulse 2.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulse 2.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulse 2.25s infinite cubic-bezier(0.66, 0, 0, 1);
}

.pulse-button:hover {
    -webkit-animation: none;
    -moz-animation: none;
    -ms-animation: none;
    animation: none;
}


@keyframes pulse
{
    0% {
        box-shadow: 0 0 0 0px rgba(231, 237, 241, 0.4);
    }
    100% {
        box-shadow: 0 0 7px 27px rgba(231, 237, 241, 0);
    }
}

.ar-btn-icon {
    width: 28px;
    height: auto;
    margin-right: 4%;
    filter: brightness(0) saturate(100%) invert(43%) sepia(8%) saturate(107%) hue-rotate(181deg) brightness(88%) contrast(86%);
}

.ar-btn-txt {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    text-align: center;
    width: fit-content;
    margin-right: 4%;
    text-wrap: nowrap;
    color: #666769;
    font-weight: normal;
    margin-top: 0;
    margin-bottom: 0;
}


.ar-btn-ruler-inlay {
    margin-left: 0;
}


.ruler-button {
    border-radius: 50%;
    width: fit-content;
    height: fit-content;
    display: flex;
    align-items: center;
    z-index: 1000;
    background: #E7EDF1;
    border: 0;
    padding: 10px;
    margin-left: 16px;
    cursor: pointer;
}

.ruler-active {
    background: #fff;
    outline: 1px solid #0277bd;
    img {
        filter: brightness(0) saturate(100%) invert(34%) sepia(99%) saturate(5758%) hue-rotate(188deg) brightness(97%) contrast(98%);
    }
}

.ruler-icon {
    width: 28px;
    height: 28px;
}

/* The Modal (background) */
.loading-modal {
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #9090901c;
}

.loading-box {
    width: 180px;
    height: 140px;
    background: #ffffffc7;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.loading-text {
    width: 100%;
    text-align: center;
    margin-top: 40px
}

.loader {
    height: 25px;
}

.loader:after {
    content: " ";
    display: block;
    width: 35px;
    height: 35px;
    margin: 8px;
    border-radius: 50%;
    border: 3px solid #717171;
    border-color: #717171 transparent #717171 transparent;
    animation: loader-dual-ring 2.2s linear infinite;
}

@keyframes loader-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}