.custom-radio-input {
    display: none; 
}

.custom-radio-label {
    display: inline-block;
    padding: 10px;
    margin: 5px;
    border: 2px solid rgb(226,8,143);
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-radio-input:checked + .custom-radio-label {
    background-color: rgb(226,8,143);
    color: #ffff;
    border-color: rgba(226,8,143);
}

.custom-radio-label:hover {
    background-color: #e0e0e0;
    color: rgb(226,8,143);
}

.price
{
    display: block;
    font-size: 14px;
    font-weight: 400;
    margin-top: 5px;
}


.q-header
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #051b33;
    font-weight: 400;
    margin-bottom: 10px;
    font-size:18px;
}

.selected-option
{
    justify-content: space-between;
    color: rgb(226,8,143);
    font-weight: 600;
    text-decoration: underline;
    font-size:14px;
}

.question-container
{
    margin-bottom: 30px;
}

.damage-input-row
{
    display: flex;
    align-items: center;
    justify-content:space-between;
}


.damage-radio span
{
    margin: 0 10px;
}

.damage-radio input
{
    top:2px;
    position:relative;
}

.damage-option-section
{
    margin-top:20px;
}

.damage-input-row img {
    position: absolute;
    right: -17px;
    top: 6px;
    width: 14px;
}


.damage-input-row span {
    position: relative;
}

span.bullet-point {
    background: #e2088f;
    color: white;
    padding: 5px;
    border-radius: 100%;
    width: 28px;
    height: 28px;
    display: inline-block;
    text-align: center;
    line-height: 17px;
    margin-right: 5px;
}

.custom-radio-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;

}



.q-content {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
}

.damage-option-section
{
    width: 100%;
}

.price-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-link
{
    color:#e2088f;
    margin-top:10px;
}

@media screen and (max-width:480px)
{
    .q-header
    {
        font-size: 14px;
        gap:10px;
    }

    .price-container {
        flex-direction: column;
        text-align: center;
    }

    .price-container h3
    {
        font-size: 18px;
        margin:0;
    }

    .price-container h1
    {
        font-size:25px;
    }
    
    .damage-input-row {
        font-size: 14px;
    }

    .damage-input-row span p
    {
        margin: 0;
    }

    .custom-radio-label
    {
        font-size:14px;
    }
}

.battery-heath-container
{
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}