
.f-contain *, .f-contain *::before, .f-contain *::after {
    box-sizing: content-box !important;
}

.f-contain input {
    position: absolute;
    z-index: 1;
    opacity: 0;
}

.f-contain {
    display: table;
    position: relative;
    padding-left: 29px;
    cursor: pointer;
}


.f-contain input[type="radio"] ~ .f-input {
    position: absolute;
    top: 0;
    left: 0;
    height: 21px;
    width: 21px;
    background: rgba(255, 255, 255, 1);
    transition: background 250ms;
    border: 1px solid rgba(255, 118, 0, 1);
    border-radius: 16px;
}


.f-contain input[type="radio"] ~ .f-input::after {
    content: '';
    position: absolute;
    display: none;
    left: 6px;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 32px;
    background: rgba(255, 118, 0, 1);
    transition: background 250ms;
}

.f-contain input:disabled ~ .f-input::after {
    border-color: rgba(135, 149, 161, 1);
}

.f-contain input:checked ~ .f-input::after {
    display: block;
}

.f-contain:hover input ~ .f-input,
.f-contain input:focus ~ .f-input {
    background: rgb(255, 238, 243);
}



.f-contain input:checked ~ .f-input {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 118, 0, 1);
}
.f-contain input[type="radio"]:disabled ~ .f-input {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 118, 0, 1);
    opacity: 0.6;
    cursor: not-allowed;
}

.f-contain input[type="radio"]:disabled ~ .f-input::after {
    background: rgba(135, 149, 161, 1);
}
.f-contain input[type="radio"]:focus ~ .f-text{
    color:#F4680B;
    font-weight: 600;
}

.f-contain .f-input::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    margin-left: 0;
    margin-top: 0;
    background: rgba(255, 118, 0, 1);
    border-radius: 32px;
    opacity: .6;
    z-index: 99999;
    transform: scale(0);
}

@keyframes f-ripple {
    0% {
        transform: scale(0);
    }

    20% {
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

@keyframes f-ripple-duplicate {
    0% {
        transform: scale(0);
    }

    30% {
        transform: scale(1);
    }

    60% {
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.f-contain input + .f-input::before {
    animation: f-ripple 250ms ease-out;
}

.f-contain input:checked + .f-input::before {
    animation-name: f-ripple-duplicate;
}

.f-contain .f-input::before {
    visibility: hidden;
}

.f-contain input:focus + .f-input::before {
    visibility: visible;
}

.f-contain:first-child .f-input::before {
    visibility: hidden;
}
