﻿.image-picker {
    cursor: pointer;
    margin: 0;
    padding: 2px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .image-picker div {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .image-picker img {
        max-height: 100%;
    }

    .image-picker .new-div {
        opacity: 0;
    }

    .image-picker img[src=''] + .new-div {
        opacity: 1;
    }
