body {
    position: relative;
    overflow: hidden;
    /* background-color:blue ; */
    height: 100vh;
    width: 100vw;
    margin: 0;
}

.arrow {
    /* width: 100vw;
    height: 100vh; */
    position: absolute;
    top: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
}

.panelTop {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    /*top: calc(100vh - 55px);*/
    width: 100vw;
    height: 50px;
}

model-viewer {
    width: 100vw;
    height: 100vh;
}

.slideShowRight,
.slideShowLeft {
    width: 20px;
    height: 20px;
    position: absolute;
}



.img {

    display: flex;
    justify-content: center;
    align-items: center;
}


#ar-button {
    display: none;
}

.modal {
    display: none;
    width: 100vw;
    height: 100vh;
    background-color: white;
    position: absolute;
    top: 0;
    justify-content: center;
    z-index: 50;
}

.close {
    position: absolute;
    top: 5%;
    right: 5%;
}

@media screen and (max-width:767px) {

    .boxpanel {
        /* border-radius: 10px; */
        background-color: rgb(219, 219, 219);
        width: 100%;
        /* width: calc(100vw / 2.3); */
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        height: 100%;
    }

    .box {

        /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
        width: 200px;
        height: 250px;
        padding: 1px;
        margin-top: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* .box img{
        width: 198px;
        height: 248px;
    } */

    .boxModal {
        overflow: scroll;
    }

    .slideShowRight{
        left: calc(100vw - 20px);
    }
    .slideShowLeft {
        left:  20px;
    }
}


@media screen and (min-width:768px) and (max-width:1023px) {

    .boxpanel {
        border-radius: 10px;
        background-color: rgb(219, 219, 219);
        width: calc(100vw / 1.5);
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        height: 100%;
    }

    .boxModal {
        width: 100vw;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        gap: 20px;


    }

    .box {
        /* width: calc(100vw /2); */
        margin-top: 10px;
    }

    .panelTop {
        top: 2%;
    }

    .slideShowRight{
        left: calc(100vw - 20px);
    }
    .slideShowLeft {
        left:  20px;
    }

}


@media screen and (min-width:1024px) {


    .slideShowRight{
        left: calc(100vw - 50px);
    }

    .slideShowLeft {
        left:  50px;
    }

    .boxpanel {
        border-radius: 10px;
        background-color: rgb(219, 219, 219);
        width: calc(100vw / 2.3);
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        height: 100%;
    }

    .panelTop {
        top: 2%;
    }


}