html,
body {
    overflow: hidden;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    touch-action: none;
}

* {
    font-family: 'Open Sans', sans-serif;
}

#fontloading {
    font-family: 'Patrick Hand', cursive;
}

/* scanner animation */
/* .center {
	margin: 0 auto;
	text-align: center;
} */
/* scanner animation*/
.anim-box {
    /* position: relative;
	width: 100vw;
	height: 500px;
	padding: 25px 0px;
	transition: transform .6s ease-out; */
    position: relative;
    width: 88vw;
    height: 452px;
    margin-left: 15px;
    padding: 25px 0px;
    transition: transform .6s ease-out;
}
.animBox-skin3 {
    width: 100vw;
    margin-left: -8px;
    height: 68vh;
    margin-top: 2vh;
}
.animBox-skin2 {
    width: 86vw;
    margin-left: 15px;
    height: 67vh;
    margin-top: 1vh;
}
.animBox-skin1 {
    width: 86vw;
    margin-left: 15px;
    height: 68vh;
}

.toast_div {
    position: fixed;
    width: 100%;
    /* height: 50px; */
    background-color: #49A94D;
    /* right: 10px; */
    /* bottom: 10px; */
    top: 0px;
    z-index: 999999999999;
    border-radius: 5px;
    padding: 18px 50px 18px 59px;
    color: white;
    font-size: 14px;
    text-align: center;
  }
  
  .clos_taost {
    position: absolute;
    right: 10px;
    top: 17px;
  }
  .toast_div p{
    padding-left: 5px;
  }
  .toast-cent{
  height: 7px;
  top: -4px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  position: relative;
  }
  .icon_toast {
    /* position: absolute; */
   /* text-align: center; */
   /* left: 144px; */
   top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    /* padding: 7px; */
   display: inline-flex;
   /* bottom: 7px; */
  }
  .icon_toast p{
    font: normal normal bold 13px/19px Roboto;
    padding-left: 8px;
  }
  
  .toast_div::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 5px;
    background-color: #8DC78F;
    left: 0;
    animation-name: example;
    animation-duration: 4s;
  }
  
@keyframes example {
    0% {
      width: 0px;
    }
  
    100% {
      width: 100%;
    }
  }
  

/* nocam */
.head-23 {
    font-size: 23px;
    font-weight: bold;
    text-align: center;
}

.no-cam {
    max-width: 500px;
    margin: auto;
    text-align: center;
    padding: 30px;
}

.btn-nocam,
.btn-nocam:hover {
    background-color: white;
    color: #4B4B4B;
    border: 1px solid #4B4B4B;
    padding: 9px 25px;
    border-radius: 6px;
    margin-right: 10px;
    text-decoration: none;
    width: 100px;
    display: inline-block;
    margin-bottom: 10px;
}

.ar-qrlink {
    max-width: 400px;
    padding: 20px;
    border: 2px dashed #707070;
    text-align: center;
    margin-top: 23px;
    margin: auto;
    margin-top: 15px;
}

.ar-qrlink img {
    max-width: 100px;
}

/* no cam  */
/* animated laser beam */
.scanner {
    content: "";
    position: absolute;
    top: -18px;
    bottom: 0;
    left: 0;
    right: 0;
    /* transform: rotate(178deg); */
    width: 100%;
    height: 3px;
    background: #23E5DB;
    box-shadow: 0px 0px 120px 20px #16f7eb;
    clip-path: inset(0);
    animation: x 1s ease-in-out infinite alternate, y 2s ease-in-out infinite;
}

@keyframes scan {
    0% {
        box-shadow: 0px -6px 8px 10px rgba(30, 144, 255, 0.5);
        top: 0%;

    }

    25% {
        box-shadow: 0px -6px 8px 10px rgba(30, 144, 255, 0.5);
        top: 5px;
    }

    75% {
        box-shadow: 0px -6px 8px 10px rgba(30, 144, 255, 0.5);
        top: 98%;

    }
}

/* scanner animation*/
/* content loader */
.circular {
    height: 100px;
    width: 100px;
    position: relative;
}

.circular .inner,
.circular .outer,
.circular .circle {
    position: absolute;
    z-index: 6;
    height: 100%;
    width: 100%;
    border-radius: 100%;
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.2);
}

.circular .inner {
    top: 50%;
    left: 50%;
    height: 80px;
    width: 80px;
    margin: -40px 0 0 -40px;
    background-color: #dde6f0;
    border-radius: 100%;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

.circular .circle {
    z-index: 1;
    box-shadow: none;
}

.circular .numb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    font-size: 18px;
    font-weight: 500;
    color: #4158d0;
}

