.media-controller {
    width: 100%;
    height: 100px;
    padding-left: 112px;
    display: inline-block;
    position: relative;
}

.media-controller .box-add-media {
    width: 100px;
    height: 100px;
    background: #f2f2f2;
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
}

.img-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.box-add-media .btn-browse {
    width: 100%;
    text-align: center;
    padding: 3px;
    background: rgba(0, 0, 0, .2);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    cursor: pointer;
}

.list-media-controller {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    position: relative;
}

.list-media-controller .list-media {
    width: 100px;
    height: 100px;
    background: #ddd;
    margin-right: 12px;
    display: inline-block;
    border-radius: 4px;
    position: relative;
}

.btn-remove-media {
    width: 20px;
    height: 20px;
    background: #ee3535;
    position: absolute;
    top: 0px;
    right: 0px;
    border-radius: 50%;
    text-align: center;
    cursor: pointer
}