.photos-gallery {
    width: 100%;
}

.photos-gallery__main {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 16px;
}

.photos-gallery__main > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photos-gallery__prev,
.photos-gallery__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, .5);
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding-left: 15px;

}

.photos-gallery__prev {
    left: 15px;
}

.photos-gallery__next {
    right: 15px;
}

.photos-gallery__thumbnails {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    overflow-x: auto;
}

.photos-gallery__thumbnail {
    flex: 0 0 80px;
    height: 60px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: none;
}

.photos-gallery__thumbnail.active {
    border-color: var(--light);
}

.photos-gallery__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photos-gallery__thumbnail-wrapper {
    position: relative;
    flex: 0 0 80px;
    height: 60px;
}

.photos-gallery__thumbnail-wrapper
.photos-gallery__thumbnail {
    width: 100%;
    height: 100%;
}

.photos-gallery__delete {
    position: absolute;
    top: -7px;
    right: -7px;

    width: 22px;
    height: 22px;

    padding: 0;
    padding-left: 5px;
    border: 0;
    border-radius: 50%;

    background: var(--white);
    color: var(--light);

    font-size: 18px;
    line-height: 22px;

    cursor: pointer;

    box-shadow: 0 2px 6px rgba(0, 0, 0, .25);
}

.photos-gallery__delete:hover {
    background: var(--red);
    color: white;
}

.photos-gallery__input {
    margin-top: 15px;
}

/*
.photos-gallery__add {
    padding: 10px 16px;

    border: 0;
    border-radius: 8px;

    background: var(--light);
    color: white;

    cursor: pointer;
}
*/
.photos-gallery__uploading {
    display: none;
    margin-top: 8px;
    font-size: 13px;
}

.photos-gallery__uploading.active {
    display: block;
}

.photos-gallery__empty {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 100%;

    color: var(--grey);
}