.circular .bar {
    position: absolute;
    height: 100%;
    width: 100%;
    background: #fff;
    -webkit-border-radius: 100%;
    clip: rect(0px, 100px, 100px, 50px);
}

.circle .bar .progress {
    position: absolute;
    height: 100%;
    width: 100%;
    -webkit-border-radius: 100%;
    clip: rect(0px, 50px, 100px, 0px);
}

.circle .bar .progress,
.dot span {
    background: #4158d0;
}

.circle .left .progress {
    z-index: 1;
    animation: left 4s linear both;
}

@keyframes left {
    100% {
        transform: rotate(180deg);
    }
}

.circle .right {
    z-index: 3;
    transform: rotate(180deg);
}

.circle .right .progress {
    animation: right 4s linear both;
    animation-delay: 3s;
}

@keyframes right {
    100% {
        transform: rotate(180deg);
    }
}

.circle .dot {
    z-index: 2;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50%;
    height: 10px;
    margin-top: -5px;
    animation: dot 8s linear both;
    transform-origin: 0% 50%;
}

.circle .dot span {
    position: absolute;
    right: 0;
    width: 10px;
    height: 10px;
    border-radius: 100%;
}

@keyframes dot {
    0% {
        transform: rotate(-90deg);
    }

    50% {
        transform: rotate(90deg);
        z-index: 4;
    }

    100% {
        transform: rotate(270deg);
        z-index: 4;
    }
}

/* content loader */
#renderCanvas {
    /* width: 100%; */
    /* height: 100%; */
    z-index: 1;
    touch-action: none;
}

#scan_canvas {
    display: none;
    /* position: absolute; */
    height: 100%;
    top: 0;
    object-fit: cover;
    /* left: 0; */
    visibility: visible;
    /* border: 0px solid black; */
    z-index: 2;
    touch-action: none;
}

.browse {
    cursor: pointer;
}

.pen-edit {
    cursor: pointer;
}

.unitear-loader {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    /* background-color: white; */
    background-color: #ffffff57;
    z-index: 99999;
}

.unitear-loader-gif {
    position: absolute;
    width: 90px;
    height: 90px;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
}

.quadrado {
    /* width: 100px; */
    height: 100px;
    animation: crescendo .3s alternate infinite ease-in;
}

.alert {
    position: absolute;
    z-index: 9;
    padding: 20px;
    right: 0;
    top: 0;
    color: white;
    display: none;
    width: 50%;

}

.alert.success {
    background-color: #0ab174;
}

/* #pointer{
	display: block;
	margin-left: auto;
	margin-right: auto;
  } */

@keyframes crescendo {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}

.pulse:after {
    content: "";
    display: block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 3px solid #CBA82C;
    position: absolute;
    top: -5px;
    left: -5px;
    animation: pulse 2s ease 0s infinite;
}

.btn-need {
    background-color: transparent;
    padding: 5px 20px;
    border: 1px solid white;
    color: white;
    border-radius: 6px;
}

@keyframes pulse {
    0% {
        /* {} */
        opacity: 1;
        transform: scale(1);
    }

    80% {
        opacity: 0;
        transform: scale(2);
    }

    100% {
        opacity: 0;
        transform: scale(3);
    }
}

.circle-loading {
    width: 80px;
    height: 80px;
    border: 10px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    -webkit-animation: spin 600ms infinite linear;
    border-top-color: #fff;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.f-print {
    width: 70px;
    position: absolute;
    top: 15px;
    left: 15px;
}

.over-lay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 4px;
    z-index: 9;
    /* background-image: url('img/1234.svg');
background-size: cover; */
    pointer-events: none;
}

.over-lay img {
    width: 100%;
    height: 100%;
}

.tab {
    display: none;
}

/* 3d loader css */

#link {
    color: #E45635;
    display: block;
    font: 12px "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-align: center;
    text-decoration: none;
}

#link:hover {
    color: #CCCCCC
}

#link,
#link:hover {
    -webkit-transition: color 0.5s ease-out;
    -moz-transition: color 0.5s ease-out;
    -ms-transition: color 0.5s ease-out;
    -o-transition: color 0.5s ease-out;
    transition: color 0.5s ease-out;
}

/** BEGIN CSS **/

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
    }
}

@-moz-keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
    }
}

@-o-keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
    }
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
    }
}

@-moz-keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
    }
}

@-o-keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
    }
}

