@media screen and (max-width: 600px)
{
    .photoVideo
    {
        width: 160px;
        height: 170px;
    }
    #productDetailsButtons
    {
        width: 140px;
        font-size: 80%;
    }
    #carousalInnerDiv
    {
        height: 100%;
    }
    #carousalImg
    {
        height: auto;
        max-height: 100%;
    }
    #prevNextMobileControl
    {
        width: 20%;
    }
    #prevNextMobile
    {
        height: 30px;
        width: 30px;
        font-size: 19px;
    }
    .carousalProductDetailsDiv
    {
        display: none;
    }
}


/* Product Details Design */
.productDetailsButtons
{
    width: 180px;
    height: 50px;
    font-size: 90%;
    color: black;
    background-color: darkseagreen;
}
.productDetailsButtons:hover
{
    color: white;
    background-color: seagreen;
}
.carousalInnerDiv
{
    max-width: 100%;
    height: 800px;
}
.carousalImg
{
    max-width: 100%;
    height: auto;
    max-height: 800px;
}
.carousel-dark .carousel-indicators [data-bs-target]
{
    background-color: white;
    transition: opacity 0s ease;
}
.carousel-control-prev, .carousel-control-next
{
    width: 10%;
}
.prevNextWeb
{
    background-color: lightgray;
    color: black;
    height: 50px;
    width: 50px;
    font-size: 31px;
}


/* Photos & Videos Design */
.gallery-grid
{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 5px;
}

.photoVideo
{
    cursor: pointer;
    object-fit: cover;
}
.photoVideo video
{
    cursor: pointer;
    object-fit: cover;
}
.videoPlayIcon
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    color: #ffffff;
    font-size: 2rem;
    background-color: #00000025;
}