@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --text_color: #767483;
    --startlit_navy: #000A51;
    --electric_cobalt: #0A65E5;
    --luminous_fibre: #FF7B31;
    --vapor_blue: #73C0FF;
    --gas: #EC1414;
    --white: #ffffff;
    --green: #18B234;
    --light: #F3F3F9;
    --stroke: #DEE2E6;
    --primary_font: "Poppins", serif;
}
body,
html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: 14px !important;
    font-weight: 400;
    font-family: var(--primary_font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    display: flex;
    flex-direction: column;
    color: #181c32;
}

body {
    background-color: #F3F3F9;
}

#root,
body,
html,
#kt_body {
    height: 100%;
}

a {
    text-decoration: none;
}

main {
    background-color: var(--light);
    display: inline-block;
    width: 100%;
    height: 100%;
    font-family: var(--primary_font);
    font-weight: 400;
}

.btn.btn-custom {
    padding: 0 40px;
    min-height: 48px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 13px;
    color: var(--white);
    ;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn.btn-custom.vapor_blue {
    background-color: var(--vapor_blue);
}

.btn.btn-custom.luminous_fibre {
    background-color: var(--luminous_fibre);
}

.btn.btn-custom.startlit_navy {
    background-color: var(--startlit_navy);
}

/*** Title ***/
.custom_title {
    margin-bottom: 30px;
}

.custom_title .heading {
    font-size: 23px;
    font-weight: 600;
    color: var(--startlit_navy);
    margin: 0;
    line-height: 30px;
}

.custom_title .small_heading {
    font-size: 18px;
    font-weight: 600;
    color: var(--startlit_navy);
    margin: 0;
    line-height: 30px;
}

.custom_title .sub-heading {
    font-size: 13px;
    font-weight: 500;
    color: var(--text_color);
    margin: 0;
    line-height: 30px;
}

/*** Breadcrumbs ***/
.breadcrumb_wrapper {
    background: url('../img/breadcrumb_bg.jpg') no-repeat center center / cover;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.breadcrumb_wrapper .breadcrumb {
    margin: 0;
    padding: 0;
    text-align: center;
    color: var(--electric_cobalt);
    display: flex;
    justify-content: center;
}

.breadcrumb_wrapper .breadcrumb li::after {
    content: '>';
    position: relative;
    padding: 0 10px;
}

.breadcrumb_wrapper .breadcrumb li:last-child::after {
    display: none;
}

.breadcrumb_wrapper .breadcrumb li a {
    color: var(--luminous_fibre);
}

.breadcrumb_wrapper .breadcrumb li,
.breadcrumb_wrapper .breadcrumb li a {
    font-size: 14px;
    font-weight: 500;
}

.breadcrumb_wrapper h2 {
    font-family: var(--primary_font);
    font-size: 64px;
    font-weight: 600;
    color: var(--white);
}

/*** Main Content Wrapper ***/
.main_content,
.main_content_wrapper {
    padding: 50px 0;
}

.main_content_wrapper {
    background-color: var(--white);
    border-radius: 20px;
}

/*** Stepper ***/
.left_stepper {
    padding: 0 30px;
}

.left_stepper .stepper_list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.left_stepper .stepper_list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.left_stepper .stepper_list li a {
    color: var(--text_color);
    font-size: 15px;
    font-weight: 500;
}

.left_stepper .stepper_list li.active a {
    color: var(--luminous_fibre);
}

.left_stepper .stepper_list li::before {
    content: '';
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 2px solid var(--text_color);
    background-color: var(--white);
    z-index: 2;
}

.left_stepper .stepper_list li::after {
    content: '';
    height: 90px;
    width: 2px;
    background-color: var(--text_color);
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 1;
}

.left_stepper .stepper_list li:last-child:after {
    display: none;
}

.left_stepper .stepper_list li.active::before {
    border-color: var(--startlit_navy);
}
.left_stepper .stepper_list li.completed{
    color: var(--startlit_navy);
}
.left_stepper .stepper_list li.completed::before {
    content: url('../img/circle_checked.svg');
    border-color: transparent;
}

.left_stepper .stepper_list li.completed::after {
    background-color: var(--startlit_navy);
}

/*** Right Stepper Content ***/
.right_stepper_content {
    border-left: 1px solid var(--text_color);
    padding: 0 50px;
    gap: 20px;
}

.custom_search_form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.right_stepper_content .custom_search_form .custom_search,
.custom_search_form .custom_search .custom_search_input {
    display: flex;
    align-items: center;
    gap: 30px;
}

.right_stepper_content .custom_search_form .custom_search .custom_search_input {
    border: 2px solid var(--startlit_navy);
    border-radius: 14px;
    color: var(--startlit_navy);
    font-size: 13px;
    font-weight: 400;
    padding: 10px 15px;
    flex: 1;
    display: flex;
    justify-content: space-between;
}

.right_stepper_content .custom_search_form .custom_search .custom_search_input .custom_search_input_left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.right_stepper_content .custom_search_form .custom_search input {
    /* height: 48px; */
    border: none;
    flex: 1;
}

.right_stepper_content .custom_search_form .custom_search input:focus,
.right_stepper_content .custom_search_form .custom_search input:active {
    outline: none;
}

.right_stepper_content .custom_search_form .custom_search input::placeholder {
    color: var(--text_color);
}

.control_buttons {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.right_stepper_content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.search_success {
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
}

.custom_search_form .invisible-checkboxes {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.box_wrapper {
    flex-basis: 50%;
}

.custom_search_form .checkbox-alias {
    background-color: var(--light);
    z-index: 1;
    position: relative;
    transition: all 250ms ease-out;
    cursor: pointer;
    display: inline-block;
    padding: 30px;
    border-radius: 20px;
    height: 100%;
}

.custom_search_form .invisible-checkboxes input[type=checkbox] {
    display: none;
    /*   margin-right: -20px;
  position: relative;
  z-index: 2; */
}

.custom_search_form .invisible-checkboxes input[type=checkbox]:checked+.checkbox-alias {
    background-color: var(--startlit_navy);
}

.custom_search_form .invisible-checkboxes span.check {
    position: absolute;
    top: 15px;
    right: 15px;
}

.custom_search_form .checkbox-alias h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--startlit_navy);
}

.custom_search_form .checkbox-alias p {
    font-size: 13px;
    font-weight: 500;
    color: var(--text_color);
    line-height: 30px;
    margin: 0;
}

.custom_search_form .invisible-checkboxes input[type=checkbox]:checked+.checkbox-alias h5,
.custom_search_form .invisible-checkboxes input[type=checkbox]:checked+.checkbox-alias p {
    color: var(--white);
}

.custom_search_form .invisible-checkboxes input[type=checkbox]:checked+.checkbox-alias svg,
.custom_search_form .invisible-checkboxes input[type=checkbox]:checked+.checkbox-alias path {
    fill: var(--white);
    fill-opacity: 1;
}

.select_options {
    display: flex;
    gap: 30px;
}

.select_options .form_group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.select_options .form_group label {
    font-size: 15px;
    font-weight: 500;
    color: var(--startlit_navy);
    line-height: normal;
}

.select_options .form_group label span {
    color: var(--luminous_fibre);
}

.select_options .form_group .form-control {
    border-color: var(--text_color);
    border-radius: 14px;
    padding: 10px 15px;
    border-width: 2px;
    font-size: 13px;
    font-weight: 400;
    color: var(--text_color);
    min-height: 55px;
}

/*** Plans ***/
.plans_form .invisible-checkboxes {
    display: flex;
    gap: 30px;
    align-items: stretch;
    flex-wrap: wrap;
}

.plans_form .checkbox-alias {
    background-color: var(--light);
    z-index: 1;
    position: relative;
    transition: all 250ms ease-out;
    cursor: pointer;
    /* display: inline-block; */
    padding: 30px;
    border-radius: 20px;
    height: 100%;
    color: var(--startlit_navy);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.plans_form .checkbox-alias .plan_head {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.plans_form .invisible-checkboxes input[type=checkbox] {
    display: none;
    /*   margin-right: -20px;
  position: relative;
  z-index: 2; */
}

.plans_form .invisible-checkboxes span.check {
    position: absolute;
    top: 15px;
    right: 15px;
}

.plans_form .checkbox-alias h6 {
    font-size: 12px;
}

.plans_form .checkbox-alias h5 {
    font-size: 24px;
    font-weight: 600;
    color: var(--startlit_navy);
    margin: 0;
}

.plans_form .checkbox-alias h5 small {
    font-size: 10px;
}

.plans_form .checkbox-alias h6 {
    margin: 0;
}

.plans_form .checkbox-alias p {
    font-size: 13px;
    font-weight: 500;
    color: var(--startlit_navy);
    line-height: 30px;
    margin: 0;
}
.plan_list svg path{
    fill: var(--startlit_navy);
}
.plans_form .invisible-checkboxes input[type=checkbox]:checked+.checkbox-alias svg,
.plans_form .invisible-checkboxes input[type=checkbox]:checked+.checkbox-alias path {
    fill: var(--white);
    fill-opacity: 1;
}
.plans_form .invisible-checkboxes input[type=checkbox]:checked+.checkbox-alias{
    background-color: var(--startlit_navy);
    color: var(--white);
}
.plans_form .invisible-checkboxes input[type=checkbox]:checked+.checkbox-alias h5,
.plans_form .invisible-checkboxes input[type=checkbox]:checked+.checkbox-alias h6,
.plans_form .invisible-checkboxes input[type=checkbox]:checked+.checkbox-alias p{
    color: var(--white);
}
.plans_form .invisible-checkboxes ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.plans_form .invisible-checkboxes ul li {
    display: flex;
    align-items: start;
    gap: 15px;
    font-size: 14px;
}
.plans_form .invisible-checkboxes ul li span{
    padding-top: 3px;
}
#plan_addon .btn-close {
    background: transparent;
    padding: 0;
    margin: 0;
    position: absolute;
    right: 10px;
    top: 8px;
    opacity: 1;
    width: auto;
    height: auto;
}

#plan_addon .modal-header {
    justify-content: center;
    border: none;
    align-items: center;
}

#plan_addon .modal-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 30px;
    color: var(--startlit_navy);
}

#plan_addon .addon_head {
    margin-bottom: 20px;
}

