
.description-container{
    filter : none;
    margin-top: 20px;
    margin-bottom: 20px;
}

.hidden {
    opacity: 0;
    pointer-events: none; /* Prevent interaction when hidden */
}



.text-description{
    font-size: 22px;
    color: #000;
    text-align: center;
    padding: 0;
    margin-top: 0px;
    margin-bottom: 0px;
    /* background-color: red; */
    font-family: 'Fira', sans-serif;
}

.cam-film-desc{
    padding-top: 20px;
}

.camera-description{
    font-size: 15px;
    color: #000;
    text-align: center;
    padding: 0;
    margin-top: 0px;
    margin-bottom: 0px;
    /* background-color: red; */
    font-family: 'Fira', sans-serif;
}

/* 
main{
    margin-top: 45px;
} */


.img{
    margin-right : 5px;
    margin-top : 5px;
    width: 25%;
    height: 25%;
    cursor: pointer;
}
.single-img{
    margin-right : 5px;
    margin-top : 5px;
    width: 50%;
    height: 50%;
    cursor: pointer;
}

.img_bottom{
    margin-right : 5px;
    margin-top : 5px;
    bottom: 0;
    width: 25%;
    height: 25%;
}

.horizontal-flex-container{
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    vertical-align: middle;
    align-items: center;
    background: #ffff;
}

.single-horizontal-container{
    display: flex;
    /* flex-flow: row nowrap; */
    justify-content: center;
    vertical-align: middle;
    align-items: center;
    background: #ffff;

}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 90;
    cursor: pointer;
}

#overlayImage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 70%;
    max-height: 70%;
    cursor: default;
    z-index: 99;
}


/* arrow common style */
.arrow img{
    width: 15px;
    height: 15px;
    cursor: pointer;
    position: relative;
    z-index: 91;
    padding-top: 4px;
    padding-left: 5px;
}

.arrow-container {
    position: absolute;
    /* top: 45%; */
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 91;
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrow-container:hover::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    /* padding-top: -10px; */
    background-color: rgba(80, 80, 80, 0.8); /* Semi-transparent background */
}

#arrowLeft {
    left: 100px; /* Adjust to your preference */
}

#arrowRight {
    right: 100px; /* Adjust to your preference */
}

ul {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    text-align: center;
    list-style: none;
    padding: 0;
    z-index: 91;
    display: flex;
    justify-content: space-between;
    width: 100%;
}


.arrow-left img {
    transform: scaleX(-1);
}