/**/

div#productgroup_container span.control-label {
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    display: block;
}

.product_group_checkbox {
    display: flex;
    flex-direction: column;
}

span.product_group_selected_value {
    font-weight: normal;
}

.product_group_checkbox .product_group {
    background: #fff;
    margin-bottom: 5px;
    padding: 5px;
    position: relative;
    border: 1px solid #e9e9e9;
    transition: all ease-in-out 0.2s;
}

.product_group_checkbox .product_group:not(.selected):hover {
    background: #efefef;
    transition: all ease-in-out 0.2s;
}

.product_group_checkbox .product_group img {
    margin-right: 10px;
    border-right: 1px solid #e3e3e3;
    padding-right: 10px;
    width: 100%;
    height: auto;
    max-width: 50px;
}
.product_group_checkbox .product_group a {
    display: flex;
    color: #000;
    align-items: center;
}

.product_group_checkbox .product_group.selected:before {
    background: #e9e9e952;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: not-allowed;
    pointer-events: all !important;

}