#plan_addon .modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

#plan_addon .modal-dialog {
    max-width: 600px;
}

#plan_addon .modal-footer {
    border: none;
}

.addon_list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.addon_list ul li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 2px solid var(--light);
    padding: 10px 10px;
    border-radius: 15px;
}

.addon_list ul li h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--startlit_navy);
    margin: 0;
}

.addon_list ul li h6 {
    font-size: 13px;
    font-weight: 500;
    color: var(--startlit_navy);
    margin: 0;
}

.addon_list ul li p {
    font-size: 13px;
    font-weight: 400;
    color: var(--text_color);
    margin: 0;
}

.addon_list_content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.units_cal {
    display: flex;
    align-items: center;
    gap: 15px;
}

.units_cal span {
    cursor: pointer;
}
.units_cal span svg path {
    fill: var(--startlit_navy);
}
.units_cal input {
    border: none;
    width: 15px;
    color: var(--text_color);
}

.units_cal input:focus,
.units_cal input:active {
    border: none;
    outline: none;
}

/*** Account Details ***/
.address_box {
    background-color: var(--light);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 20px;
}

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

.address_box .title h4 {
    color: var(--startlit_navy);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.address_box .title input {
    background-color: transparent;
    border-color: var(--text_color);
    width: 22px;
    height: 22px;
    border-radius: 7px;
}

.address_box .title input[type="checkbox"]:checked {
    background-color: var(--startlit_navy);
    border-color: var(--startlit_navy);
}

.address_box .title .form-check {
    display: flex;
    align-items: center;
    gap: 12px;
}

.address_box .title .form-check-label {
    color: var(--text_color);
    font-size: 13px;
    font-weight: 600;
}

.account_details_form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/*** Terms & Condition ***/
.right_stepper_content_terms h5 {
    color: var(--luminous_fibre);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
    line-height: 30px;
}

.right_stepper_content_terms p {
    color: var(--text_color);
    font-size: 13px;
    font-weight: 400;
    line-height: 30px;
}

.right_stepper_content_terms ol li::marker {
    color: var(--luminous_fibre);
}

.form-check input[type="checkbox"] {
    background-color: transparent;
    border-color: var(--text_color);
    width: 22px;
    height: 22px;
    border-radius: 7px;
    border-width: 2px;
}

.form-check input[type="checkbox"]:checked {
    background-color: var(--startlit_navy);
    border-color: var(--startlit_navy);
}

.form-check {
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-check-label {
    color: var(--text_color);
    font-size: 13px;
    font-weight: 600;
}

/*** Summary ***/
.right_stepper_content_above.right_stepper_content_above_divide {
    display: flex;
    height: 100%;
    align-items: flex-start;
}

.right_stepper_content_above.right_stepper_content_above_divide .col-half {
    flex: 1;
}

.right_stepper_content_above.right_stepper_content_above_divide .col-half.right_content {
    border-left: 1px solid var(--text_color);
}

.right_stepper_content_above .left_content_wrapper .left_content_wrapper_head {
    /* border-bottom: 1px solid var(--text_color); */
    text-align: center;
}

.right_stepper_content_above .left_content_wrapper .left_content_wrapper_head h3 {
    color: var(--startlit_navy);
    font-size: 36px;
    font-weight: 600;
    margin: 0;
}

.right_stepper_content_above .left_content_wrapper .left_content_wrapper_head p {
    color: var(--text_color);
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 15px;
}

.right_stepper_content_above .left_content_wrapper .left_content_wrapper_body {
    padding-top: 15px;
}

.right_stepper_content_above .left_content_wrapper .left_content_wrapper_body ul li {
    color: var(--text_color);
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 10px;
}

.right_stepper_content_above.right_stepper_content_above_divide .col-half.left_content,
.right_stepper_content_above.right_stepper_content_above_divide .col-half.right_content {
    padding: 0 20px;
}

.right_content_wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/*** Payment Success Modal ***/
#make_payment .make_payment_body {
    display: flex;
    align-items: stretch;
}

#make_payment .make_payment_body .make_payment_body_wrapper {
    flex: 1;
    padding: 50px;
    display: flex;
    align-items: center;
}

