.wholeBoxWrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 60vh;
}

.lightBoxWrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    max-width: 80%;
}

.ast-desktop .lightBoxWrapper{
    max-width: 60%;
}

.bigImageWrapper{
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    width: 100%; 
    height: 100%;  
    object-fit: contain;    
    overflow: hidden;
}

.bigImageWrapper .btn{
    display: flex;
    background-color: orange;
    border: 1px solid black;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    padding-bottom: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bigImageWrapper .btn:hover{
    filter: brightness(0.4);
}

.bigImageWrapper .left.btn{
    position: absolute;
    left: 10px;
    font-size: 30px;    
}

.bigImageWrapper .right.btn{
    position: absolute;
    right: 10px;
    font-size: 30px;
}

.bigImageWrapper .bigImages{
    display: none;
}

.bigImageWrapper .bigImages.active{
    display: block;
    width: 100%;
    height: 100%;
}

.bigImageWrapper .bigImages.active img{
    display: block;
    width: 100%;
    height: 60vh;
}

.ast-header-break-point .bigImageWrapper .bigImages.active img{
    height: 40vh;
}   
.smallImageWrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    gap: 5px;
}

.smallImageWrapper .smallImage{
    filter: brightness(0.2);
}

.smallImageWrapper .smallImage.active{
    filter: brightness(1);
}

