/* Image Radio Button Css */
.parent.radio {
    margin-top: 16px;
}

.radio.parent>.row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 0 -10px;
}

.row.working_condition_row {
    max-width: 63%;
    /* margin: 0 auto !important; */
}

.col.text-center {
    /* width: 25%; */
    padding: 0 10px;
    flex-grow: 1;
}

.d-none {
    display: none;
}

.radio .col label {
    /* overflow: hidden; */
    position: relative;
    margin-bottom: 15px;
}

.radio .imgbgchk:checked+label>.tick_container {
    opacity: 1;
}

.radio .tick_container {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
    -ms-transform: translate(-50%, -50%);
    cursor: pointer;
    text-align: center;
}

.radio .tick {
    background-color: #4CAF50;
    color: white;
    font-size: 16px;
    padding: 6px 12px;
    height: 40px;
    width: 40px;
    border-radius: 100%;
}

.img_lable {
    /* position: absolute; */
    z-index: 1;
    bottom: -18px;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 14px;
}

.red-star {
    color: red;
}

/* End Image Radio Button Css */
