.radio-style.checked + label:before {
    background: #F28747;
}

.dop_services {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 12px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.25s ease;
}

.dop_services:hover {
    border-color: rgba(255, 255, 255, 0.7);
    background-color: rgba(255, 255, 255, 0.08);
}

/* Скрываем стандартный чекбокс */
.dop_services input[type="checkbox"] {
    display: none;
}

.dop_services span {
    font-size: 13px!important;
}

/* Создаем кастомный чекбокс */
.dop_services .custom-checkbox {
    width: 15px;
    height: 15px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    display: inline-block!important;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

/* Галочка при активном состоянии */
.dop_services input[type="checkbox"]:checked + .custom-checkbox {
    background-color: #F28747;
    display: inline-block!important;
}

.dop_services input[type="checkbox"] + .custom-checkbox::after {
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
    content: "";
    display: inline-block!important;
    width: 15px;
    height: 15px;
    transition: all 0.25s ease;
}







.dop_services input[type="checkbox"]:checked + .custom-checkbox::after {
    background-color: #F28747; /* цвет заливки */
    border-color: #a75500;
    box-shadow: 0 0 8px rgba(255, 128, 0, 0.6);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.173 12.414 2.293 8.535 3.707 7.12l2.466 2.466 5.466-5.466L13.293 5.12 6.173 12.414z'/%3E%3C/svg%3E");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    transition: all 0.25s ease;
}

/* Текст */
.dop_services span {
    font-size: 11px;
    font-weight: 500;
    color: #fff;
    display:inline!important;
}

.dop_services .text{
    position: relative;
    top: -3px;
    left: 7px;
    font-size: 13px;
}


.dop_services .block{
    position: relative;
    top: 3px;
}