﻿
.multiple-container .photo-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.multiple-container .photo-item {
    width: 120px;
    height: 120px;
    border: 1px solid #dedede;
    border-radius: 5px;
    margin-right: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 10px;
    background-size:cover;
    background-repeat:no-repeat;
    background-position:center center;
}

  /*  .multiple-container .photo-item img {
        max-width: 120px;
        max-height: 120px;
    }*/

    .multiple-container .photo-item.photo-add {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

.multiple-container .photo-add .file-box {
    display:none;
}
.multiple-container .photo-add label.add-file {
    display: inline-block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
}

.multiple-container .add-icon {
    font-size: 24px;
    font-weight: bold;
}

.multiple-container .photo-item .remove {
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: url('/images/remove.png') no-repeat center center;
    cursor: pointer
}

.multiple-container .photo-item .icon-number {
    width: 20px;
    height: 20px;
    border: 2px solid #e62e04;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 5px;
    bottom: 5px;
    z-index: 1;
    color: #e62e04
}