@keyframes loading-text-opacity {
    0% {
        opacity: 0
    }

    20% {
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@-moz-keyframes loading-text-opacity {
    0% {
        opacity: 0
    }

    20% {
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@-webkit-keyframes loading-text-opacity {
    0% {
        opacity: 0
    }

    20% {
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@-o-keyframes loading-text-opacity {
    0% {
        opacity: 0
    }

    20% {
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.loading-container,
.loading {
    height: 100px;
    position: relative;
    width: 100px;
    border-radius: 100%;
    z-index: 9;
}


.loading-container {
    margin: 40px auto
}

.loading {
    border: 2px solid transparent;
    border-color: transparent #fff transparent #FFF;
    -moz-animation: rotate-loading 1.5s linear 0s infinite normal;
    -moz-transform-origin: 50% 50%;
    -o-animation: rotate-loading 1.5s linear 0s infinite normal;
    -o-transform-origin: 50% 50%;
    -webkit-animation: rotate-loading 1.5s linear 0s infinite normal;
    -webkit-transform-origin: 50% 50%;
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}

.loading-container:hover .loading {
    border-color: transparent #E45635 transparent #E45635;
}

.loading-container:hover .loading,
.loading-container .loading {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

#loading-text {
    -moz-animation: loading-text-opacity 2s linear 0s infinite normal;
    -o-animation: loading-text-opacity 2s linear 0s infinite normal;
    -webkit-animation: loading-text-opacity 2s linear 0s infinite normal;
    animation: loading-text-opacity 2s linear 0s infinite normal;
    color: #ffffff;
    font-family: "Helvetica Neue, " Helvetica", " "arial";
    font-size: 10px;
    font-weight: bold;
    margin-top: 45px;
    opacity: 0;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    top: 0;
    width: 100px;
}

@media screen and (min-width: 480px) {
    .mobile {
        display: none;
    }

    .tab {
        display: block;
    }
}

.body {
    height: 100vh;
}

.not-mobile {
    position: absolute;
    top: 0;
    z-index: 100;
    /* color: white; */
    /* background: black;  */
    width: 100%;
    height: 100vh;
}

.loading-logo {
    margin: 50px auto 50px
}

.spalsh-loader {
    width: 100px;
    height: 100px;
    margin: 10px auto 10px;
    position: relative;
}

.loading-screen {
    text-align: center;
}

.main-content {
    height: 100vh;
}
.camera-hide{display: flex;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    left: 0;
    bottom: 0;
    position: fixed;
    background-color: grey;
    
}
.screenshot {
    position: absolute;
    /* left: 50px;
    top: 70px;
    bottom: 199px; */
    /* right: 50px; */
    display: flex;
    align-items: center;
    justify-content: center;


    /* position: fixed; */
    /* display: none; */
    z-index: 1;
    /* padding: 50px 40px 110px 40px; */
    /* top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto; */
    /* width: 100%;
height: 100vh; */
    /* background-color: #0074F2;*/
    /* background-color: #495057; */
}
/* .sshot-parent{
    position: fixed;
    left: 50px;
    top: 50px;
    bottom: 100px;
    right: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(221, 221, 221);
} */

.video-360-close {
    position: absolute;
    right: 20px;
    top: 20px;
}

.video-360-back {
    position: absolute;
    left: 20px;
    top: 20px;
}

.view-360-elements {
    background: #181818;
    border: 1px solid #4F4F4F;
    border-radius: 10px;
    opacity: 0.68;
    padding: 8px 15px;
    position: absolute;
    left: 0;
    top: 20px;
    right: 0;
    margin: auto;
    color: white;
}

.close {
    z-index: 6;
    top: 10px;
    right: 17px;
    position: absolute;
}

.preview {
    max-width: 100%;
    height: 500px;
    display: block;
    margin: auto;
}

.btn-download {
    position: absolute;
    bottom: 0;
    top: 0;
    height: 40px;
    margin: auto;
    left: 0;
    right: 0;
    z-index: 5;
}

.goto-scan {
    /* z-index: 6; */
    z-index: 10;
    position: absolute;
    width: 56px;
    /* background-color: #08f; */
    padding: 11px 10px;
    border: none;
    /* color: white; */
    bottom: 50px;
    /*left: 10px; */
    top: 0;
    right: 0;
    /* margin: auto; */
    border-radius: 5px;
    display: none;
}

.btn-ground {
    z-index: 10;
    position: absolute;
    width: 170px;
    /* background-color: #08f; */
    padding: 11px 10px;
    border: none;
    /* color: white; */
    bottom: 0px;
    left: 24%;
    right: 10px;
    /* margin: auto; */
    border-radius: 5px;
    display: none;
}

.btn-ground img {
    height: 50px;
}

.btn-ground p {
    color: white;
    margin: 0;
    text-align: center;
}

.btn-screenshot {
    z-index: 6;
    position: absolute;
    width: 170px;
    /* background-color: #08f; */
    padding: 11px 10px;
    border: none;
    /* color: white; */
    bottom: 0px;
    /* left: 0; */
    right: 20%;
    margin: auto;
    border-radius: 5px;
    /* display: none; */
}

.btn-screenshot img {
    height: 43px;
}

.btn-screenshot p {
    color: white;

    text-align: center;
    font-size: 14px;
    margin-bottom: -4px;
}

#screenShootImage {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

/* .btn-screenshot img {
    height: 35px;
}

.btn-screenshot p {
    color: white;
    margin: 0;
    text-align: center;
    font-size: 12px;
} */
.photo-rescan p {
    font-size: 12px;
    color: white;
    margin: 2px 0px 10px;
}

.photo-rescan {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 5px;
    width: 64px;
    text-align: center;
}

.btn-record {
    z-index: 6;
    position: absolute;
    width: 56px;
    /* background-color: #08f; */
    padding: 11px 10px;
    border: none;
    /* color: white; */
    bottom: 20px;
    /* left: 0; */
    right: 0;
    /* margin: auto; */
    border-radius: 5px;
    display: none;
}

.btn-resume {
    z-index: 6;
    position: absolute;
    width: 150px;
    background-color: #08f;
    padding: 11px 10px;
    border: none;
    color: white;
    top: 50px;
    left: 10px;
    right: 0;
    /* margin: auto; */
    border-radius: 5px;
    display: none
}

.tap-hand {
    z-index: 6;
    position: absolute;
    width: 90px;
    padding: 11px 10px;
    border: none;
    color: white;
    bottom: 45%;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 5px;
}

.btn-recog {
    z-index: 6;
    position: absolute;
    width: 150px;
    background-color: #08f;
    padding: 11px 10px;
    border: none;
    color: white;
    bottom: 50px;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 5px;
}

.out {
    /* position: absolute; */
    /* height: 100%; */
    top: 0;
    left: 0;
    visibility: visible;
    z-index: 0;
    border: 0px solid black;
    display: block;
}

.video {
    z-index: 0;
    height: 100%;
    /* width: 1000px; */
    /* display: none; */
    visibility: visible;
    object-fit: cover;
}

.btn-scan {
    width: 60px !important;
    height: 60px !important;
    margin-top: 5px;
}

.scan-area {
    position: absolute;
    left: 0;
    bottom: 7px;
    right: 0;
    margin: auto;
    width: 275px !important;
    height: 100px !important;
    text-align: center;
    z-index: 9;
}

.scan-area p {
    margin: 0;
    color: white;
    font-size: 14px;
}

.help {
    position: fixed;
    width: 50%;
    top: 9px;
    right: 0;
    height: 40px;
    text-align: right;
    /* background-color: red; */
}

.help img {
    position: absolute;
    left: 0;
    right: -105px;
    margin: auto;
    width: 40px;
    height: 40px;
}

.video-canvas {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;

    /* new */
    width: 100%;
    margin: auto;
    overflow: auto;
}

.video-canvas-all {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 100%;

    /* new */
    left: 50%;
    transform: translateX(-50%);
}



.content-loaded {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0px;
    z-index: 10;
    height: 110px;
    background-color: #0009;
    display: none;
}

.left-share {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 50px;
    text-align: center;
    height: 50px;
}

.right-share {
    position: absolute;
    width: 100%;
    right: 0;
    bottom: 1px;
    text-align: center;
    height: 50px;
}

.btn-share {
    background-color: white;
    border-radius: 19px;
    padding: 10px 53px;
    text-align: center;
    border: none;
    font-size: 16px;
    position: relative;
    color: black;
}

.btn-share img {
    position: absolute;
    left: 2px;
    top: 2px;
}

.p-head {
    font-size: 20px;
    font-weight: bold;
}

.error-para {
    font-size: 16px;
}

.btn-white {
    background-color: white;
    border: 1px solid #0074F2;
    padding: 6px 10px;
    width: 100%;
    border-radius: 6px;
    color: black;
    margin-top: 20px;
    cursor: pointer;
}

.btn-blue {
    background-color: #0074F2;
    border: 1px solid #0074F2;
    padding: 6px 10px;
    width: 100%;
    border-radius: 6px;
    color: white;
    margin-top: 20px;
    cursor: pointer;
}

.error {

    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 22;
    background-color: #00000099;
    overflow: auto;
}

.error div {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
}

#content_loader {
    width: 380px;
    height: 100vh;
    /* margin: 10px auto 0px; */
    margin-top: 70px;
    margin-left: 15px;
    background-color: transparent;

    text-align: center;
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 19;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 30%;
    padding-top: 40%;
}

.progres {
    width: 380px;
    height: 100vh;
    /* margin: 10px auto 0px; */
    margin-top: 70px;
    margin-left: 10px;
    margin-right: 10px;
    background-color: transparent;
    padding: 0;
    text-align: center;
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 19;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.space-bar {
    /* margin-top: 80px; */
}

.progres-bar {
    width: 100%;
    height: 20px;
    background-color: #C8C8C8;
    border-radius: 20px;
    position: relative;
}

.live-progres {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #0074F2;
    border-radius: 20px;
    height: 20px;
}

.relative {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 166px);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
}

.before-3d-relative {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
}

.progres-value {
    color: #0074F2;
    font-size: 36px;
    margin-top: 10px;
}


.place-ground {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* z-index: 16; */
    z-index: 9;
}

.place-ground div {
    width: 270px;
}

.place-ground img {
    width: 59px;
    display: block;
    margin: auto;

}

.place-ground p {
    font-size: 30px;
    font-weight: 600;
    color: white;
}

.help-box {
    max-width: 400px;
    margin: auto;
    /* text-align: center; */
    padding: 30px;
    padding-top: 0;
}

.help-box img {
    max-width: 100%;
    width: 100%;
}

.head-23 {
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    margin: 0px;
    margin-bottom: 40px;
}

.head-23::after {
    content: "";
    position: absolute;
    top: 75px;
    left: 0;
    right: 0px;
    /* border-top: 1px solid #DCDCDC ; */
}

.help-box a {
    color: #0074F2;
    text-decoration: none;
}

.help-box a:hover {
    color: #0074F2;
    text-decoration: none;
}

.help-modal {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: auto;
    background-color: white;
    z-index: 9;
}

hr {
    border: 1px solid #d6d6d6;
    outline: none;
    margin: 25px 0px;
}

.help-close {
    /* position: absolute; 
    right: 30px;
    top: 20px;  */
    height: 35px;
    width: 35px;
}

.no-cam {
    max-width: 500px;
    margin: auto;
    text-align: center;
    padding: 30px;
}

.btn-nocam,
.btn-nocam:hover {
    background-color: white;
    color: #4B4B4B;
    border: 1px solid #4B4B4B;
    padding: 9px 25px;
    border-radius: 6px;
    margin-right: 10px;
    text-decoration: none;
    width: 100px;
    display: inline-block;
    margin-bottom: 10px;
}

/* style for scanning animation  */
.box {
    /* height: 78vh; */
    /* position: relative; */
    margin-left: 26px;
    margin-right: 26px;
    /* margin-top:55px; */
}

.toolbar {
    display: none
}

.box::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /* transform: rotate(178deg); */
    width: 100%;
    height: 3px;
    background: #23E5DB;
    box-shadow: 0px 0px 120px 20px #16f7eb;
    clip-path: inset(0);
    animation: x 1s ease-in-out infinite alternate, y 2s ease-in-out infinite;
}

@keyframes x {
    to {
        transform: translateY(-50%);
        Top: 100%;
    }
}

@keyframes y {
    33% {

        clip-path: inset(-100px 0 0 0);

    }

    50% {

        clip-path: inset(0 0 0 0);

    }

    83% {
        clip-path: inset(0 0 -100px 0);
    }

}



* {
    font-family: 'Open Sans', sans-serif;
}


.ar-qrlink {
    max-width: 400px;
    padding: 20px;
    border: 2px dashed #707070;
    text-align: center;
    margin-top: 23px;
    margin: auto;
    margin-top: 15px;
}

.ar-qrlink img {
    max-width: 100px;
}

.Box {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    width: 100%;

}

.Box .card {
    width: 150px;
    /* height: 130px; */
    flex: 0 0 auto;
    cursor: pointer;
    padding: 5px;
    margin-top: 75px;

}


@media (max-width: 500px) {
    .Container {
        width: 100%;
    }

    .progres {
        width: 100vw;
    }
}

@media screen and (max-width: 780px) {
    .btn-ground {
        left: 19%;
    }

    .progres {
        width: 100vw;
    }
}

@media screen and (max-width: 580px) {
    .btn-ground {
        left: 5%;
    }

    .btn-screenshot {
        right: 8%;
    }

    .progres {
        width: 100vw;
    }
}

@media screen and (max-width: 580px) {
    .btn-ground {
        z-index: 10;
        position: absolute;
        width: 146px;
        /* background-color: #08f; */
        padding: 11px 10px;
        border: none;
        /* color: white; */
        font-size: 14px;
        bottom: 0px;
        left: 2%;
        right: 10px;
        /* margin: auto; */
        border-radius: 5px;
        display: none;
    }

    .btn-screenshot {
        z-index: 6;
        position: absolute;
        width: 96px;
        /* background-color: #08f; */
        padding: 11px 10px;
        border: none;
        /* color: white; */
        bottom: 0px;
        font-size: 14px;
        /* left: 0; */
        right: 9%;
        margin: auto;
        border-radius: 5px;
        display: block;
    }

    .progres {
        width: 100vw;
    }
}

.sacn-text {
    position: absolute;
    left: 48px;
    top: 5px;
    color: white;
    font-size: 16px;
}


@media screen and (min-width: 320px) and (max-width: 767px) and (orientation: landscape) {
    body {
        touch-action: none;
        user-select: none;
        transform: rotate(-90deg);
        transform-origin: left top;
        width: 100vh;
        overflow-x: hidden;
        position: absolute;
        top: 100%;
        left: 0;
        bottom: 0;
        height: 100vw !important;
    }

    /* .over-lay img{
        height: 100vw;
    } */
    .btn-ground {

        width: 184px;

        left: 0;
    }

    .video-canvas-all {

        transform: translateX(-50%) rotate(90deg);
    }

    .btn-screenshot {
        right: 0;
    }

    .progres {
        width: 100vw;
    }

}

.jq-toast-wrap,
.jq-toast-wrap * {
    margin: 0;
    padding: 0
}

.jq-toast-wrap {
    display: block;
    position: fixed;
    width: 100% !important;
    pointer-events: none !important;
    letter-spacing: normal;
    z-index: 9000 !important
}

.jq-toast-wrap.bottom-left {
    bottom: 20px;
    left: 20px
}

.jq-toast-wrap.bottom-right {
    bottom: 20px;
    right: 40px
}

.jq-toast-wrap.top-left {
    top: 20px;
    left: 20px
}

.jq-toast-wrap.top-right {
    top: 20px;
    right: 40px
}

.jq-toast-single {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 0 0 5px;
    border-radius: 4px;
    font-size: 12px;
    font-family: arial, sans-serif;
    line-height: 17px;
    position: relative;
    pointer-events: all !important;
    background-color: #444;
    color: #fff
}

.jq-toast-single h2 {
    font-family: arial, sans-serif;
    font-size: 14px;
    margin: 0 0 7px;
    background: 0 0;
    color: inherit;
    line-height: inherit;
    letter-spacing: normal
}

.jq-toast-single a {
    color: #eee;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid #fff;
    padding-bottom: 3px;
    font-size: 12px
}

.jq-toast-single ul {
    margin: 0 0 0 15px;
    background: 0 0;
    padding: 0
}

.jq-toast-single ul li {
    list-style-type: disc !important;
    line-height: 17px;
    background: 0 0;
    margin: 0;
    padding: 0;
    letter-spacing: normal
}

.close-jq-toast-single {
    position: absolute;
    top: 3px;
    right: 7px;
    font-size: 14px;
    cursor: pointer
}

.jq-toast-loader {
    display: block;
    position: absolute;
    top: -2px;
    height: 5px;
    width: 0;
    left: 0;
    border-radius: 5px;
    background: red
}

.jq-toast-loaded {
    width: 100%
}

.jq-has-icon {
    padding: 10px 10px 10px 50px;
    background-repeat: no-repeat;
    background-position: 10px
}

.jq-icon-info {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=);
    background-color: #31708f;
    color: #d9edf7;
    border-color: #bce8f1
}

.jq-icon-warning {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=);
    background-color: #8a6d3b;
    color: #fcf8e3;
    border-color: #faebcc
}

.jq-icon-error {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=);
    background-color: #a94442;
    color: #f2dede;
    border-color: #ebccd1
}

.jq-icon-success {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==);
    color: #dff0d8;
    background-color: #3c763d;
    border-color: #d6e9c6
}