#make_payment .make_payment_body .make_payment_body_left {
    border-right: 1px solid var(--text_color);
}

#make_payment .modal-body {
    padding-left: 0;
    padding-right: 0;
}

#make_payment .custom_title {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#make_payment .make_payment_body_left_head {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#make_payment .custom_title p {
    color: var(--text_color);
    font-size: 20px;
    font-weight: 400;
}

#make_payment .custom_title p a {
    color: var(--startlit_navy);
    font-weight: 600;
}

/*** Authentication ***/
.auth_box {
    background-color: var(--white);
    display: flex;
    align-items: stretch;
    padding: 0;
    min-height: 100vh;
}

.auth_box .col_half {
    flex: 1;
}

.auth_box .col_half.right {
    background: url('../img/auth_bg.jpg') no-repeat center center / cover;
    position: relative;
}

.auth_box .col_half.right::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 10, 81, 0.8);
    z-index: 1;
}

.auth_box .col_half.right .col_half_right_wrapper {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
    gap: 20px;
    padding: 50px;
    height: 100%;
    position: relative;
    z-index: 2;
}

.auth_box .col_half.right .col_half_right_wrapper h3 {
    color: var(--white);
    font-size: 40px;
    font-weight: 600;
    margin: 0;
    line-height: 48px;
}

