body{
    background-color: black;
    font-size: 15px;
}
.remainning{
    width: 200px;
    height: 200px;
    background-image: url('../Gimg/Remeinder.png');
    background-repeat: no-repeat;
    background-origin: padding-box;
    background-size: cover;
    border-radius: 50%;
    
}
.galleryContent{
    width: 500px;
    height: 500px;
    position: relative;
    border-radius: 1rem 1rem 1rem 1rem;
    overflow: hidden;
    border: solid 3px #fff;
    /* background-size: cover; */
}

.galleryContent_img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.galleryContent_span{
    content:"";
    position: absolute;
    bottom: 0;
    right: 0;
    border-style: solid;
    border-width: 0;
    box-shadow: -3px -7px 5px 1px rgba(0,0,0,0.41);
}

.action{
    transition: border ease 5s;
    border-width: 1000px 1000px 0 0;
    border-color: #eee  transparent transparent #eee;
}

.noaction{
    border-width: 50px 50px 0 0;
    border-color: #ddd  #000 #000 #ddd;
}

.hideImg{
    transition: opacity ease 5s;
    opacity: 0;
}

.showImg{
    transition: opacity ease 5s;
    opacity: 1;
}
/* .galleryContent_sheetController{
    position: absolute;
    top: 90%;
    left: 90%;
    background-color: black;
    border: solid 3px #fff;
    width: 10%;
    height: 10%;
    border-radius: 0 1rem 6rem 1rem;
} */

@media (max-width: 767.98px) {
    .remainning{
        width: 50px;
        height: 50px;
    }
    .galleryContent{
        width: 350px;
        height: 350px;
    }
    .action{
        transition: border ease 5s;
        border-width: 700px 700px 0 0;
        border-color: #eee  transparent transparent #eee;
    }
    
    .noaction{
        border-width: 50px 50px 0 0;
        border-color: #ddd  #000 #000 #ddd;
    }
    
}
@media (min-width: 767.98px) and (max-width: 991.98px) {
    .remainning{
        width: 100px;
        height: 100px;
    }
    .galleryContent{
        width: 400px;
        height: 400px;
    }
    .action{
        transition: border ease 5s;
        border-width: 900px 900px 0 0;
        border-color: #eee  transparent transparent #eee;
    }
    
    .noaction{
        border-width: 50px 50px 0 0;
        border-color: #ddd  #000 #000 #ddd;
    }
    
}
