.small-img {
    width: 70px;
    max-height: 70px;
    /* background-color: green; */
    border-radius: 10px;
    margin: 10px;
    border: 1px dashed gray;
}

.small-img.last {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    justify-items: center;
    display: flex;
    background-color: gray;

}

.single-gallery {
    border-radius: 10px;

}

 .gallery-body {
    margin-top: 30px;
    position: absolute;
    justify-content: left;
    margin-left: 20px;
    width: 100%;
    bottom: 0;
    z-index: 400;
}
.gallery-body .details > p {
    font-size: 14px;
    margin: 0!important;
    padding: 0!important;
}
.gallery-body .details > h3 {
    font-weight: 1000;
    color: white;
    margin: 0!important;
    padding: 0!important;

}

.gradient {
    position: absolute;
    bottom: 0;
    height: 200px;
    width: 100%;
    background: rgb(38, 38, 38);
    background: -moz-linear-gradient(0deg, rgba(38, 38, 38, 1) 0%, rgba(50, 50, 50, 0.8464635854341737) 21%, rgba(101, 101, 101, 0.7708333333333334) 41%, rgba(118, 118, 118, 0) 86%);
    background: -webkit-linear-gradient(0deg, rgba(38, 38, 38, 1) 0%, rgba(50, 50, 50, 0.8464635854341737) 21%, rgba(101, 101, 101, 0.7708333333333334) 41%, rgba(118, 118, 118, 0) 86%);
    background: linear-gradient(0deg, rgba(38, 38, 38, 1) 0%, rgba(50, 50, 50, 0.8464635854341737) 21%, rgba(101, 101, 101, 0.7708333333333334) 41%, rgba(118, 118, 118, 0) 86%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#262626", endColorstr="#767676", GradientType=1);
}

.big-img {
    max-height: 400px;

}


.slider {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.slide {
    border-radius: 20px;
    height: 600px;
    flex: 0 0 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease-in-out;
}

.controls button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px dashed gray;
    border-radius: 10px;
    font-size: 2rem;
    cursor: pointer;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.dot {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.5;
    cursor: pointer;
}

.dot.active {
    background: green;
    opacity: 1;
}


/* gallery detils  */

.galleryDisplay {
    position: absolute;
    top: 0;
    height: 100vh;
    min-height: 100vh;
    background-color: white;
    width: 100%;
    z-index: 1000;
    overflow: scroll;
}

.gallery-header button {
    background-color: transparent;
    border: 0px;
    font-size: 15px;
    color: gray;
    border: 1px dashed gray;
    border-radius: 10px;
    cursor: pointer;
}