.modal-box-select-image-for-wishlist{
    width: 70%;
}

.modal-body-select-image-for-wishlist {
    padding: 0 1em .2em 1em;
}

.select-image-for-wishlist__items {
    display: flex;
    overflow-y: scroll;
    flex-direction: row;

    height: 260px;

    flex-wrap: wrap;
    justify-content: space-between;
}

.select-image-for-wishlist__item {
    width: 95%;
    margin-bottom: .75em;
    padding-top: 100%;

    background-image: url('../../images/empty_img_wishlist.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.select-image-for-wishlist__item.active {
    position: relative;

    border-radius: .15em;
    box-shadow: inset 0 0 0 .15em rgba(53, 182, 222, .85);
}

.select-image-for-wishlist__item.active:after {
    position: absolute;
    top: .25em;
    right: .25em;

    width: 1.2em;
    height: 1.2em;

    content: '';

    background-image: url('./../../svg/check_blue_on.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.modal-body-select-image-for-wishlist__container-button {
    display: flex;

    padding-bottom: 12px;

    justify-content: space-around;
}

@media (min-width: 660px) {
    .modal-box-select-image-for-wishlist{
        width: 440px;
    }

    .modal-body-select-image-for-wishlist {
        margin-top: -1em;
    }

    .select-image-for-wishlist__item {
        width: 120px;
    }

    .select-image-for-wishlist__items {
        justify-content: flex-start;
    }

    .select-image-for-wishlist__item {
        height: 120px;
        margin: 5px 5px;
        padding-top: 0;

    }
}