.auth_box .col_half.right .col_half_right_wrapper h6 {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    line-height: 24px;
}

.auth_box_wrapper .select_options {
    flex-direction: column;
    gap: 20px;
}

.auth_box_wrapper {
    width: 80%;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    height: 100%;
}

.auth_box_wrapper .auth_box_wrapper_head {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth_box_wrapper .auth_box_wrapper_head h4 {
    color: var(--startlit_navy);
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    line-height: 48px;
}

.auth_box_wrapper .auth_box_wrapper_head p {
    color: var(--text_color);
    font-size: 13px;
    font-weight: 400;
    margin: 0;
    /* line-height: 48px; */
}

.auth_box_wrapper_body form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth_box_wrapper_body form p {
    font-size: 14px;
    font-weight: 400;
    color: var(--text_color);
}

.auth_box_wrapper_body form a {
    font-size: 14px;
    font-weight: 400;
    color: var(--startlit_navy);
}

.auth_box_wrapper_body form p a {
    font-weight: 600;
}

/*** UI Changes in React 3 Feb 2025 ***/
.custom_search_input .MuiOutlinedInput-root:hover .MuiOutlinedInput-notchedOutline,
.custom_search_input .MuiOutlinedInput-notchedOutline {
    border-color: transparent !important;
}

.custom_search_input .css-1y8r37a-MuiAutocomplete-root .MuiOutlinedInput-root.MuiInputBase-sizeSmall {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
}

.custom_search_input .MuiInputLabel-formControl {
    transform: translate(0, 3px) scale(1);
    font-family: var(--primary_font);
    color: var(--text_color);
    font-size: 13px;
    font-weight: 400;
}

.custom_search_input .MuiFormLabel-root.Mui-focused,
.custom_search_input .MuiFormLabel-root {
    display: none;
}

.right_stepper_content .custom_search_form .custom_search .custom_search_input {
    min-height: 55px;
}

.custom_search_input .css-19qh8xo-MuiInputBase-input-MuiOutlinedInput-input {
    font-family: var(--primary_font);
    color: var(--startlit_navy);
    font-size: 13px;
    font-weight: 400;
}

.btn.btn-custom {
    padding: 0 40px;
    min-height: 55px !important;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase !important;
    border-radius: 13px;
    color: var(--white) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;
}

.left_stepper .stepper_list li,
.btn.btn-custom {
    font-family: var(--primary_font);
}

.left_stepper .stepper_list li {
    color: var(--text_color);
    font-size: 15px;
    font-weight: 500;
}

.left_stepper .stepper_list li.active {
    color: var(--startlit_navy);
}

.plans_form .box_wrapper {
    max-width: calc(50% - 15px);
}

/* #plan_addon{
    height: auto;
    width: 100%;
}
#plan_addon::before{
    content: '';
    height: 100%;
    width: 100%;
    background-color: #000;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
} */

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    /* Dark overlay */
    z-index: 1040;
}

