* {
    margin: 0;
    padding: 0;
}

html,
body {
    overflow: hidden;
}

.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;
}

@media screen and (max-width: 768px) {
    .buttons {
        flex-basis: 30%;
        font-size: 14px;
    }
}

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