* {
    margin: 0;
    padding: 0;
}

html,
body {
    overflow: hidden;
}

button, img
{
    z-index: 9999 !important;
}
a{
    cursor: pointer;
}
.webgl {
    position: fixed;
    top: 0;
    left: 0;
    outline: none;
    cursor: pointer;
}

#blocker {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
}

.product-details-heading {
    word-break: break-all;
}

#instructions {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    font-size: 14px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: white;
    cursor: pointer;
}

#loading-screen {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 1;
    transition: 1s opacity;
}

#loading-screen.fade-out {
    opacity: 0;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #9370DB;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #BA55D3;
    -webkit-animation: spin 5s linear infinite;
    animation: spin 3s linear infinite;
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #FF00FF;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/* 
#mousepointer{
    background-image: url(/static/pointer.png);
    width: 25px;
    height: 25px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 99;
}

#handcursor{
    background-image: url(/static/HandCursor.png);
    width: 25px;
    height: 25px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 99;
} */

/* #mousepointer{
    cursor: default;
}

#handcursor{
    cursor: pointer;
} */
.top_buttons {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.buttons {
    font: inherit;
    background: #ffffff05;
    border-radius: 10px;
    border: 2px solid #000000;
    color: black;
    cursor: pointer;
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
    flex-basis: 11%;
    margin: 6px;
}

.buttons:focus {
    outline: none;
}

.buttons:hover,
.buttons:active {
    background: #dbdbdb86;
    border: 2px solid #664444;
}

#retail_price {
    color: #777777;
}

/*
  #control-center {
    border: 2px solid #ccc;
    margin: 5rem;
    padding: 2rem;
  } */
ul {
    list-style: none;
    max-height: 60vh;
    overflow-y: scroll;
}

label {
    padding-left: 10px;
}

.buttonscetion {
    display: flex;
    justify-content: space-between;
    padding-top: 5rem;
}
.buttonscetion button
{
    flex-basis: 48%;
}

#searchbox {
    width: 100%;
    border: 1px solid;
    box-shadow: none;
    border-radius: 5px;
    padding: 9px;
    margin-bottom: 10px;
}

#product_list img {
    width: 60px;
}


.footer{
    position: absolute;
    bottom: 0;
    right: 0;
}

.footer #uparrow img,.footer #downarrow img{
width: 60px;
}

.footer #uparrow{
    position: absolute;
    right: 10px;
    bottom: 155px;
    
}
.footer .camera{
    position: absolute;
    right: 10px;
    bottom: 80px;
}

.footer #downarrow{
    position: absolute;
    right: 10px;
    bottom: 15px;
    
}


@-webkit-keyframes uparrows {
    0% { -webkit-transform: translateY(0); }
    100% { -webkit-transform: translateY(-0.3em); opacity: 0.9 }
  }
  @-webkit-keyframes downarrows {
    0% { -webkit-transform: translateY(0);  }
    100% { -webkit-transform: translateY(0.3em); opacity: 0.9 }
  }


#uparrow {
    -webkit-animation: uparrows 0.6s infinite alternate ease-in-out;
  }
  #downarrow {
    -webkit-animation: downarrows 0.6s infinite alternate ease-in-out;
  }
  

  @media screen and (max-width: 768px) {
    .buttons {
        flex-basis: 30%;
        font-size: 14px;
    }

    .footer #uparrow{
        bottom: 108px;
        
    }

    .footer #uparrow img,.footer #downarrow img, .footer .camera{
        width: 40px;
        }
    .footer .camera{
        bottom: 60px;
    }
}


#loader-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: #00000073;
}
  
#progress-bar {
    height: 25px;
    width: 500px;
    background-color: #ccc;
    border-radius: 15px;
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    margin: 0 auto;
    box-shadow: 0 5px 5px 1px #00000075;
}
  
  #progress {
    width: 0;
    height: 100%;
    background-color: #3498db;
    border-radius: 15px;
    
  }
  
  #percentage {
    text-align: center;
    line-height: 20px;
    color: #fff;
    font-weight: bold;
    position: absolute;
    left: 0;
    right: 0;
    top: 4px;
  }
  
  @media only screen and (max-width: 768px) {
    #progress-bar{
        left: 0;
        right: 0;
        width: 320px;
        margin: 0 auto;
        min-width: unset;
    }
  }

/*# sourceMappingURL=main.css.map*/