.right_stepper_content .custom_search_form .custom_search .custom_search_input .custom_search_input_left svg path{
    fill: var(--startlit_navy);
}
.custom_search_form .custom_title .small_heading{
    color: var(--startlit_navy);
}
.custom_search_form .invisible-checkboxes span.check svg{
    background: rgb(0 0 0 / 3%);
}
.invisible-checkboxes span.check svg{
    background: #ffffff24;
    border-radius: 24px;
}
.invisible-checkboxes span.check svg path{
    opacity: 0;
}
.invisible-checkboxes input[type=checkbox]:checked+.checkbox-alias svg, .invisible-checkboxes input[type=checkbox]:checked+.checkbox-alias path{
    opacity: 1;
}
.select_options .form_group select.form-control{
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    background-image: url("../img/arrow-down.svg");
    background-repeat: no-repeat;
    background-position-x: 97%;
    background-position-y: 14px;
}
.account_details_form .css-o9ckdg-MuiInputBase-root-MuiInput-root{
    min-height: 55px;
    background-color: transparent !important;
}
ul.summary_tbl {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.summary_tbl li {
    display: flex;
    justify-content: space-between;
    color: var(--text_color);
}
.add_on_list_box {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.add_on_list_box h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--startlit_navy);
}
.add_on_list_box.grand_total{
    border-bottom: none;
}
.add_on_list_box.grand_total li{
    font-weight: 600;
    color: var(--startlit_navy);
}
.add_ons {
    background: var(--light);
    padding: 10px 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}
