form .rating input[type=radio] {
    display: none;
}

.uploader {
    width: 100%;
    border: dashed 2px rgba(0,0,0,.1);
    cursor: pointer;
    padding-top: 12px;
    padding-bottom: 12px;
    user-select:none;
}

.uploader .dragging, 
.uploader.dragging,
.uploader:hover {
	box-shadow:0 1rem 3rem rgba(0,0,0,18%) !important
}

.uploader span {
    font-weight: bolder;
    display: block;
    text-align: center;
    padding: 0px 5px;
    line-height: 1;
    font-size: 15px;
    color: rgba(0,0,0,0.25);
}

.uploader img {
    width: 100px;
    display: block;
    text-align: center;
    margin: 10px auto;
    filter: grayscale(1);
}

.jrow {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    
    flex-direction: row;
    align-items: center;
    width: 100%;
}

.jrow > div {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.jrow > div {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 576px){
    .jrow > div {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 768px){
    .jrow > div {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (min-width: 992px){
    .jrow > div {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
}


a.quitar {
    position: absolute;
    top: 6px;
    right: 20px;
    background: white;
    border: solid 1px red;
    color: red;
    border-radius: 5px;
    height: 26px;
    width: 26px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.foto +.quitar{
    opacity:0.25;
}
.foto:hover +.quitar,
.quitar:hover,
.quitar:active{
    opacity:1;
}