.mt-10 {
    margin-top: -2px;
}
.small-img {
    width: 75px;
    height: 75px;
    transition: scale .3s;
}

.small-img:hover {
    scale: 1.2;
}
.product-images {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 10px;
}

.single-img {
    position: relative;
}
.single-img .delete-img {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #f00;
    color: #fff;
    width: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 18px;
    cursor: pointer;
    display: none;
}
.single-img:hover .delete-img {
    display: flex;
}
.single-img .small-img:hover {
    scale: 1;
}

.loader {
    height: 100vh;
    width: 100vw;
    position: fixed;
    z-index: 99999999;
    inset: 0;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}
.loader img {
    width: 80px;
    height: 80px;
}

.loader.active {
    display: flex;
}

