.custom-form-group-container {
    min-height: 60px;
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #D8E0ED;
    border-radius: 8px;
    padding: 8px 16px;
    transition: .2s all ease-in-out;
    cursor: pointer;
    position: relative;
}

.custom-form-group-container label {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: #9B9B9B;
    margin-bottom: 4px;
}

.selected-option-img {
    width: 18px !important;
    height: 18px !important;
    border-radius: 15px;
}

/*checkbox*/
.custom-form-group-container.checkbox-form-group label {
    margin-bottom: 8px;
}

.custom-form-group-container.checkbox-form-group .custom-checkbox {
    width: 16px;
    height: 16px;

    background: #FFFFFF;
    border: 1px solid #244170;
    border-radius: 3px;
}

.custom-form-group-container.checkbox-form-group .value {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 22px;
    color: #244170;
}

/*counter*/
.custom-form-group-container.count-form-group {
    min-height: 40px;
    cursor: initial;
}

.custom-form-group-container.count-form-group .title {
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    color: #94A3B8;
    margin-bottom: 0;
}

.custom-form-group-container.count-form-group .value {
    font-style: normal;
    font-weight: 700;
    font-size: 10px;
    line-height: 16px;
    color: #263F6E;
}

.custom-form-group-container.count-form-group img.shirt {
    width: 28px;
    height: 28px;
    margin-left: 10px;
}

.custom-form-group-container.count-form-group .counter {
    width: 80px;
    height: 30px;
    display: flex;
    justify-content: space-between;
    background: #F0F5FD;
    border-radius: 12px;
    padding: 6px 8px;
    margin-right: 16px;
}

.custom-form-group-container.count-form-group .counter img {
    width: 10px;
    cursor: pointer;
}

.custom-form-group-container.count-form-group .counter img:hover {
    opacity: .5;
}

.custom-form-group-container.count-form-group .counter .dec {
    display: none;
}

.custom-form-group-container.count-form-group .counter span.number {
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    color: #263F6E;
}

