.combinations{
    overflow: hidden;
    /*text-align: center;*/
    margin-bottom: 20px;
}




.combinations .attributeGroup{
    margin-bottom: 16px;
    overflow: hidden;
}

.combinations .square.noAvailable label,
.combinations .square.noAvailable:hover label{
    border-color: #b9b9b9 !important;
    color: #b9b9b9 !important;
    cursor: default !important;
    background: transparent !important;
}



.combinations input[type="radio"]{  
    display: none;
}


.combinations label{    
    min-width: 46px;
    height: 29px;
    padding-left: 5px;
    padding-right: 5px;
    line-height: 25px;
    text-align: center;
    cursor: pointer;
    float: left;
    margin-right: 10px;
    border: 2px solid #cacaca;
    display: block;
    background: #fff;
    margin-top: 10px;
    color: #000;
    position: relative;
    font-size: 13px;
    object-fit: cover; 
}
.combinations label img{
    display: inline-block;
    object-fit: cover;
    height: auto;
    max-height: 100%;

}
.combinations label:hover{
    border-color: #000;
}

.combinations input[type="radio"]:checked + label{
    background: #fff;
    color: #000;
    border-color: #000;
}

.combinations input[type="radio"]:checked + label:after{
    border: none;
    position: absolute;
    content: '\f00c';
    top: -0.625rem;
    right: -6px;
    right: -0.375rem;
    width: 18px;
    width: 1.125rem;
    height: 18px;
    height: 1.125rem;
    font-family: 'FontAwesome';
    background: #26b522;
    color: #fff;
    border-radius: 10px;
    font-size: 11px;
    font-size: 0.7375rem;
    text-align: center;
    line-height: 1.125rem;

}