body {
    color: #4f4f4f;
    font-family: 'robotoregular';
    font-weight: 400;
    font-size: 14px;
    overflow-x: hidden;
}

body .ba-page-wrapper p,
body .ba-page-wrapper li,
body .ba-page-wrapper table tr td {
    line-height: 25px;
}

@media(max-width:768px) {
    .choose_plan_table_wrapper {
        overflow-x: scroll;
        overflow-y: hidden;
        padding-top: 15px;
    }
}

table.choose_plan_table {
    display: table;
    box-sizing: border-box;
    border-collapse: separate;
    text-indent: initial;
    unicode-bidi: isolate;
    border-spacing: 2px;
    border-spacing: 15px 0;
    min-width: 740px;
    margin-left: -15px;
    margin-right: -15px;
}

/*Choose Plan*/
@media(max-width:768px) {
    table.choose_plan_table {
        min-width: 900px !important;
        border-spacing: 5px;
        margin-left: 0px;
        margin-right: 0px;
    }
}

table.choose_plan_table td {
    transition: .3s;
}

.choose_plan_table tr td:nth-child(1) {
    width: 16.66%;
}

.choose_plan_table tr td:nth-child(2),
.choose_plan_table tr td:nth-child(3),
.choose_plan_table tr td:nth-child(4),
.choose_plan_table tr td:nth-child(5),
.choose_plan_table tr td:nth-child(6) {
    width: 16.66%;
}

.plan_subheading {
    vertical-align: top;
    padding: 0 15px 15px;
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
}

.plan_subheading span.bigger-strong {
    font-weight: 600 !important;
    font-size: 16px;
}

td.plan_heading {
    border: 1px solid #ddd;
    border-bottom: none;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 30px 15px 5px;
}

td.plan_heading h3 {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 0px;
    font-family: 'robotobold';
    font-weight: normal;
}

.plan_features td {
    text-align: center;
    padding: 18px;
    border: 1px solid #ddd;
    border-top: none;
}

.first-feature {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-top: 1px solid #ddd !important;
}

.features_heading td {
    text-align: center;
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
}

.features_heading td:first-child {
    text-align: left;
    border: none;
}

.plan_features td:first-child {
    text-align: left;
    padding: 18px 8px;
}

.tick_choose_table {
    width: 18px;
    height: 19px;
    margin: 0 auto;
    background-image: url('../images/tick.png');
}

.cross_choose_table {
    width: 15px;
    height: 16px;
    margin: 0 auto;
    background-image: url('../images/cross.png');
}

a.get_started_btn {
    border: 1px solid #fff;
    display: block;
    background-color: #56c8e3;
    color: #fff;
    padding: 8px;
    border-radius: 20px;
    margin: 0 15px;
    text-decoration: none;
}

tr.features_heading td {
    padding: 5px 0 28px;
}

tr.features_heading h2 {
    font-size: 28px;
    font-family: 'robotobold';
    font-weight: normal;
}

.ending_feature td {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.turn_blue {
    background-color: #56c8e3;
    color: #fff;
    border-color: #fff !important;
}

.turn_blue .tick_choose_table {
    background-image: url('../images/tick_white.png');
}

.turn_blue .cross_choose_table {
    background-image: url('../images/cross_white.png');
}

.user_registration_header {
    background-color: #6694f5;
    color: #fff;
    padding: 15px 30px;
    font-size: 22px;
    margin-bottom: 20px;
    font-family: robotobold;
}

.registration_grey_box {
    border: 1px solid #ccc;
    padding: 15px 30px 15px;
    /*min-height: 437px;*/
}

.user_information_mobile_text {
    display: none;
    font-size: 18px;
}


.bookLive-btn {
    position: relative;
    border: 1px solid #55c8e2;
    color: #55c8e2 !important;
    text-decoration: none;
    padding: 1px 5px !important;
    display: inline-block !important;
    font-size: 12px;
    margin: 25px 0 0 !important;
    /*font-weight: 600;*/
}

.footer-login-column {
    display: none !important;
}

@media(max-width: 768px) {
    table.choose_plan_table {
        min-width: 900px !important;
    }
}

.new_plan {
    padding: 0px 5px;
    background: #f81100;
    display: inline-block;
    border-radius: 2px;
    font-size: 11px;
    color: #fff;
    line-height: 18px;
}

/* --- CUSTOM POPOVER CSS --- */
.custom-popover-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.custom-popover-content {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%) translateX(10px);
    background-color: #ffffff;
    color: #333333;
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    width: 320px;
    z-index: 9999;
    text-align: left;
    cursor: default;
}

.custom-popover-wrapper:hover .custom-popover-content,
.custom-popover-wrapper:focus-within .custom-popover-content {
    visibility: visible;
    opacity: 1;
}

.custom-popover-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -8px;
    transform: translateY(-50%);
    border-width: 8px 8px 8px 0;
    border-style: solid;
    border-color: transparent #e0e0e0 transparent transparent;
}

.custom-popover-content::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -7px;
    transform: translateY(-50%);
    border-width: 7px 7px 7px 0;
    border-style: solid;
    border-color: transparent #ffffff transparent transparent;
}

.text-light-blue {
    color: #1fb6d8;
}

.fs-13 {
    font-size: 13px !important;
}

.fs-14 {
    font-size: 14px !important;
}

.fs-15 {
    font-size: 15px !important;
}

.fs-16 {
    font-size: 16px !important;
}

.info-icon {
    color: #1fb6d8;
    font-size: 10px;
    margin-left: 8px;
    cursor: pointer;
    width: 18px;
    height: 18px;
    border: 1px solid;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin-top: 0px;
}

.video-btn {
    padding: 4px 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    cursor: pointer;
    text-decoration: none;
}

.video-btn:hover {
    text-decoration: none;
}

.video-btn:hover strong {
    text-decoration: underline;
}

.video-btn strong {
    font-size: 13px !important;
    font-weight: 400 !important;
    text-decoration: underline;
}

.choose_plan_table td strong {
    font-weight: bolder;
}

/* Security Badge */
.security-badge-wrapper {
    gap: 5px;
}

.security-badge-wrapper h4 {
    color: #1b1b4d;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px;
    font-family: inherit;
}

.security-badge-wrapper p {
    color: #6c757d;
    font-size: 13px;
    margin: 0;
}

.lh-20 {
    line-height: 20px !important;
}

.lh-22 {
    line-height: 20px !important;
}

.video-icon-bg {
    width: 32px;
    height: 32px;
    background-image: url('../images/video_icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
    margin-top: 4px;
    display: inline-block;
}

.popular_plan_heading {
    position: relative;
}

.most-popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #505be0;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 20px;
    border: 2px solid #fff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    text-transform: uppercase;
}

.wave-separator {
    height: 10px;
    background: url('data:image/svg+xml;utf8,<svg width="20" height="10" xmlns="http://www.w3.org/2000/svg"><path d="M 0 5 Q 5 0 10 5 T 20 5" fill="none" stroke="%23d0d0d0" stroke-width="1.5"/></svg>') repeat-x center;
    border: none;
}