.input-con {
    width: 100%;
    max-width: 375px;
    box-sizing: border-box;
}

.offer-selection-button {
    width: 100%;
    overflow-x: auto;
    display: flex;
    white-space: nowrap;
    gap: 10px;
}

.offer-selection-button::-webkit-scrollbar {
    display: none;
}

.checkbox_Service_container {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 0;
}

.checkbox_Service {
    background: #FFFFFF;
    overflow: hidden;
    width: 100%;
    position: relative;
    cursor: pointer;
    height: 107px; 
}

.checkbox_Service label {
    margin: 0;
    height: 100%;
    width: 100%;
    word-break: break-word;
}

.checkbox_Service label {
    content: '';
    flex: 0 0 auto;
    min-width: 100%;
    background-image: url('../img/horizontal.png');
    background-position: center center;
    background-repeat: no-repeat;
    height: 100%;
}

.single-offer .checkbox_Service label {
    background-size: cover;
    width: 278px;
}

.multiple-offer .checkbox_Service label {
    background-size: contain;
    width: 225px;
}

.checkbox_Service label input {
    position: absolute;
    opacity: 0;
    color: #fff !important;
}

.checkbox_Service label span {
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.checkbox_Service label span p {
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    line-height: 16.8px;
    text-align: left;
    padding-left: 10px;
    margin: 0 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
}

.single-offer .checkbox_Service input:checked+span {
    color: #000000;
    background: url('../img/onclickbg.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.multiple-offer .checkbox_Service input:checked+span {
    color: #000000;
    background: url('../img/onclickbg.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

/* Responsive Adjustments */
@media (max-width: 360px) {
    .single-offer .checkbox_Service {
        height: 100px;
    }
}
