.custom-radio {
    display: none !important;
}

.custom-radio+label .icon {
    background-color: #F4F4F4;
    border-radius: 8px;
    display: inline-block;
    border: 1px solid var(--icon-checked-color, #F4F4F4)
}

.custom-radio[value="5"]+label .icon:before {
    -webkit-mask: var(--custom-radio-icon-5m3) no-repeat center;
    mask: var(--custom-radio-icon-5m3) no-repeat center;
}

.custom-radio[value="10"]+label .icon:before {
    -webkit-mask: var(--custom-radio-icon-10m3) no-repeat center;
    mask: var(--custom-radio-icon-10m3) no-repeat center;
}

.custom-radio[value="15"]+label .icon:before {
    -webkit-mask: var(--custom-radio-icon-15m3) no-repeat center;
    mask: var(--custom-radio-icon-15m3) no-repeat center;
}

.custom-radio+label .icon:before {
    content: '';
    display: block;
    width: 80px;
    height: 80px;
    background-color: #aaaaaa;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.space-wrapper {
    display: flex;
    justify-content: space-between;
}

.space-wrapper>div {
    flex: 0 0;
}

.space-wrapper>div span {
    text-align: center;
    display: block;
    color: #AAAAAA;
}

.custom-radio:checked+label .icon {
    border: 1px solid var(--icon-checked-color, #003F88) !important;
}

.custom-radio:checked+label .icon:before {
    background-color: var(--icon-checked-color, #003F88) !important;
}

.space-wrapper>div .custom-radio:checked+label span {
    color: #003F88;
}

.contact-radio-wrapper {
    display: flex;
    gap: 10px;
    max-width: 330px;
    margin: auto;
    flex-direction: column;
    padding-bottom: 5px;
}

.contact-radio-wrapper .custom-radio-2 {
    width: 15px;
    height: 15px;
    margin-right: 12px;
}

@media screen and (max-width: 767px) {
    .custom-radio+label .icon {
        width: 60px;
        height: 60px;
    }

    .custom-radio+label .icon:before {
        width: 60px;
        height: 60px;
        mask-size: contain !important;
    }

    .contact-radio-wrapper {
        max-width: 205px;
        padding-top: 10px;
    }

    .contact-radio-wrapper label {
        font-size: 14px !important;
        line-height: 20px !important;
    }

    .contact-radio-wrapper .custom-radio-2 {
        width: 12px;
        height: 12px;
        margin-right: 5px;
    }
}