.Step_2 {
    height: 90vh;
    overflow-y: auto;
    scrollbar-width: thin;
}

.Step_2 .all_operation_div {
    min-width: 70%;
    height: unset !important;
}

.Step_2 .all_operation_div .texholder .form-control {
    border-radius: 5px;
    font-size: 13px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
}

.Step_2 .all_operation_div .all_frame_div {
    padding: 0px 7px 0px;
    height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    margin-bottom: 15px;
}

.Step_2 .all_operation_div .all_frame_div .frame_div {
    background: #fff;
    padding: 15px 5px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.Step_2 .all_operation_div .all_frame_div .frame_div.active {
    background-color: #FCE0C4;
    border: 1px solid #B87332;
    box-shadow: 0px 1px 3px 1px #B87332;
}

.Step_2 .all_operation_div .all_frame_div .frame_div .frame_img_holder {
    height: 40px;
    width: auto;
    margin-bottom: 10px;
}

.Step_2 .all_operation_div .all_frame_div .frame_div .frame_img_holder .frame_img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.Step_2 .all_operation_div .all_frame_div .frame_div .frame_name {
    color: #000;
    font-size: 13px;
    text-align: center;
    margin-bottom: 0px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    overflow-wrap: break-word;
word-break: normal;
}

.Step_2 .all_operation_div .all_frame_div .sub_frame_div {
    background: #fff;
    padding: 0px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.Step_2 .all_operation_div .all_frame_div .sub_frame_div.active {
    background-color: #FCE0C4;
    border: 1px solid #B87332;
    box-shadow: 0px 1px 3px 1px #B87332;
}


.Step_2 .all_operation_div .all_frame_div .sub_frame_div .frame_img_holder {
    padding: 10px;
    width: 100%;
    height: 70px;
}

.Step_2 .all_operation_div .all_frame_div .sub_frame_div .frame_img_holder .frame_img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.Step_2 .all_operation_div .all_frame_div .sub_frame_div .name_holder {
    width: 100%;
    background-color: #C4D6FC;
    padding: 7px 5px;
    border-radius: 0px 0px 7px 7px;
}

.Step_2 .all_operation_div .all_frame_div .sub_frame_div.active .name_holder {
    background-color: #fff;
}

.Step_2 .all_operation_div .all_frame_div .sub_frame_div .name_holder .frame_name {
    color: #000;
    font-size: 13px;
    text-align: center;
    margin-bottom: 0px;
}

.Step_2 .all_operation_div .all_frame_div .sub_row {
    padding: 5px;
}



@media (min-width:0px) and (max-width:991px) {
    .Step_2 .all_operation_div .all_frame_div {
        height: unset;
    }

    .Step_2 {
        height: unset;
    }

    .Step_2 .mobile_row{
        flex-wrap: nowrap;
        overflow: auto;
    }
}