﻿
*{
    padding:0;
    margin:0;
}

/*.gallery-main-container .gallery-main .prev-delete-container {
  
    position:relative;
}*/



.delete-icon {
    position: relative;
    bottom: 231px;
    left: 226px;
    width:fit-content;
}

.gallery-main .delete-icon i {
    color: red;
    cursor: pointer;
}

    .gallery-main .delete-icon i:hover {
        animation: vibrate 0.3s infinite;
    }

    @keyframes vibrate {
        0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-3px);
    }

    50% {
        transform: translateX(3px);
    }

    75% {
        transform: translateX(-3px);
    }

    100% {
        transform: translateX(3px);
    }
}



.gallery-main-container {
    width: calc(100% - 316px);
    float: right;
    display: flex;
    box-sizing: border-box;
    padding: 0px 20px;
    flex-direction: column;
    margin-top: 16px;
   gap:20px;
}

    .gallery-main-container ul {
        display: flex;
        list-style-type: none;
        flex-wrap: wrap;
        gap: 0px 15px;
    }

        .gallery-main-container ul li {
            height:fit-content;
        }


        .gallery-main-container .img-title {
            margin: 20px 0px;
        }

        .gallery-main-container .img-title input {
            font-size: 15px;
            padding: 10px 10px;
            border: 1px solid #cdcdcd;
            background: #F9F9F9;
            border-radius: 5px;
            outline: none;
        }

        .drop-section {
            padding: 10px 10px;
            background: #FFC100;
        }

.drop-area {
    border: 2px dashed #ffffff;
    padding: 10px;
    cursor: pointer;
    background-color: #F3B800;
    display: flex;
    flex-direction: column;
    height: 200px;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition:0.8s;
}

    .drop-area:hover {
        border-color: #d7d7d7;
    }

.instruction {
    color: white;
    font-size:19px;
}

#GalleryImage {
    display: none;
}

.custom-button {
    background-color: white;
    color: black;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 14px;
    font-weight: bold;
    text-align: center;
    font-size: 13px;
    padding: 4px 14px;
    transition: 0.5s;
}

    .custom-button:hover {
        background-color: #e4e5e5;
    }

.gallery-dcontainer .drop-info{
    margin:15px 0px;
}

    .gallery-dcontainer .drop-info p {
        display: flex;
        list-style-type: none;
        color: #797979;
    }


.gallery-dcontainer .btns ul {
    display:flex;
    justify-content:space-between;
    list-style-type:none;
}

.gallery-dcontainer .btns{
    margin:30px 0px;
}

.gallery-dcontainer .btns ul li {
    background: #F9F9F9;
    border: 0.5px solid #cbcbcb;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}


    .gallery-dcontainer .btns ul li:hover {
        background: #efefef;
    }

.gallery-dcontainer {
    width: 250px;
    display: inline-block;
}






.gallery-main li .images {
    width: 250px;
    height: 240px;
    cursor: pointer;
    transition:0.6s;
}




.gallery-main li .images:hover{
    filter: brightness(0.7);
    display: block
}



.gallery-main li .images:hover .delete-icon {  
    display: block;
}



.gallery-main li .images img {
    width: 100%;
    height: 100%;
}

/*

.gallery-main-container .submit-btns{
    margin-bottom:50px;
}


.gallery-main-container .submit-btns button {
    background: #23A6F0;
    color: white;
    padding: 10px 30px;
    float: right;
    border: none;
    font-size: 20px;
    border-radius: 5px;
    cursor:pointer;
    transition:0.5s;
}

    .gallery-main-container .submit-btns button:hover {
        border: 1px solid #23A6F0;
        background:white;
        color:black;
    }


.image-container {
    position: relative;
    display: inline-block;
}

.image-checkbox {
    position: absolute;
    top: 0;
    left: 0;
}


.images {
    position: relative;
}

.delete-icon {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 20px;
    color: red;
    cursor: pointer;
    display: none;
}

.images:hover .delete-icon {
    display: block;
}


.select-image-container ul li .images .prev-del {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


*/


.prev-del-main-container {
    font-family: "Poppins",sans-serif;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: transparent;
    border-radius: 4px;
    box-shadow: 0 4px 10px 4px rgba(19, 35, 47, 0.3);
    z-index: 999;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(0 0 0 / 44%);
    display:none;
}


.image-container {
    position: relative;
    margin: 0 auto;
    text-align: center;
}

img {
    max-width: 100%;
    height: auto;
}

.prev-button, .next-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    cursor: pointer;
}

.prev-button {
    left: -35px;
    color: white;
}

.next-button {
    right: -35px;
    color: white;
}


.overlay-notification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

    .overlay-notification .notification {
        background-color: #fff;
        border: 1px solid #ccc;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        padding: 20px;
        text-align: center;
        max-width: 380px;
        z-index: 2; 
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

        .overlay-notification .notification h2 {
            font-size: 24px;
            margin: 0 0 10px;
        }

        .overlay-notification .notification p {
            font-size: 16px;
            margin: 0 0 20px;
        }

        .overlay-notification .notification .button-container {
            display: flex;
            justify-content: center;
        }

        .overlay-notification .notification button {
            padding: 10px 20px;
            margin: 0 10px;
            border: none;
            cursor: pointer;
        }

        .overlay-notification .notification .cancel-button {
            background-color: #ccc;
        }

        .overlay-notification .notification .delete-button {
            background-color: #ff5733;
            color: #fff;
        }



.submit-btns {
    margin-top: 30px;
    padding: 70px 100px;
}

    .submit-btns button {
        float: right;
        background: #2199df;
        color: white;
        padding: 11px 20px;
        font-size: 20px;
        border: none;
        border-radius: 6px;
        cursor:pointer;
    }
@keyframes placeHolderShimmer {
    0% {
        background-position: -468px 0
    }

    100% {
        background-position: 468px 0
    }
}

.load {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: placeHolderShimmer;
    animation-timing-function: linear;
    background: #f6f7f8;
    background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
    background-size: 1000px 104px;
    position: relative;
    overflow: hidden;
    min-height: 50px;
}



@media (max-width: 800px) {
    #gallery_container {
        margin-left: -265px;
    
    }
}


@media (max-width: 800px) {
    #gallery_header {
        margin-left: -250px;
        margin-top: 109px;
    }
}











