
#slideshow-chargesheet-section {
    /* height: 110vh; */
    /* position: relative; */
    padding-top: 1.25rem;
    padding-block:0 0px;

    width: 100%;
    height: fit-content;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}


.slideshow-chargesheet-swiper {
    width: 100%;
    height: fit-content;
    height: auto;
    /* padding-block: 150px 0px; */
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;

}

.slideshow-chargesheet-swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
    
}


.slideshow-chargesheet-swiper .swiper-slide {
    

    width: 360px;
    height: fit-content;
    aspect-ratio: 4/ 5;

/* 4:5 1200x1500 */
  
    display: flex;
    justify-content: center;
}

.slideshow-chargesheet-swiper .swiper-slide>img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    /* border: 4px solid var(--primary-color); */
    object-fit: cover;
    object-position: 0% 20%;
}

.slideshow-chargesheet-swiper .swiper-slide {
    /* filter: blur(5px); */
    transition: box-shadow 0.3s ease, opacity 0.3s ease;

}

.slideshow-chargesheet-swiper .swiper-slide-active {
    filter: blur(0);
    opacity: 1;
    /* border-radius: 10px;
    box-shadow: 0 0px 10px 2px rgba(0, 0, 0,.5); */

}

/* navigation arrow */
.slideshow-chargesheet-swiper .swiper-button-prev::after,
.slideshow-chargesheet-swiper .swiper-button-next::after {
    content: "";
}


.slideshow-chargesheet-swiper .swiper-button-next {
    /* border: solid black; */
    right: -30px;
    top: 50%;
}

.slideshow-chargesheet-swiper .swiper-button-next img,.slideshow-chargesheet-swiper .swiper-button-prev img {
    width: 50px;
    max-width: 50px;
}

.slideshow-chargesheet-swiper .swiper-button-prev {

    left: -30px;
    top: 50%;

    /*horizontal flip */
    transform: scaleX(-1);
}

 



.slideshow-chargesheet-swiper .swiper-slide-active .swiper-button-next,
.slideshow-chargesheet-swiper .swiper-slide-active .swiper-button-prev {
    display: block;
}

.slideshow-chargesheet-swiper .swiper-button-next,
.slideshow-chargesheet-swiper .swiper-button-prev {
    display: none;
}

/* buttons */
#slideshow-buttons-container{
    display: flex; 
/* margin-block: 50px 70px;  */
flex-wrap: wrap; 
gap: 1.25rem; 
justify-content: center; 
margin-top: 3%;

}
#slideshow-buttons-container .download-btn {
    /* width: 150px; */
    background-color: var(--red);
    /* padding:5px 10px ; */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    color: white;
    /* font-weight: bold; */
    font-family: Boogaloo;
    /* font-size: 1.5rem; */
    cursor: pointer;
    text-decoration: none;
    gap: 10px;
}
#slideshow-buttons-container>a:first-child{
    /* width: 220px; */
}
 
#slideshow-buttons-container>a:first-child span>span{
    color: #fedf35;
}

#slideshow-buttons-container .download-btn>span {
    /* padding-top: 6px; */
}

#slideshow-buttons-container .download-btn svg {
    fill: white;
    width: 20px;
    height: 20px;
}
 

/* share modal */
 /* Modal Styling */
 .slideshow_shareModal_modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1234;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* display: flex; */
    justify-content: center;
    align-items: flex-start;
    padding-top: 10vh;
}

.slideshow_modal-content {
    background-color: #374151;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    padding: 20px;
    text-align: center;
    position: relative;
}

/* Close button */
.slideshow_close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #9ca3af;
    font-size: 20px;
    font-family: none;
}

.slideshow_close-btn:hover {
    color: #ffffff;
}

/* Share buttons */
.slideshow_share-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

.slideshow_share-icons a {
    text-decoration: none;
}

.slideshow_share-icons img {
    width: 50px;
    height: 50px;
    transition: transform 0.2s ease-in-out;
}

.slideshow_share-icons img:hover {
    transform: scale(1.1);
}

.slideshow_modal-heading {
    color: #d1d5db;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 10px;
}



/* for smaller devices */
@media screen and (max-width: 768px) {
    #slideshow-chargesheet-section {
        /* height: fit-content;
        height:  max-content;  */
        height: auto;
        /* padding-block: 0px 200px;
        padding-block: 0px 25px; */

        

    }

    .slideshow-chargesheet-swiper {
        width: 100%;
        height: 100%;
        /* padding-block: 100px 20px ; */
    }

    .slideshow-chargesheet-swiper .swiper-slide {
        width: 300px;
    }

    .slideshow-chargesheet-swiper .swiper-button-next {

        right: -25px;
        top: 52%;
    }

    .slideshow-chargesheet-swiper .swiper-button-next img,.slideshow-chargesheet-swiper .swiper-button-prev img {
        width: 40px;
        max-width: 40px;
    }

    .slideshow-chargesheet-swiper .swiper-button-prev {
        left: -25px;
        top: 52%;
    }


    /* buttons */
    #slideshow-buttons-container{
    flex-direction: column;
    align-items: center;
    width: 90%;
    gap: 12px;
    margin:20px 0 0px; 
    }
    
    #slideshow-buttons-container .download-btn {
        /* font-size: 1.25rem; */
        /* padding-bottom: 2px; */
        width: fit-content;
        /* padding: 5px 20px; */
    }
    #slideshow-buttons-container>a:first-child{
        /* width: 200px; */
        /* font-size: 1.25rem; */
        /* padding-bottom: 2.1px; */
    }


    /* share modal */
    .slideshow_modal-content {
    
        width: 90%;
        margin: 0 auto;
    }
}