.summary_content_wrapper .custom_title{
    margin-bottom: 20px;
}
.summary_content_wrapper .custom_title .heading{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.right_stepper_content_above.summary_content_wrapper .left_content_wrapper .left_content_wrapper_head h3{
    font-size: 18px;
}
.summary_page .right_stepper_content{
    padding: 0 10px 0 0;
}
.summary_page .right_stepper_content_above.right_stepper_content_above_divide .col-half.right_content{
    max-width: 45%;
}
.right_stepper_content_above.right_stepper_content_above_divide .col-half.left_content{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.add_on_box{
    border: 1px solid rgb(204, 204, 204);
    border-radius: 5px;
    padding: 20px;
    flex-basis: calc(50% - 5px);
}
.summary_page .control_buttons{
    padding-right: 15px;
}
.add_on_box{
    position: relative;
}

span.tooltip_text {
    visibility: hidden;
    width: 80%;
    background-color: rgba(9, 22, 88, 0.9);
    border-radius: 20px;
    color: #fff;
    text-align: left;
    padding: 5%;
    font-size: 14px;
    position: absolute;
    z-index: 1;
    top: 50px;
    right: 0;
    opacity: 0;
    transition: opacity 0.3s;
}
.tooltip_info:hover span.tooltip_text {
    visibility: visible;
    opacity: 1;
}
ul.tooltip_content {
    padding: 0 10px;
}
ul.tooltip_content li {
    font-size: 13px;
    font-weight: 400;
}
.tooltip_icon svg path,
.make_payment_body_left_head svg path{
    fill: var(--startlit_navy);
}
.qtty{
    align-items: center;
    text-align: center;
    color:#767483;
  }

/**** SUmmary Changes ****/
.text-orange{
    color: var(--luminous_fibre);
}
.text-blue{
    color: var(--electric-cobalt);
}
.summary_page .right_stepper_content_above.right_stepper_content_above_divide .col-half.left_content{
    background-color: var(--light);
    padding: 10px;
    border-radius: 10px;
}
.summary_page .right_stepper_content,
.right_stepper_content_above.right_stepper_content_above_divide .col-half.right_content{
    border: none;
}
.summary_page .right_stepper_content_above.right_stepper_content_above_divide .col-half.left_content{
    flex-direction: column;
}
.right_stepper_content_above.right_stepper_content_above_divide .col-half.left_content .add_on_box{
    background-color: var(--white);
    border: none;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
}
.summary_page .left_content_wrapper_head{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.summary_page .left_content_wrapper_head h5{
    color: var(--text_color);
    font-size: 14px;
    font-weight: 500;
}
.summary_page .left_content_wrapper_head h3{
    font-size: 20px;
    font-weight: 500;
}
.summary_page .left_content_wrapper_head h5,
.summary_page .left_content_wrapper_head h3,
.summary_page .left_content_wrapper_head p{
    margin: 0;
}
.custom_tooltip_container:hover .custom_tooltip_text {
  display: block;
}

.custom_tooltip_text {
  display: none;
  top: 100%;
  left: 0;
  background-color: #fff;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 300px;
  z-index: 1000;
}
.form-group .input-group.password-group .form-control,
.input-group .form-control {
    border-right: none;
}

.form-group .input-group.password-group .input-group-text,
.input-group .input-group-text {
    border-radius: 0 13px 13px 0;
    background: transparent;
    border-left: none;
    border-color: var(--text_color);
    border-width: 2px;
}
.form-group .form-control:focus,
.input-group.password-group .form-control:focus {
  border-color: var(--text_color);
  box-shadow: none;
  outline: none;
}

.input-group.password-group .form-control:focus + .input-group-text {
  border-color: var(--text_color);
  box-shadow: none;
  outline: none;
}

.footer-below{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cp {
    cursor: pointer
}
.lb{
    font-size: 15px;
    /* font-weight: 500 !important; */
    color: var(--startlit_navy);
    line-height: normal;
     user-select: none;
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;
}
