﻿*,
::after,
::before {
    box-sizing: border-box;
    /*color: #27313d;*/
    font-family: 'Poppins', sans-serif;
}

html {
    font-family: 'Poppins', sans-serif;
    line-height: 1.15;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #f5f6fa;
}
/*--------------Base Css----------------*/
a {
    color: #0661ea;
    text-decoration: none;
    background-color: transparent
}

ul, li, label {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

a:hover {
    color: #0661ea;
    text-decoration: none;
}

img {
    vertical-align: middle;
    border-style: none;
}

svg {
    overflow: hidden;
    vertical-align: middle
}

.clearfix::after {
    display: block;
    clear: both;
    content: ""
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 8px;
    font-weight: 500;
    line-height: 1.2
}

.h1,
h1 {
    font-size: 28px
}

.h2,
h2 {
    font-size: 32px
}

.h3,
h3 {
    font-size: 28px
}

.h4,
h4 {
    font-size: 18px
}

.h5,
h5 {
    font-size: 14px
}

.h6,
h6 {
    font-size: 16px
}

.d-none {
    display: none
}

.d-inline {
    display: inline
}

.d-inline-block {
    display: inline-block
}

.d-block {
    display: block !important;
}

.d-table {
    display: table
}

.d-table-row {
    display: table-row
}

.d-table-cell {
    display: table-cell
}

.d-flex {
    display: -ms-flexbox !important;
    display: -moz-box-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
}

.d-inline-flex {
    display: -ms-inline-flexbox;
    display: inline-flex
}

.flex-row {
    -webkit-flex-direction: column;
    -ms-flex-direction: row;
    flex-direction: row
}

.flex-column {
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column
}

.flex-row-reverse {
    -ms-flex-direction: row-reverse;
    -webkit-flex-direction: column;
    flex-direction: row-reverse
}

.flex-column-reverse {
    -ms-flex-direction: column-reverse;
    -webkit-flex-direction: column;
    flex-direction: column-reverse
}

.flex-wrap {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap
}

.flex-nowrap {
    -ms-flex-wrap: nowrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: nowrap
}

.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap-reverse
}

.flex-fill {
    -ms-flex: 1 1 auto;
    -webkit-flex-grow: 1;
    flex: 1 1 auto
}

.flex-grow-0 {
    -ms-flex-positive: 0;
    flex-grow: 0
}

.flex-grow-1 {
    -ms-flex-positive: 1;
    flex-grow: 1
}

.flex-shrink-0 {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.flex-shrink-1 {
    -ms-flex-negative: 1;
    flex-shrink: 1
}

.flex-column {
    -ms-flex-direction: column;
    flex-direction: column;
}

.justify-content-start {
    -ms-flex-pack: start !important;
    -webkit-flex-pack: start !important;
    justify-content: flex-start !important;
}

.justify-content-end {
    -ms-flex-pack: end;
    -webkit-flex-pack: end;
    justify-content: flex-end
}

.justify-content-center {
    -ms-flex-pack: center;
    -webkit-flex-pack: center;
    justify-content: center
}

.justify-content-between {
    -ms-flex-pack: justify;
    -webkit-flex-pack: justify;
    justify-content: space-between
}

.justify-content-around {
    -ms-flex-pack: distribute;
    -webkit-flex-pack: distribute;
    justify-content: space-around
}

.align-items-start {
    -webkit-flex-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.align-items-end {
    -webkit-flex-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

.align-items-center {
    -webkit-flex-align: center;
    -ms-flex-align: center;
    align-items: center
}

.align-items-baseline {
    -ms-flex-align: baseline;
    align-items: baseline
}

.align-items-stretch {
    -ms-flex-align: stretch;
    align-items: stretch
}

.align-content-start {
    -ms-flex-line-pack: start;
    align-content: flex-start
}

.align-content-end {
    -ms-flex-line-pack: end;
    align-content: flex-end
}

.align-content-center {
    -ms-flex-line-pack: center;
    align-content: center
}

.align-content-between {
    -ms-flex-line-pack: justify;
    align-content: space-between
}

.align-content-around {
    -ms-flex-line-pack: distribute;
    align-content: space-around
}

.align-content-stretch {
    -ms-flex-line-pack: stretch;
    align-content: stretch
}

.align-self-auto {
    -ms-flex-item-align: auto;
    align-self: auto
}

.align-self-start {
    -ms-flex-item-align: start;
    align-self: flex-start
}

.align-self-end {
    -ms-flex-item-align: end;
    align-self: flex-end
}

.align-self-center {
    -ms-flex-item-align: center;
    align-self: center
}

.align-self-baseline {
    -ms-flex-item-align: baseline;
    align-self: baseline
}

.align-self-stretch {
    -ms-flex-item-align: stretch;
    align-self: stretch
}

.text-justify {
    text-align: justify
}

.text-wrap {
    white-space: normal
}

.text-nowrap {
    white-space: nowrap
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.text-center {
    text-align: center
}

.float-left {
    float: left
}

.float-right {
    float: right
}

.float-none {
    float: none
}

.btn-shine {
    position: relative;
    overflow: hidden
}

    .btn-shine:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background-color: rgba(255,255,255,.4);
        transition: none
    }

    .btn-shine:hover:after {
        width: 120%;
        background-color: rgba(255,255,255,0);
        transition: all .4s ease-in-out
    }

.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 10px 12px;
    font-size: 14px;
    line-height: 1.6;
    border-radius: 4px;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    outline: none;
    font-weight: 700;
}

.btn-primary {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}

    .btn-primary:hover {
        color: #fff;
        background-color: #0d6efd;
        border-color: #0d6efd;
    }

.btn.btn-disabled, .btn[disabled] {
    opacity: 0.5;
    cursor: no-drop;
}


.container {
    max-width: 1140px;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: -ms-flexbox !important;
    display: -moz-box-flexbox !important;
    display: -webkit-flex !important;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.font-size-12 {
    font-size: 12px !important;
}

.w-25 {
    width: 25%;
}

.w-50 {
    width: 50%;
}

.w-48 {
    width: 48%;
}

.w-75 {
    width: 75%;
}

.w-100 {
    width: 100%;
}

.w-auto {
    width: auto;
}

.h-25 {
    height: 25%;
}

.h-50 {
    height: 50%;
}

.h-75 {
    height: 75%;
}

.h-100 {
    height: 100%;
}

.h-auto {
    height: auto;
}

.mw-100 {
    max-width: 100%;
}

.mh-100 {
    max-height: 100%;
}

.m-0 {
    margin: 0;
}

.mt-0, .my-0 {
    margin-top: 0;
}

.mr-0, .mx-0 {
    margin-right: 0 !important;
}

.mb-0, .my-0 {
    margin-bottom: 0 !important;
}

.ml-0, .mx-0 {
    margin-left: 0 !important;
}



.m-15 {
    margin: 15px;
}

.ml-5 {
    margin-left: 5px;
}

.mr-5 {
    margin-right: 5px;
}

.mt-5 {
    margin-top: 5px;
}

.mb-5 {
    margin-bottom: 5px;
}

.m-1 {
    margin: 10px;
}

.mt-1, .my-1 {
    margin-top: 10px;
}

.mr-1, .mx-1 {
    margin-right: 10px;
}

.mb-1, .my-1 {
    margin-bottom: 10px !important;
}

.ml-1, .mx-1 {
    margin-left: 10px;
}

.m-15 {
    margin: 15px;
}

.ml-15 {
    margin-left: 15px;
}

.mr-15 {
    margin-right: 15px;
}

.mt-15 {
    margin-top: 15px;
}

.mb-15 {
    margin-bottom: 15px;
}

.p-15 {
    padding: 15px;
}

.pl-15 {
    padding-left: 15px;
}

.pr-15 {
    padding-right: 15px;
}

.pt-15 {
    padding-top: 15px;
}

.pb-15 {
    padding-bottom: 15px;
}

.m-2 {
    margin: 20px;
}

.mt-2, .my-2 {
    margin-top: 20px;
}

.mr-2, .mx-2 {
    margin-right: 20px;
}

.mb-2, .my-2 {
    margin-bottom: 20px !important;
}

.ml-2, .mx-2 {
    margin-left: 20px;
}

.m-3 {
    margin: 30px;
}

.mt-3, .my-3 {
    margin-top: 30px;
}

.mr-3, .mx-3 {
    margin-right: 30px;
}

.mb-3, .my-3 {
    margin-bottom: 30px !important;
}

.ml-3, .mx-3 {
    margin-left: 30px;
}

.m-4 {
    margin: 40px;
}

.mt-4, .my-4 {
    margin-top: 40px;
}

.mr-4, .mx-4 {
    margin-right: 40px;
}

.mb-4, .my-4 {
    margin-bottom: 40px;
}

.ml-4, .mx-4 {
    margin-left: 40px;
}

.m-5 {
    margin: 40px;
}

.mt-50, .my-50 {
    margin-top: 50px;
}

.mr-50, .mx-50 {
    margin-right: 50px;
}

.mb-50, .my-50 {
    margin-bottom: 50px;
}

.ml-50, .mx-50 {
    margin-left: 50px;
}

.p-0 {
    padding: 0;
}

.pt-0, .py-0 {
    padding-top: 0;
}

.pr-0, .px-0 {
    padding-right: 0 !important;
}

.pb-0, .py-0 {
    padding-bottom: 0;
}

.pl-0, .px-0 {
    padding-left: 0;
}

.p-1 {
    padding: 10px;
}

.pt-1, .py-1 {
    padding-top: 10px;
}

.pr-1, .px-1 {
    padding-right: 10px;
}

.pb-1, .py-1 {
    padding-bottom: 10px;
}

.pl-1, .px-1 {
    padding-left: 10px;
}

.p-5 {
    padding: 5px;
}

.pl-5 {
    padding-left: 5px;
}

.pr-5 {
    padding-right: 5px;
}

.pt-5 {
    padding-top: 5px;
}

.pb-5 {
    padding-bottom: 5px;
}

.p-2 {
    padding: 20px;
}

.pt-2, .py-2 {
    padding-top: 20px;
}

.pr-2, .px-2 {
    padding-right: 20px;
}

.pb-2, .py-2 {
    padding-bottom: 20px;
}

.pl-2, .px-2 {
    padding-left: 20px;
}

.p-3 {
    padding: 30px;
}

.pt-3, .py-3 {
    padding-top: 30px;
}

.pr-3, .px-3 {
    padding-right: 30px;
}

.pb-3, .py-3 {
    padding-bottom: 30px;
}

.pl-3, .px-3 {
    padding-left: 30px;
}

.p-4 {
    padding: 40px;
}

.pt-4, .py-4 {
    padding-top: 40px;
}

.pr-4, .px-4 {
    padding-right: 40px;
}

.pb-4, .py-4 {
    padding-bottom: 40px;
}

.pl-4, .px-4 {
    padding-left: 40px;
}

.p-50 {
    padding: 50px;
}

.pt-50, .py-50 {
    padding-top: 50px;
}

.pr-50, .px-50 {
    padding-right: 50px;
}

.pb-50, .py-50 {
    padding-bottom: 50px;
}

.pl-50, .px-50 {
    padding-left: 50px;
}

.m-n1 {
    margin: -10px;
}

.mt-n1, .my-n1 {
    margin-top: -10px;
}

.mr-n1, .mx-n1 {
    margin-right: -10px;
}

.mb-n1, .my-n1 {
    margin-bottom: -10px;
}

.ml-n1, .mx-n1 {
    margin-left: -10px;
}

.m-n2 {
    margin: -20px;
}

.mt-n2, .my-n2 {
    margin-top: -20px;
}

.mr-n2, .mx-n2 {
    margin-right: -20px;
}

.mb-n2, .my-n2 {
    margin-bottom: -20px;
}

.ml-n2, .mx-n2 {
    margin-left: -20px;
}

.m-n3 {
    margin: -20px;
}

.mt-n3, .my-n3 {
    margin-top: -20px;
}

.mr-n3, .mx-n3 {
    margin-right: -30px;
}

.mb-n3, .my-n3 {
    margin-bottom: -30px;
}

.ml-n3, .mx-n3 {
    margin-left: -30px;
}

.m-n4 {
    margin: -40px;
}

.mt-n4, .my-n4 {
    margin-top: -40px;
}

.mr-n4, .mx-n4 {
    margin-right: -40px;
}

.mb-n4, .my-n4 {
    margin-bottom: -40px;
}

.ml-n4, .mx-n4 {
    margin-left: -40px;
}

.m-n5 {
    margin: -40px;
}

.mt-n5, .my-n5 {
    margin-top: -40px;
}

.mr-n5, .mx-n5 {
    margin-right: -40px;
}

.mb-n5, .my-n5 {
    margin-bottom: -40px;
}

.ml-n5, .mx-n5 {
    margin-left: -40px;
}

.m-auto {
    margin: auto;
}

.mt-auto, .my-auto {
    margin-top: auto;
}

.mr-auto, .mx-auto {
    margin-right: auto;
}

.mb-auto, .my-auto {
    margin-bottom: auto;
}

.ml-auto, .mx-auto {
    margin-left: auto;
}

.text-lowercase {
    text-transform: lowercase;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-capitalize {
    text-transform: capitalize;
}

.border-0 {
    border: 0;
}

.border-top-0 {
    border-top: 0;
}

.border-right-0 {
    border-right: 0;
}

.border-bottom-0 {
    border-bottom: 0 !important;
}

.border-left-0 {
    border-left: 0;
}

.border-top-primary {
    border-top: 1px solid #e3e3e3;
}

.border-bottom-primary {
    border-bottom: 1px solid #d0d5dd;
}

.font-weight-400 {
    font-weight: 400 !important;
}

.font-weight-500 {
    font-weight: 500 !important;
}

.font-weight-600 {
    font-weight: 600 !important;
}

.font-weight-700 {
    font-weight: 700 !important;
}

.rounded {
    border-radius: 8px;
}

.rounded-top {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.rounded-right {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.rounded-bottom {
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
}

.rounded-left {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.rounded-lg {
    border-radius: .48px;
}

.rounded-circle {
    border-radius: 50%;
}

.rounded-pill {
    border-radius: 800px;
}

.rounded-0 {
    border-radius: 0;
}

.bgWhite {
    background-color: #fff;
}

.bgNone {
    background: none;
}

.position-static {
    position: static;
}

.positionRelative {
    position: relative;
}

.position-relative {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.position-absolute {
    position: absolute;
}

.position-fixed {
    position: fixed;
}

.position-sticky {
    position: -webkit-sticky;
    position: sticky;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
}

.box-shadow-top {
    box-shadow: 0 -8px 10px 0 #eaeaea;
}

.prefixInputIcon {
    position: absolute;
    top: 8px;
}

    .prefixInputIcon ~ .floating-input {
        padding: 7px 50px 7px 15px;
    }

.countryCode {
    font-size: 16px;
    font-weight: 500;
    color: #27313d;
    top: 8px;
}

    .countryCode ~ .floating-input {
        text-indent: 0;
        padding-left: 36px;
    }

.postFixInputIcon {
    position: absolute;
    right: 10px;
    top: 8px;
    cursor: pointer;
}

.postFixInputIconOnFocus {
    display: none;
}

.floating-input:focus + .postFixInputIconOnFocus {
    display: block;
}

.saveBtn {
    font-size: 10px;
    font-weight: 500;
    line-height: 1.8;
    text-align: left;
    color: #0661ea;
    border-radius: 4px;
    background-color: #eff3ff;
    padding: 2px 4px;
    position: absolute;
    right: 0px;
    top: 8px;
    cursor: pointer;
}

.postFixInputIcon ~ .floating-input {
    padding-right: 36px;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

input,
textarea,
button,
select, label,
a, span, div {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

.floating-input::-webkit-input-placeholder {
    opacity: 0;
    transition: inherit;
}

::-moz-focus-inner, input:focus::-webkit-input-placeholder {
    opacity: 0;
    transition: inherit;
}

input:focus::-webkit-input-placeholder {
    opacity: 1;
}

input:focus::-moz-focus-inner {
    opacity: 1;
}

::-webkit-input-placeholder {
    color: #c7c7c7;
    font-weight: 300;
    font-size: 12px;
}

:-moz-placeholder {
    color: #c7c7c7;
    opacity: 0;
    font-weight: 300;
    font-size: 12px;
}

::-moz-placeholder {
    color: #c7c7c7;
    opacity: 0;
    font-weight: 300;
    font-size: 12px;
}

input:focus::-moz-placeholder {
    opacity: 1;
}

:-ms-input-placeholder {
    color: #c7c7c7;
    font-weight: 300;
    font-size: 12px;
}

:-ms-input-placeholder {
    color: #c7c7c7 !important;
    font-weight: 300 !important;
    font-size: 12px;
}
/* IE1011 */
::-ms-input-placeholder {
    color: #c7c7c7;
    font-weight: 300;
    font-size: 12px;
}
/* Edge */
::placeholder {
    color: #c7c7c7;
    font-weight: 300;
    font-size: 12px;
}
/* CSS Working Draft */

/*----------City Css Start---------------*/
.ui-autocomplete {
    position: absolute !important;
    background: #fff;
    border: solid 1px #f5f5f5;
    overflow-y: scroll;
    max-height: 200px;
    display: block;
    width: 91%;
    top: 266px;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

    .ui-autocomplete li.ui-menu-item a {
        color: #959595;
        text-decoration: none;
        padding: 10px 10px;
        display: block;
        font-size: 14px;
        font-weight: 500;
        text-align: left;
        color: #27313d;
    }

    .ui-autocomplete li {
        border-bottom: 1px solid #d0d5dd;
    }

        .ui-autocomplete li.ui-menu-item a:hover {
            background: #f9f9f9;
            display: block;
        }
/*----------City Css End---------------*/
.bottomSpace {
    margin-bottom: 160px !important
}

.inputSearchIcon {
    background: #fff url(../../images/mobile/searchIcon.svg) right 9px no-repeat;
    background-size: 17px;
}

.colorFeatureWrap {
    overflow: auto;
    padding: 20px 10px 0 10px;
}

.colorFeatureFlex {
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 0;
    min-height: 66px;
    margin-left: 4px;
    min-width: 150px;
}

    .colorFeatureFlex:first-child {
        margin-left: 0;
    }

.featureHealthCover {
    background: #E5F6ED;
}

.featureLifeCover {
    background: #EFF2FB;
}

.featureTaxSavings {
    background: #FEF9E8;
}

.colorFeatureText h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

    .colorFeatureText h3 sup, .kypBoxTitle sup {
        font-size: 9px;
    }

.featureHealthCover .colorFeatureText h3 {
    color: #2d7b64;
}

.featureLifeCover .colorFeatureText h3 {
    color: #2d3cd9;
}

.featureTaxSavings .colorFeatureText h3 {
    color: #8b6e0e;
}

.colorFeatureText p {
    margin: 0;
    color: #253858;
    font-size: 12px;
}


.viewFullFeaturesList ul li sup {
    font-size: 9px;
}

.colorFeatureSmall {
    font-size: 12px;
}

    .colorFeatureSmall sup {
        font-size: 8px;
    }

.colorFeatureText .colorFeatureSmall {
    font-size: 10px;
}

    .colorFeatureText .colorFeatureSmall sup {
        font-size: 6px;
    }


.colorFeatureIcon {
    margin-bottom: 5px;
}

    .colorFeatureIcon img {
        width: 22px;
    }

/*-------------Developer StyleSheet Start-----------*/
input.input-validation-error,
textarea.input-validation-error,
select.input-validation-error {
    border-bottom: 1px solid #e74c3c;
}

.field-validation-valid {
    display: none;
}

.field-validation-error {
    display: block;
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    line-height: 14px;
}

    .field-validation-error > span {
        color: #e74c3c;
    }

.errorMsg {
    display: block !important;
    color: #e74c3c !important;
    font-size: 12px;
    margin-top: 5px;
    line-height: 14px;
    font-weight: 400;
}

    .errorMsg:empty {
        display: none !important;
    }

span[id*="LimitedPay"], span[id*="productPagelimitedPremium"] {
    color: #27313d;
}
/*-------------Developer StyleSheet End-----------*/
/*------------Base css end---------------*/
/*--------------Loader css start---------*/
/*product page laoder css*/
.loader {
    position: fixed;
    height: 100%;
    width: 100%;
    background: rgba(245,247,248,0.9);
    z-index: 1031;
    left: 0;
    top: 0;
    bottom: 0;
}

.inputLoader {
    height: 50%;
    width: 88%;
    background: rgba(245, 247, 248, 0.31);
    z-index: 3;
    right: 21px;
    top: 24px;
    left: initial;
}

.lds-css {
    position: absolute;
    top: 50%;
    left: 50%;
}

.inputLoader .lds-css {
    position: absolute;
    top: 50%;
    right: -11px;
    left: initial;
}

.lds-css + span {
    position: absolute;
    top: 53%;
    left: 50%;
    color: #2f3542;
    font-size: 12px;
    transform: translateX(-50%);
}

.lds-rolling div, .lds-rolling div:after {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 10px solid #2f3542;
    border-top-color: transparent;
    border-radius: 50%;
}

.lds-rolling div {
    -webkit-animation: lds-rolling 1s linear infinite;
    animation: lds-rolling 1s linear infinite;
}

    .lds-rolling div:after {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

.lds-rolling {
    width: 35px !important;
    height: 35px !important;
    -webkit-transform: translate(-17.5px, -17.5px) scale(0.175) translate(17.5px, 17.5px);
    transform: translate(-17.5px, -17.5px) scale(0.175) translate(17.5px, 17.5px);
}

@keyframes lds-rolling {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@-webkit-keyframes lds-rolling {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.pFixed {
    position: fixed;
    background: rgba(245, 247, 248, 0.59);
    z-index: 9999;
}

    .pFixed .lds-css + span {
        top: 58%;
        left: 47.5%;
    }

    .pFixed .lds-rolling div, .pFixed .lds-rolling div:after {
        width: 300px;
        height: 300px;
    }
/*--------------Loader css end------------*/

/*--------------Animate Loader css start------------------*/
.animateTextBox {
    background: transparent;
    position: fixed;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.loaderBox {
    width: 100%;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.clpImg {
    margin: auto;
    text-align: center;
}

.spinnerDots {
    width: 70px;
    text-align: center;
    margin: 35px auto 0px auto;
}

    .spinnerDots > div {
        background-color: #0661ea;
        border-radius: 100%;
        display: inline-block;
        width: 14px;
        height: 14px;
        -webkit-animation: rk-bouncedelay 1.4s infinite ease-in-out both;
        animation: rk-bouncedelay 1.4s infinite ease-in-out both;
    }

    .spinnerDots .dots1 {
        -webkit-animation-delay: -0.32s;
        animation-delay: -0.32s;
    }

    .spinnerDots .dots2 {
        -webkit-animation-delay: -0.16s;
        animation-delay: -0.16s;
    }

@-webkit-keyframes rk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes rk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

.animateText div {
    opacity: 0;
    width: 100%;
    position: absolute;
    font-weight: 600;
    font-size: 15px;
    overflow: hidden;
    color: #333333;
    text-align: center;
    -webkit-animation: animateLines 10s linear infinite 0s;
    -ms-animation: animateLines 10s linear infinite 0s;
    animation: animateLines 10s linear infinite 0s;
}

    .animateText div:nth-child(2) {
        -webkit-animation-delay: 2s;
        -ms-animation-delay: 2s;
        animation-delay: 2s;
        color: #333333;
    }

    .animateText div:nth-child(3) {
        -webkit-animation-delay: 4s;
        -ms-animation-delay: 4s;
        animation-delay: 4s;
        color: #333333;
    }

    .animateText div:nth-child(4) {
        -webkit-animation-delay: 6s;
        -ms-animation-delay: 6s;
        animation-delay: 6s;
        color: #333333;
    }

    .animateText div:nth-child(5) {
        -webkit-animation-delay: 8s;
        -ms-animation-delay: 8s;
        animation-delay: 8s;
        color: #333333;
    }

    .animateText div:nth-child(6) {
        -webkit-animation-delay: 10s;
        -ms-animation-delay: 10s;
        animation-delay: 10s;
        color: #333333;
    }

@-webkit-keyframes animateLines {
    0% {
        opacity: 0;
    }

    2% {
        opacity: 0;
        -webkit-transform: translateY(-30px);
    }

    5% {
        opacity: 1;
        -webkit-transform: translateY(0px);
    }

    17% {
        opacity: 1;
        -webkit-transform: translateY(0px);
    }

    20% {
        opacity: 0;
        -webkit-transform: translateY(30px);
    }

    80% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}
/*--------------Animate Loader css end--------------------*/
/*--------------Skeleton Loader Start------------*/
.skeletonLoader {
    overflow: hidden;
    background: white;
    border-radius: .25rem;
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05), 0 5px 15px 0 rgba(0, 0, 0, 0.05);
    -webkit-transition: ease box-shadow 0.3s;
    transition: ease box-shadow 0.3s;
}

.logoLoader {
    width: 300px;
    height: 50px;
}

.priceAmtLoader {
    width: 300px;
    height: 50px;
    float: right;
}

.skeletonLoader-detail {
    padding: .5rem 1rem;
}

    .skeletonLoader-detail h3 {
        font-size: 1.5rem;
        margin-bottom: none;
        line-height: .09;
    }

    .skeletonLoader-detail p {
        line-height: 1.3rem;
    }

.skeletonLoader-image {
    margin: 0;
    padding: 0;
    height: 200px;
    overflow: hidden;
}

    .skeletonLoader-image img {
        max-width: 100%;
        height: auto;
    }

.loading {
    position: relative;
    background-color: #e5e5e5;
}

    .loading.skeletonLoader-image {
        border-radius: 0;
    }

    .loading::after {
        display: block;
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        -webkit-animation: loading 1.5s infinite;
        animation: loading 1.5s infinite;
    }

@-webkit-keyframes loading {
    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@keyframes loading {
    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

.skeletonLoader-title.loading {
    height: 1.8rem;
}

.skeletonLoader-image.image {
    max-width: 100%;
    height: auto;
}

.skeletonLoader-description.loading {
    height: 80px;
}
/*--------------Skeleton Loader End------------*/
/*-------------------FloationgLabels Css Start-------------*/
.floating-label {
    position: relative;
}

.floating-input {
    font-size: 16px;
    padding: 0;
    display: block;
    width: 100%;
    height: 40px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #d0d5dd;
    font-weight: 600;
    color: #27313d;
    border-radius: 0;
}

.productDetails .floating-select {
    font-size: 12px;
}

.productDetails .selectLabel {
    font-size: 12px;
}

.floating-select {
    font-size: 16px;
    padding: 0;
    display: block;
    width: 100%;
    height: 40px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #d0d5dd;
    font-weight: 600;
    color: #27313d;
    padding-right: 20px;
}


    .floating-input:focus, .floating-select:focus {
        outline: none;
    }

.floatingLabelText {
    color: #4c5a6f;
    font-size: 16px;
    font-weight: 500;
    position: absolute;
    pointer-events: none;
    left: 0px;
    top: 10px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.verification-code-box .floatingLabelText, .floating-input.has-value ~ .floatingLabelText, .floating-input.valid ~ .floatingLabelText, .floating-input:focus ~ .floatingLabelText {
    top: -15px;
    font-size: 11px;
}

.floating-input.valid ~ .floatingLabelText {
    top: -15px;
    font-size: 11px;
}



.verification-code-box {
    display: flex;
    width: 177px;
    align-items: center;
    position: absolute;
    padding-top: 2px;
    left: 140px;
    top: 0;
}

    .verification-code-box:before {
        content: '';
        position: absolute;
        width: 1px;
        background: #e5e8eb;
        top: 0;
        bottom: 0;
        left: -5px;
    }

.resendOtpBtn {
    display: inline-block;
    font-size: 12px;
    padding-left: 10px;
}

    .resendOtpBtn:hover {
        text-decoration: underline;
    }

.otptimer {
    display: inline-flex;
    margin-left: 10px;
    font-size: 11px;
    color: #757575;
}

.verification-code-box input {
    border: 1px solid #AFAFAF;
    border-radius: 4px;
    height: 32px;
    letter-spacing: 5px;
    font-size: 14px;
    padding: 0 5px;
    width: 65px;
    text-align: center;
    outline: none;
}

.verificationBtn {
    margin-left: 10px;
    display: block;
    min-width: 20px;
    height: 20px;
    background: url(../../images/web/eye.svg) no-repeat center / 16px auto;
    position: relative;
}

    .verificationBtn:after {
        top: -2px;
        left: 50%;
        margin-left: -1px;
        width: 2px;
        background: #2351D5;
        bottom: -2px;
        content: '';
        display: block;
        position: absolute;
        transform: rotate(45deg);
    }

.otp-verified {
    color: #44aa68;
    font-size: 12px;
    position: absolute;
    right: 0;
    top: 8px;
    font-weight: 500;
    background: rgba(105,190,134,.1294117647);
    border-radius: 4px;
    padding: 0 4px;
    display: flex;
    align-items: center;
}

    .otp-verified img {
        width: 16px;
        margin-right: 6px;
    }

.verificationBtnActive:after {
    display: none;
}

.onFocusSymbolPrefix ~ .prefixInputIcon, .onFocusSymbolPrefix ~ .postFixInputLabel {
    display: none;
}

.onFocusSymbolPrefix.floating-input.has-value ~ .prefixInputIcon, .onFocusSymbolPrefix.floating-input.valid ~ .prefixInputIcon, .onFocusSymbolPrefix.floating-input:focus ~ .prefixInputIcon {
    display: block;
    top: 9px;
}

.onFocusSymbolPrefix.floating-input.has-value.onFocusSymbolPrefix ~ .postFixInputLabel {
    display: block;
}

.onFocusSymbolPrefix.floating-input {
    padding-left: 15px;
}

.onFocusSymbolPrefixCountryCode ~ .countryCode {
    display: none;
}

.onFocusSymbolPrefixCountryCode.countryCodeValue ~ .countryCode {
    display: block;
}

.onFocusSymbolPrefixCountryCode:focus ~ .countryCode {
    display: block;
}

.onFocusSymbolPrefixCountryCode.countryCodeValue, .onFocusSymbolPrefixCountryCode:focus {
    padding-left: 30px;
}

.nriCountryCode.countryCodeValue, .nriCountryCode:focus {
    padding-left: 58px;
}

.customValue .onFocusSymbolPrefix ~ .prefixInputIcon, .cityInput .onFocusSymbolPrefix ~ .prefixInputIcon {
    display: none;
}

.annualIncomePostFixLabel {
    display: none;
}

.customValue .onFocusSymbolPrefix:focus ~ .prefixInputIcon, .cityInput .onFocusSymbolPrefix:focus ~ .prefixInputIcon {
    display: block;
    top: 15px;
    left: 20px;
}

.customValue .onFocusSymbolPrefix ~ .prefixInputIcon, .customValue .onFocusSymbolPrefix.floating-input:not(:placeholder-shown) ~ .prefixInputIcon, .cityInput .onFocusSymbolPrefix ~ .prefixInputIcon, .cityInput .onFocusSymbolPrefix.floating-input:not(:placeholder-shown) ~ .prefixInputIcon {
    top: 20px;
    left: 20px;
}

.customValue .onFocusSymbolPrefix:focus, .customValue .onFocusSymbolPrefix, .cityInput .onFocusSymbolPrefix:focus, .cityInput .onFocusSymbolPrefix {
    padding-left: 33px;
}

.customValue-header {
    margin: 0 0 32px 0;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

.floating-select:focus ~ label, .floating-select.valid ~ label, .floating-select.has-value ~ label {
    top: -16px;
    font-size: 10px;
}

.header-details .floating-select:focus ~ label, .floating-select.valid ~ label, .header-details .floating-select.has-value ~ label {
    top: -10px;
}

.floating-select:disabled, .floating-input:disabled {
    opacity: 0.45;
    cursor: no-drop;
}

    .floating-select:disabled ~ .prefixInputIcon, .floating-input:disabled ~ .prefixInputIcon {
        opacity: 0.45;
        cursor: no-drop;
    }

    .floating-select:disabled ~ .floatingLabelText, .floating-input:disabled ~ .floatingLabelText {
        opacity: 0.45;
        cursor: no-drop;
    }



.floating-input.has-value:disabled ~ .floatingLabelText {
    top: -15px;
    font-size: 11px;
    cursor: no-drop;
}

.floating-textarea {
    min-height: 30px;
    max-height: 260px;
    overflow: hidden;
    overflow-x: hidden;
}

.customValue .floating-input.has-value ~ .floatingLabelText, .customValue .floating-input:focus ~ .floatingLabelText, .cityInput .floating-input.has-value ~ .floatingLabelText, .cityInput .floating-input:focus ~ .floatingLabelText {
    top: 9px;
    font-size: 9px;
}

.customValue .floating-input.has-value ~ .floatingLabelText, .customValue .floating-input:focus ~ .floatingLabelText {
    top: 6px;
}

.customValue .floatingLabelText, .cityInput .floatingLabelText {
    top: 18px;
}

.floating-input {
    border: 0;
    padding: 8px 0;
    border-bottom: 1px solid #d0d5dd;
    padding-right: 40px;
}

    .floating-input ~ .border-bottom-animation, .floating-select ~ .border-bottom-animation, .floating-radioBtn ~ .border-bottom-animation.left {
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background-color: #0661ea;
        transition: 0.4s;
    }

.border-bottom-animation {
    display: none !important;
}

.floating-input:focus ~ .border-bottom-animation, .floating-select:focus ~ .border-bottom-animation, .floating-radioBtn input[type="radio"]:checked .border-bottom-animation.left {
    width: 100%;
    transition: 0.4s;
    left: 0;
}

.error .floating-input, .error .floating-select {
    border-bottom: 1px solid #e74c3c !important;
}

.errorText {
    display: none;
}

.error ~ .errorText {
    display: block;
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    line-height: 14px;
}

.error .radio .label {
    border-color: #e74c3c;
}

.custom-select.error .selectLabel {
    border-bottom: 1px solid #e74c3c;
}
/*-------------------FloationgLabels Css End-------------*/
/*-------------------FormElements Css Start-------------*/
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-overflow: '';
    background: transparent url(https://static.pbcdn.in/e2e-cdn/assets/icons/icon-arrow-down-grey.svg) 98% 50% no-repeat;
    outline: 0;
    border-radius: 0;
}

.radio {
    position: relative;
    cursor: pointer;
    display: inline-block;
    margin-right: 30px;
    background: transparent;
    outline: none;
    font-size: 14px;
    font-weight: 400;
}

    .radio .label {
        position: relative;
        display: block;
        float: left;
        margin-right: 8px;
        width: 20px;
        height: 20px;
        margin-top: 0px;
        border: 2px solid #27313d;
        border-radius: 100%;
        -webkit-tap-highlight-color: transparent;
    }

        .radio .label:after {
            content: '';
            position: absolute;
            top: 3px;
            left: 3px;
            width: 10px;
            height: 10px;
            border-radius: 100%;
            background: #225cff;
            transform: scale(0);
            -o-transform: scale(0);
            -webkit-transform: scale(0);
            -moz-transform: scale(0);
            -webkit-transition: all 0.2s ease;
            -o-transition: all 0.2s ease;
            -moz-transition: all 0.2s ease;
            transition: all 0.2s ease;
            opacity: 0.08;
            pointer-events: none;
        }

    .radio input[type="radio"]:checked .label:after {
        transform: scale(3.6);
    }

    .radio input[type="radio"]:checked + .label {
        border-color: #225cff;
    }

        .radio input[type="radio"]:checked + .label:after {
            -o-transform: scale(1);
            -webkit-transform: scale(1);
            -moz-transform: scale(1);
            transform: scale(1);
            transition: all 0.2s cubic-bezier(0.35, 0.9, 0.4, 0.9);
            -o-transition: all 0.2s cubic-bezier(0.35, 0.9, 0.4, 0.9);
            -webkit-transition: all 0.2s cubic-bezier(0.35, 0.9, 0.4, 0.9);
            -moz-transition: all 0.2s cubic-bezier(0.35, 0.9, 0.4, 0.9);
            opacity: 1;
        }

    .radio input[type="radio"]:checked ~ .radioBtnAnswerTxt {
        color: #225cff;
        font-weight: 500;
    }

.hidden {
    display: none;
}

.radioBtn ~ .floatingLabelText {
    top: -8px;
    font-size: 11px;
}

.radio input[type="radio"]:checked ~ .active {
    border: 1px solid #e74c3c;
}

.questionLabel {
    font-size: 12px;
    line-height: 1.7;
    font-weight: 500;
    color: #27313d;
}

.radio.radioBtnAbsolute {
    position: absolute;
    right: 10px;
    top: 10px;
}

.checkBox {
}

.checkboxLabel {
    position: relative;
    cursor: pointer;
    display: inline-block;
    margin-right: 10px;
}

.checkBox .CheckBoxTick {
    position: relative;
    display: block;
    float: left;
    margin-right: 10px;
    width: 20px;
    margin-bottom: 2px;
    height: 20px;
    border: 2px solid #27313d;
    border-radius: 4px;
    -webkit-tap-highlight-color: transparent;
}


.checkboxLabel .CheckBoxTick:after {
    content: '';
    position: absolute;
    transform: scale(0);
    transition: all 0.2s ease;
    opacity: 0;
    pointer-events: none;
    right: 5px;
    top: 1px;
    width: 6px;
    height: 11px;
    border-right: 2px solid #225cff;
    border-bottom: 2px solid #225cff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.checkboxLabel .CheckBoxTick ~ .radioBtnAnswerTxt {
    font-size: 12px;
    font-weight: 500;
}

.checkBox input[type="checkbox"]:checked + .CheckBoxTick:after {
    transition: all 0.2s cubic-bezier(0.35, 0.9, 0.4, 0.9);
    opacity: 1;
}

.checkBox input[type="checkbox"]:checked ~ .radioBtnAnswerTxt {
    color: #27313d;
    font-weight: bold;
}

.checkboxLabel:hover .CheckBoxTick:after {
    transform: scale(1.1) rotate(45deg);
}

input[type="checkbox"]:checked + .CheckBoxTick {
    border-color: #225cff;
}

.addRemoveCheckbox input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    width: 100%;
    text-align: center;
    float: left;
    border: none;
    background: transparent;
    position: relative;
    overflow: visible;
}

.addRemoveCheckbox .addRemoveBtn:before {
    content: "Add";
    display: block;
    width: auto;
    font-size: 0.75rem;
    color: #0661ea;
    text-align: center;
    padding: 3px 10px 5px 25px;
    border: 1px solid #0661ea;
    cursor: pointer;
    height: 26px;
    border-radius: 4px;
    font-weight: 600;
    background: transparent url(../../images/mobile/addWhite.svg) no-repeat 9px center;
    background-size: 9px;
    font-size: 12px;
}

.addRemoveCheckbox input[type="checkbox"]:checked + .addRemoveBtn:before {
    content: "Remove";
    background: transparent url(../../images/mobile/closeWhite.svg) no-repeat 10px center;
    padding: 3px 10px 5px 25px;
    color: #e74c3c;
    border-color: #e74c3c;
    background-size: 9px;
}

.pageNumber4 .addRemoveCheckbox .addRemoveBtn:before {
    content: "Switch to";
    background: transparent url(../../images/web/switchTo.svg) no-repeat 11px center;
    background-size: 11px;
}

.addRemoveCheckbox input[type="radio"]:checked + .addRemoveBtn:before {
    content: "Remove";
    background: transparent url(../../images/mobile/closeWhite.svg) no-repeat 10px center;
    padding: 3px 10px 5px 25px;
    color: #e74c3c;
    border-color: #e74c3c;
    background-size: 9px;
}
/*-------------------FormElements Css End-------------*/
/*--------------------Animated Css Start---------------*/
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(50%, 0, 0);
        transform: translate3d(50%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    from {
        -webkit-transform: translate3d(50%, 0, 0);
        transform: translate3d(50%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}
/*---------------------Animated Css End---------------*/
/*---------------------Box Animation with BorderAll Css Start-------------*/
.boxAnimated {
    outline: none;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

    .boxAnimated.border-animation .border-line-animation.top-bottom:before,
    .boxAnimated.border-animation .border-line-animation.top-bottom:after,
    .boxAnimated.border-animation .border-line-animation.left-right:before,
    .boxAnimated.border-animation .border-line-animation.left-right:after,
    .boxAnimated.border-animation .border-line-animation.top:before,
    .boxAnimated.border-animation .border-line-animation.top:after,
    .boxAnimated.border-animation .border-line-animation.bottom:before,
    .boxAnimated.border-animation .border-line-animation.bottom:after,
    .boxAnimated.border-animation .border-line-animation.left:before,
    .boxAnimated.border-animation .border-line-animation.left:after,
    .boxAnimated.border-animation .border-line-animation.right:before,
    .boxAnimated.border-animation .border-line-animation.right:after {
        position: absolute;
        content: " ";
        right: 0;
        background: #4285F4;
        -webkit-transition: all .2s linear;
        -moz-transition: all .2s linear;
        -ms-transition: all .2s linear;
        -o-transition: all .2s linear;
        transition: all .2s linear;
    }

    .boxAnimated.border-animation .border-line-animation.top-bottom:before,
    .boxAnimated.border-animation .border-line-animation.top-bottom:after,
    .boxAnimated.border-animation .border-line-animation.top:before,
    .boxAnimated.border-animation .border-line-animation.top:after,
    .boxAnimated.border-animation .border-line-animation.bottom:before,
    .boxAnimated.border-animation .border-line-animation.bottom:after {
        width: 0;
        height: 2px;
    }

    .boxAnimated.border-animation .border-line-animation.left-right:before,
    .boxAnimated.border-animation .border-line-animation.left-right:after,
    .boxAnimated.border-animation .border-line-animation.left:before,
    .boxAnimated.border-animation .border-line-animation.left:after,
    .boxAnimated.border-animation .border-line-animation.right:before,
    .boxAnimated.border-animation .border-line-animation.right:after {
        width: 2px;
        height: 0;
    }

    .boxAnimated.border-animation .border-line-animation.top-bottom:before {
        left: 0;
        bottom: 0;
        transition-delay: .5s;
    }

    .boxAnimated.border-animation:hover .border-line-animation.top-bottom:before {
        transition-delay: .2s;
    }

    .boxAnimated.border-animation .border-line-animation.left-right:after {
        right: 0;
        bottom: 0;
        transition-delay: .5s;
    }

    .boxAnimated.border-animation:hover .border-line-animation.left-right:after {
        transition-delay: .2s;
    }

    .boxAnimated.border-animation .border-line-animation.top-bottom:after {
        right: 0;
        top: 0;
        transition-delay: .2s;
    }

    .boxAnimated.border-animation:hover .border-line-animation.top-bottom:after {
        transition-delay: .5s;
    }

    .boxAnimated.border-animation .border-line-animation.left-right:before {
        left: 0;
        top: 0;
        transition-delay: 0;
    }

    .boxAnimated.border-animation:hover .border-line-animation.left-right:before {
        transition-delay: .5s;
    }

    .boxAnimated.border-animation:hover .border-line-animation.top-bottom:before,
    .boxAnimated.border-animation:hover .border-line-animation.top-bottom:after {
        width: 100%;
    }

    .boxAnimated.border-animation:hover .border-line-animation.left-right:before,
    .boxAnimated.border-animation:hover .border-line-animation.left-right:after {
        height: 100%;
    }
/*---------------------Box Animation With BorderAll Css End---------------*/
/*-------------------Header Css Start-------------*/
header {
    background-color: #fff;
    -webkit-transition: all 0.5s ease;
    -moz-transition: position 10s;
    -ms-transition: position 10s;
    -o-transition: position 10s;
    transition: all 0.5s ease;
}

.header-details {
    box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.08), 0px 4px 8px -2px rgba(0, 0, 0, 0.04);
    border-radius: 0 0 16px 16px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 99;
}

    .header-details.details-open {
        z-index: 9999;
    }

.pdfLinkWithLogo span {
    background: #FAFAFA;
    text-align: center;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*tooltip for sapling Bottom css start */
.pmcmInfo span {
    font-size: 9px;
    font-weight: 600;
    color: #bb023b;
}

.tooltipBtm {
    /*position: relative;*/
    display: table-cell;
    /*padding-left: 5px;*/
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
}

    .tooltipBtm .tooltiptext {
        visibility: hidden;
        width: 308px;
        margin: auto;
        background-color: #27313d;
        border: 1px solid #27313d;
        color: #fff;
        text-align: left;
        border-radius: 4px;
        padding: 10px 16px;
        position: absolute;
        z-index: 10;
        top: 105%;
        font-size: 12px;
        left: 0;
        right: 0;
        line-height: 18px;
        opacity: 0;
        box-shadow: 0px 1px 13px rgba(77, 126, 199, 0.15);
        transition: all 0.5s ease-out;
        -webkit-transform: translate(0%, 0%);
        transform: translate(0%, 0%);
    }

        .tooltipBtm .tooltiptext::after {
            content: "";
            position: absolute;
            top: -18px;
            left: 44%;
            border-width: 9px;
            border-style: solid;
            border-color: transparent transparent #27313d transparent;
        }

    .tooltipBtm:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
        -webkit-transform: translate(0%, 10%);
        transform: translate(0%, 10%);
    }

.amountInfo {
    position: static;
    transition: all 0.3s ease;
    cursor: pointer;
}

.amountInfoTooltip {
    visibility: hidden;
    width: 97%;
    background-color: #27313d;
    border: 1px solid #27313d;
    color: #fff;
    text-align: left;
    border-radius: 4px;
    padding: 10px 10px;
    position: absolute;
    z-index: 10;
    top: 40px;
    font-size: 11px;
    left: 0;
    right: 0;
    line-height: 18px;
    opacity: 0;
    box-shadow: 0px 1px 13px rgba(77, 126, 199, 0.15);
    transition: all 0.5s ease-out;
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
}

.amountInfo .amountInfoTooltip::after {
    content: "";
    position: absolute;
    top: -18px;
    left: 135px;
    border-width: 9px;
    border-style: solid;
    border-color: transparent transparent #27313d transparent;
}


.amountInfoWhite .amountInfoTooltip {
    background: #fff;
    border: none;
    top: auto;
    bottom: 16px;
    border-radius: 10px;
    left: 0;
    right: 0;
}

    .amountInfoWhite .amountInfoTooltip:after {
        display: none;
    }

.amountInfoWhite .amountInfoTooltip {
    padding: 0;
}

    .amountInfoWhite .amountInfoTooltip ul {
        padding: 12px 12px 12px 15px;
        background: #fff;
        position: relative;
        border-radius: 10px;
    }

        .amountInfoWhite .amountInfoTooltip ul li {
            font-size: 12px;
            font-weight: 500;
            margin-bottom: 8px;
            color: #253858;
            display: flex;
        }

            .amountInfoWhite .amountInfoTooltip ul li:before {
                min-width: 7px;
                height: 7px;
                content: '';
                background: #253858;
                border-radius: 50%;
                margin-right: 7px;
                margin-top: 5.5px;
            }

            .amountInfoWhite .amountInfoTooltip ul li:last-child {
                margin-bottom: 0;
            }

.amountInfoWhite .amountInfoKnow {
    color: #0661ea;
}

.amountInfo:hover .amountInfoTooltip {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate(0%, -10%);
    transform: translate(0%, -10%);
}
/*tooltip for sapling Bottom css end*/
.productLogo {
    width: 45%;
    display: flex;
    align-items: flex-start;
}

.productLogoTop {
    display: flex;
    align-items: flex-start;
}

.productLogo .productLogoTop > img {
    width: 110px;
}

.headerRight {
    width: 55%;
    justify-content: flex-start;
}

.totalAmt {
    font-size: 13px;
    font-weight: 700;
    display: block;
    width: 100%;
    text-align: right;
    display: flex;
    justify-content: flex-end;
}

    .totalAmt > span {
        color: #27313d;
    }

.amountLabel {
    font-size: 12px;
    padding-right: 8px;
    display: flex;
    /* font-weight: normal; */
}

.coronaKavachAmt {
    font-size: 10px;
    color: #27313d;
    font-weight: 500;
    text-align: left;
}

.totalAmt {
    color: #27313d;
    display: flex !important;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.clientPrdName {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.17;
    text-align: left;
    color: #27313d;
    margin: 7px 0;
    justify-content: center;
    height: 100%;
    /* margin-top: 0px; */
}

.knowYourPlan {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.17;
    letter-spacing: 0.11px;
    text-align: left;
    color: #0661ea;
    padding: 4px 8px;
    height: auto;
    background: #fff;
    cursor: pointer;
    font-stretch: normal;
    font-style: normal;
    border: solid 1px #0661ea;
    border-radius: 4px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

    .knowYourPlan > * {
        color: #0661ea;
        font-size: 12px;
        font-weight: 400;
    }

.downloadBrochureMob {
    font-size: 12px;
    font-weight: 500;
    text-align: left;
    color: #0661ea;
    margin-right: 0;
    line-height: 1.8;
    margin-top: 5px;
}


.paymentMode {
    font-size: 12px;
    font-weight: 600;
}

.modeOfPremium {
    /*margin-left: 5px;*/
}

    .modeOfPremium .floating-select {
        font-size: 10px;
        line-height: 30px;
        height: auto;
        background-size: 10px;
        background-position: right 13px;
        opacity: 1;
        color: #27313d;
        min-width: 60px;
    }

        .modeOfPremium .floating-select:disabled {
            margin-right: 5px;
            cursor: no-drop;
        }
/*slider css*/
.claimSettlement {
    background: transparent linear-gradient(290deg, #79C1EF 0%, #349ADB 100%) 0% 0% no-repeat padding-box;
    border: 1px solid #3A96D1;
    color: #fff;
    /* padding: 3px 5px 3px 25px; */
    border-radius: 40px 4px 4px 40px;
}

.mdSpeaks {
    background-image: url("https://static.pbcdn.in/e2e-cdn/assets/images/tata-aia-ceo-video-cover-mobile.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.claimSettlement .certifiedPartnerInfo {
    color: #fff;
    /* padding: 3px 5px 3px 35px; */
}

.ceo-slide {
    width: 100%;
    position: relative;
    background: linear-gradient(102deg, #E5E4E2 -1.85%, #E5DDD4 113.51%);
    padding: 10px 16px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    min-height: 54px;
}

    .ceo-slide > img {
        position: absolute;
        right: 50px;
        width: 49px;
        top: 0;
    }

.whose-ceo {
    margin-bottom: 0;
    margin-right: 16px;
}

    .whose-ceo h2 {
        color: #2067ba;
        font-weight: 700;
        font-size: 11px;
        line-height: 1.4;
        margin: 0;
    }

        .whose-ceo h2 span {
            color: #db2835;
            display: block;
        }

.ceo-name-post {
    padding: 0 0 2px 2px;
    border-left: 1px solid;
    border-bottom: 1px solid;
    border-color: #2067ba;
    width: fit-content;
}

    .ceo-name-post .ceo-name {
        background: #2063b9;
        font-size: 8px;
    }

.ceo-post {
    background: #bc2b3f;
}

.ceo-name-post h3 {
    margin: 0;
    color: #fff;
    padding: 2px;
    font-weight: 400;
    font-size: 7px;
    text-align: center;
}

.claimSetImg {
    background: #fef7dc;
    box-shadow: 0 0 5px #cecece;
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    left: -1px;
    top: -4px;
    top: 0px;
}

.claimImg {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.peaceMind span {
    background: #1F86C8 0% 0% no-repeat padding-box;
    border-radius: 10px;
    padding: 1px 10px;
    font-size: 11px;
    color: #fff;
    text-transform: uppercase;
    font-weight: normal;
}

.viewCertificateBtn span {
    background: #FFFCF0 0% 0% no-repeat padding-box;
    border: 1px solid #0661ea;
    border-radius: 14px;
    color: #0661ea;
    font-size: 10px;
    line-height: normal;
    padding: 1px 10px;
    display: inline-block;
    font-weight: normal;
    text-transform: uppercase;
    margin-top: 0px;
    cursor: pointer;
    text-align: center;
}

.slick-slide {
    margin: 0px 1px;
}


.slick-prev:before,
.slick-next:before {
    color: black;
}


.slick-slide {
    transition: all ease-in-out 1s;
    opacity: 1;
}

.slick-active {
    opacity: 1;
}

.slick-current {
    opacity: 1;
}

.slick-dotted.slick-slider {
    margin-bottom: 0px;
}

.slick-prev {
    left: -14px;
}

    .slick-prev:before {
        border-top: 2px solid;
        border-left: 2px solid;
        transform: rotate(-46deg);
        right: -1px;
    }

.slick-next {
    right: -14px;
}

    .slick-next:before {
        border-bottom: 2px solid;
        border-right: 2px solid;
        transform: rotate(-46deg);
        left: -1px;
    }

.slick-arrow:before {
    content: '';
    width: 8px;
    height: 8px;
    display: block;
    border-color: #000;
    opacity: 1;
    position: relative;
}

.slick-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,1);
    transition: all 0.5s ease-in-out;
    width: 24px;
    height: 24px;
    -webkit-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.75);
    border-radius: 50%;
    z-index: 9;
    display: none !important;
}

    .slick-arrow:hover, .slick-arrow:focus {
        background: rgba(255,255,255,1);
        opacity: 1;
    }

.slick-dots li button {
    padding: 0;
    width: 6px;
    height: 6px;
}

    .slick-dots li button:before {
        content: '';
        width: 6px;
        height: 6px;
        background: rgb(37, 56, 88, 0.26);
        border-radius: 50%;
        opacity: 1 !important;
    }

.hideSlider {
    height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
}

.slick-dots {
    height: auto;
    line-height: normal;
    top: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: -5px;
    position: absolute;
    left: 0;
    right: 0;
}

    .slick-dots li {
        width: auto;
        height: auto;
        margin: 0 3px;
    }

        .slick-dots li.slick-active button:before {
            background: rgb(37, 56, 88, 0.6);
        }

.videoinPoPUp .crossBtn {
    /*    width: 26px;
    height: 26px;*/
    position: absolute;
    top: 5px;
    right: 5px;
    /*border: 2px solid #fff;
    border-radius: 4px;*/
}

.videoinPoPUp img {
    width: 15px;
}

.viewCertificateBtn, .viewCertificateClaimBtn, .ceoSpeakLink {
    display: flex;
    flex-grow: 1;
    justify-content: flex-end;
}

.ceo-play-btn {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    transform: translate(0px,-50%);
    right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0095ff;
    border-radius: 50%;
    cursor: pointer;
}

    .ceo-play-btn:hover {
        background: #0b8be5;
    }

    .ceo-play-btn span {
        width: 0;
        height: 0;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
        border-left: 10px solid #fff;
        margin-left: 2px;
    }

/*slick-slider-start*/

.certifiedPartner {
    background: transparent linear-gradient(290deg, #FEF7DC 0%, #FFE789 100%) 0% 0% no-repeat padding-box;
    border: 1px solid #EFCE50;
    position: relative;
    width: auto;
    border-radius: 40px 4px 4px 40px;
    margin-bottom: 4px;
}

.certifiedPartnerInfo {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.71;
    letter-spacing: 0.2px;
    text-align: left;
    color: #936906;
    cursor: pointer;
    padding: 3px 5px 3px 60px;
    display: flex;
    align-items: center;
    width: 100%;
    /*min-height: 42px;*/
    min-height: 54px;
}

.certifiedPartnerTitle {
    font-size: 14px;
    font-weight: 600;
    padding: 0 20px;
}

.certifiedPartnerBody {
    padding: 10px;
}

.certifiedPartnerBlurBg, .invalidNumberBlurBg, .infoHousewifeBg {
    display: none;
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1031;
    -webkit-transition: all .5s ease-in;
    transition: all .5s ease-in;
    background: #0817339e;
}

.certifiedPartnerModal {
    border-radius: 12px;
    background: #fff;
    display: none;
    width: 98%;
    margin: 0 auto;
    position: fixed;
    z-index: 1032;
    /* height: 65%; */
    top: 53%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    border-top: 8px solid #294476;
}


.certifiedPartnerDiv img {
    width: 100%;
}

.certifiedPartnerTitleCrossButton {
    position: absolute;
    right: 10px;
    top: 5px;
    cursor: pointer;
}

    .certifiedPartnerTitleCrossButton img {
        width: 15px;
    }

.fiveStarImg {
    background: #fef7dc;
    box-shadow: 0 0 5px #cecece;
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    left: -1px;
}
/*slick-slider-end*/
/*slider css*/
.coverForNotify {
    border: 1px solid #F8DE88;
    background: #FFF9EA;
    transform: translateY(12px);
    position: relative;
    box-shadow: 0 0 3px #FFEAB4;
    position: absolute;
    width: 100%;
    z-index: 2;
}

    .coverForNotify.show {
        transition: 0.5s all;
        transform: translateY(2px);
    }

.coverImportantInfo {
    font-size: 11px;
    color: #574815;
    font-weight: 500;
}

.coverImportantNote {
    font-size: 10px;
    color: #6e6645;
}

    .coverImportantNote span {
        color: #6e6645;
    }

.coverForNotifyClose {
    position: absolute;
    right: 10px;
    top: 5px;
}

    .coverForNotifyClose svg {
        fill: #84671C;
    }

.coverForNotifyTile {
    border: 1px solid #F8DE88;
    background: #FFF9EA;
    transform: translateY(0px);
    box-shadow: 0 0 3px #FFEAB4;
    /*position: absolute;*/
    width: 100%;
    z-index: 2;
    opacity: 1;
    visibility: visible;
    bottom: 0;
    left: 0;
    right: 0;
}

    .coverForNotifyTile.show {
        transition: 0.5s all;
        transform: translateY(2px);
        opacity: 1;
        visibility: visible;
    }

.coverForNotifyCloseTile {
    position: absolute;
    right: 10px;
    top: 5px;
    cursor: pointer;
}

    .coverForNotifyCloseTile svg {
        fill: #84671C;
    }

.coverImportantInfoTile {
    font-size: 12px;
    color: #574815;
    font-weight: 500;
    padding-right: 30px;
}

    .coverImportantInfoTile span {
        color: #574815;
    }
/*
.certifiedPartner {
    cursor: pointer;
    background: #ffff;
    border: 1px dashed #FFC400;
    border-radius: 8px;
    margin-top: 10px;
}*/

/*.certifiedPartnerInfo {
    font-size: 11px;
    line-height: 1.71;
    letter-spacing: 0.2px;
    text-align: left;
    color: #253858;
    cursor: pointer;
    font-weight: 400;
}*/

.certifiedPartnerArrow {
    /* width: 15px;
    margin: 0 6px;*/
    padding: 3px 5px 3px 60px;
    display: flex;
    align-items: center;
    width: 100%;
    /*min-height: 42px;*/
    min-height: 50px;
}

/*    .certifiedPartnerArrow img {
        width: 100%;
    }*/


.certifiedPartnerTitle {
    font-size: 12px;
    font-weight: 500;
    padding: 10px 40px 0 10px;
    text-align: left;
}

.certifiedPartnerBody {
    padding: 10px;
}

.certifiedPartnerBlurBg {
    display: none;
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1031;
    -webkit-transition: all .5s ease-in;
    transition: all .5s ease-in;
    background: #0817339e;
}

.certifiedPartnerModal {
    border-radius: 12px;
    background: #fff;
    display: none;
    width: 90%;
    margin: 0 auto;
    position: fixed;
    z-index: 1032;
    /* height: 65%; */
    top: 53%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    border-top: 8px solid #294476;
}

.certifiedPartnerDiv img {
    width: 100%;
}

.certifiedPartnerTitleCrossButton {
    position: absolute;
    cursor: pointer;
    right: 20px;
    top: 13px;
}

    .certifiedPartnerTitleCrossButton img {
        width: 15px;
    }

.fiveStarImg {
    background: #fef7dc;
    box-shadow: 0 0 5px #cecece;
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    left: -1px;
}

.viewCertificateBtn, .viewCertificateClaimBtn {
    display: flex;
    flex-grow: 1;
    justify-content: flex-end;
}

    .viewCertificateBtn span, .viewCertificateClaimBtn span {
        background: #FFFCF0 0% 0% no-repeat padding-box;
        border: 1px solid #0661ea;
        border-radius: 14px;
        color: #0661ea;
        font-size: 10px;
        line-height: normal;
        padding: 1px 10px;
        display: inline-block;
        font-weight: normal;
        text-transform: uppercase;
        margin-top: 0px;
        cursor: pointer;
        text-align: center;
    }

.trustTxt span {
    background: #efce50ad 0% 0% no-repeat padding-box;
    border-radius: 10px;
    padding: 1px 10px;
    font-size: 11px;
    color: #936906;
    text-transform: uppercase;
    font-weight: normal;
}

.claimSettlement {
    background: transparent linear-gradient(290deg, #79C1EF 0%, #349ADB 100%) 0% 0% no-repeat padding-box;
    border: 1px solid #3A96D1;
    color: #fff;
    /* padding: 3px 5px 3px 25px; */
    border-radius: 40px 4px 4px 40px;
}

    .claimSettlement .certifiedPartnerInfo {
        color: #fff;
        /* padding: 3px 5px 3px 35px; */
    }

.claimSetImg {
    background: #fef7dc;
    box-shadow: 0 0 5px #cecece;
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    left: -1px;
    top: 0px;
}

.peaceMind span {
    background: #1F86C8 0% 0% no-repeat padding-box;
    border-radius: 10px;
    padding: 1px 10px;
    font-size: 11px;
    color: #fff;
    text-transform: uppercase;
    font-weight: normal;
}

.slick-slide {
    margin: 0px 1px;
}


.slick-prev:before,
.slick-next:before {
    color: black;
}


.slick-slide {
    transition: all ease-in-out 1s;
    opacity: 1;
}

.slick-active {
    opacity: 1;
}

.slick-current {
    opacity: 1;
}
/*-------------------Header Css End-------------*/
.rupee {
    font-size: inherit;
    font-weight: 500;
    color: inherit;
    margin-right: 3px;
}

    .rupee:before {
        font-family: system-ui,Segoe UI,Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol;
        content: "\20B9";
        display: inherit;
        font-size: inherit;
        color: inherit;
        font-weight: inherit;
    }

.prefixInputIcon .rupee {
    top: -2px;
    position: relative;
    font-weight: 600;
}
/*-------------------EditUserDetails Css Start-------------*/
.editUserDetails ul li {
    font-size: 11px;
    color: #27313d;
    font-weight: 500;
    letter-spacing: 0.15px;
}

    .editUserDetails ul li.dividerLine {
        color: #cacccd;
        padding: 0 5px;
    }

.editLink {
    color: #0661ea;
    font-weight: 500;
    font-size: 11px;
}

.borderAfter:after {
    content: "";
    position: absolute;
    right: 0px;
    height: 45px;
    width: 1px;
    background-color: #eaeaea;
    top: -15px;
}
/*-------------------EditUserDetails Css End-------------*/
/*-------------------Form Section Css start-------------*/
.card {
    box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.08), 0px 4px 8px -2px rgba(0, 0, 0, 0.04);
    background-color: #ffffff;
}

.planOptionBox {
    box-shadow: 0 2px 4px -2px #00000014, 0 4px 8px -2px #0000000a;
    border: 1px solid #dcdfe4;
}

.productPlanCard {
    border-radius: 16px;
    overflow: hidden;
    border-top: #e4eaff 1px solid;
}

.occupationDecleration {
    font-size: 12px;
    margin-top: 5px;
    color: #B3741E;
    display: flex;
    align-items: flex-start;
    font-weight: 500;
}
/*tooltip for sapling Top css start */
.tooltipSapling {
    /*position: relative;*/
    display: table-cell;
    padding-left: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .tooltipSapling .tooltiptext {
        visibility: hidden;
        width: 100%;
        background-color: #27313d;
        border: 1px solid #27313d;
        color: #fff;
        text-align: left;
        border-radius: 4px;
        padding: 10px 16px;
        position: absolute;
        z-index: 10;
        bottom: 105%;
        font-size: 12px;
        left: 0;
        right: 0;
        line-height: 18px;
        opacity: 0;
        box-shadow: 0px 1px 13px rgba(77, 126, 199, 0.15);
        transition: all 0.5s ease-out;
        -webkit-transform: translate(0%, 0%);
        transform: translate(0%, 0%);
    }

        .tooltipSapling .tooltiptext::after {
            content: "";
            position: absolute;
            bottom: -17px;
            right: 40px;
            border-width: 9px;
            border-style: solid;
            border-color: #27313d transparent transparent transparent;
        }

    .tooltipSapling:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
        -webkit-transform: translate(0%, -10%);
        transform: translate(0%, -10%);
    }
/*tooltip for sapling Top css end*/

/*tooltip for sapling Bottom css start */
.pmcmInfo span {
    font-size: 9px;
    font-weight: 600;
    color: #bb023b;
}

.tooltipBtm {
    /*position: relative;*/
    display: table-cell;
    /*padding-left: 5px;*/
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
}

    .tooltipBtm .tooltiptext {
        visibility: hidden;
        width: 308px;
        margin: auto;
        background-color: #27313d;
        border: 1px solid #27313d;
        color: #fff;
        text-align: left;
        border-radius: 4px;
        padding: 10px 16px;
        position: absolute;
        z-index: 10;
        top: 105%;
        font-size: 12px;
        left: 0;
        right: 0;
        line-height: 18px;
        opacity: 0;
        box-shadow: 0px 1px 13px rgba(77, 126, 199, 0.15);
        transition: all 0.5s ease-out;
        -webkit-transform: translate(0%, 0%);
        transform: translate(0%, 0%);
    }

        .tooltipBtm .tooltiptext::after {
            content: "";
            position: absolute;
            top: -18px;
            left: 44%;
            border-width: 9px;
            border-style: solid;
            border-color: transparent transparent #27313d transparent;
        }

    .tooltipBtm:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
        -webkit-transform: translate(0%, 10%);
        transform: translate(0%, 10%);
    }
/*tooltip for sapling Bottom css end*/
/*-------------------Form Section Css End-------------*/
.whatsappUpdate {
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.64;
    letter-spacing: normal;
    text-align: left;
    color: #757575;
    display: flex;
    align-items: center;
}

.toggles {
    width: auto;
    padding-top: 0;
}

.whatsappToggle.toggles {
    line-height: 0;
}

.toggles .switch {
    position: relative;
    cursor: pointer;
    display: inline-block;
    width: 40px;
    height: 20px;
    margin-bottom: 0;
    background: #c5d6f4;
    border-radius: 50px;
    left: 2px;
    top: 2px;
}

.whatsappToggle.toggles .switch {
    background-color: initial;
    box-shadow: 0 1px 13px 0 rgb(77 126 199 / 19%);
    margin-left: 10px;
    width: 27px;
    height: 16px;
    position: relative;
    top: 0px;
}

.toggles .switch input {
    opacity: 0;
    width: 0;
    height: 0;
    padding: 0;
    display: none;
}

.slider {
    /*width: 90%;
    margin: 100px auto;*/
}

.toggles .slider.round {
    border-radius: 34px;
    background-color: #fff;
}

.whatsappToggle.toggles .slider.round {
    background-color: #b4b4b4;
    width: 100%;
    margin: 0px 0 0;
    height: 100%;
    display: block;
}

.whatsappToggle.toggles .switch input:checked + .slider.round {
    background-color: #0d6cfe;
}

.toggles .slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 1px;
    bottom: 2px;
    background-color: #1552cf;
    transition: .4s;
}

.toggles .slider.round:before {
    border-radius: 50%;
}

.whatsappToggle.toggles .slider:before {
    background-color: #fff;
    height: 12px;
    width: 12px;
}

.toggles .switch input:checked + .slider:before {
    transform: translateX(22px);
}

.whatsappToggle.toggles .switch input:checked + .slider:before {
    transform: translateX(12px);
}

.gstWaiver {
    position: relative;
}

    .gstWaiver.tooltipSapling .tooltiptext {
        width: 100%;
    }

        .gstWaiver.tooltipSapling .tooltiptext::after {
            left: 137px;
            right: initial;
        }

.totalProceedAmtLabel {
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: left;
    color: #27313d;
    margin-bottom: 4px;
    position: relative;
}

    .totalProceedAmtLabel sup {
        position: absolute;
        right: -9px;
        top: -2px;
    }

.returnInfo {
    font-size: 9px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: center;
    margin-top: 5px;
}

.amountMoreInfo {
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: .13px;
    border-radius: 16px;
    padding: 4px 8px;
    /* display: flex;*/
    flex-shrink: 0;
    color: #0661ea;
    background: #fff6;
    border: 1px dashed rgba(50, 91, 247, .46);
    cursor: pointer;
    font-weight: 500;
    align-items: center;
    margin-top: 8px;
}

.blueIcon {
    filter: brightness(0) saturate(100%) invert(36%) sepia(83%) saturate(4446%) hue-rotate(209deg) brightness(98%) contrast(103%);
}

.header-sticky {
    position: static;
    top: 0;
    z-index: 1;
}
/*--------------------Upgrade Plan Css Start---------------------*/
.skipToAddOn a {
    color: #0661ea;
    font-size: 11px;
    font-weight: 500;
}

.titleHeaderBackArrowBox {
    width: 65%;
}

.skipToAddOn {
    width: 35%;
}

.titleHeaderBackArrow {
    cursor: pointer;
    display: flex;
    align-items: center;
}

    .titleHeaderBackArrow a {
        line-height: 14px;
    }

.productPlanMainTitle {
    margin: 0 0 39px 0;
    background-color: #fafafa;
    border-bottom: 1px solid #e5e8eb;
    border-radius: 16px 16px 0 0;
    min-height: 50px;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.titleHeading {
    font-size: 14px;
    font-weight: 600;
    color: #27313d;
}

.subHeading {
    font-size: 16px;
    font-weight: 600;
    color: #27313d;
    line-height: 1.5;
    /*padding-right: 83px;*/
    padding-right: 85px;
}

.smallPara {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.7;
}

.planOptionBox {
    position: relative;
}

.planOptions .active {
    border: 1px solid #225cff;
    border-radius: 4px;
}

.infoIcon {
    cursor: pointer;
    width: 18px;
}

.infoIconClose {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #ff6c6c;
    display: inline-block;
    text-align: center;
    position: relative;
    top: 2px;
}

    .infoIconClose img {
        position: relative;
        top: -2px;
        width: 6px;
    }

.infoIconDetailBox {
    position: absolute;
    bottom: 38px;
    box-shadow: 0 0 27px 0 rgba(76, 90, 111, 0.33);
    border: solid 1px #cccccc;
    background-color: #ffffff;
    width: 96%;
    right: 10px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-out;
    -webkit-transform: translate(0%, 10%);
    transform: translate(0%, 10%);
    box-shadow: 0 -5px 27px 0 #27313d4f;
    border-top: 4px solid #294476;
    border-radius: 16px;
}

    .infoIconDetailBox.clicked {
        visibility: visible;
        opacity: 1;
        -webkit-transform: translate(0%, -5%);
        transform: translate(0%, -5%);
    }

    .infoIconDetailBox:before {
        content: '';
        position: absolute;
        transform: rotate(45deg);
        width: 18px;
        height: 18px;
        bottom: -10px;
        left: 92px;
        /* z-index: -1; */
        /* box-shadow: 0 0 27px 0 rgba(76, 90, 111, 0.33); */
        border: solid 1px #cccccc;
        border-left: none;
        background: transparent;
        border-top: none;
        display: none;
    }

    .infoIconDetailBox:after {
        top: 100%;
        left: 89px;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-color: rgba(255, 255, 255, 0);
        border-top-color: #fff;
        border-width: 12px;
        display: none;
    }

.infoIconDetailBoxBtm {
    /* top: 53px; */
    z-index: 2;
    right: 10px;
}

    .infoIconDetailBoxBtm:before {
        /* transform: rotate(-135deg); */
        /* top: -10px; */
        /* right: 10px; */
    }

    .infoIconDetailBoxBtm:after {
        /* top: initial; */
        /* bottom: 100%; */
        /* right: 7px; */
        /* transform: rotate(-181deg); */
        /* border-top-color: #f5f5f5; */
    }

.infoBoxHeader {
    font-size: 16px;
    line-height: 1.43;
    text-align: center;
    color: #27313d;
    font-weight: 600;
    padding: 16px 8px;
}

.infoBoxLable {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.6;
    text-align: left;
    color: #27313d;
    width: 60%;
}

.infoBoxValue {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.6;
    text-align: right;
    color: #2c3642;
    width: 40%;
}

.infoBoxRiderTitle {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.6;
    text-align: left;
    color: #27313d;
}

.infoBoxRiderSmallTitle {
    font-size: 10px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #d99103;
}

.infoBoxRiderLable {
    font-size: 11px;
    line-height: 1.6;
    text-align: left;
    color: #27313d;
    font-weight: normal;
}

.infoBoxBorder {
    border-bottom: solid 1px #f5f5f5;
    background-color: #ffffff;
}

.infoBoxRiderValue {
    font-size: 13px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    /* line-height: 2.33; */
    letter-spacing: normal;
    text-align: right;
    color: #2c3642;
}

.floatingLabelTextDullClr {
    color: #27313d;
}

.totalPrice {
    font-size: 12px;
    font-weight: 500;
}

.longtxtRadio {
    width: 80%;
}

.toolTipRight {
    background-color: #4b5b6e;
    color: #fff;
    padding: 2px 15px 2px 10px;
    position: relative;
    font-size: 8px;
    font-weight: 500;
    color: #fcfdff;
    display: inline-block;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
    top: -3px;
    line-height: 11px;
}

.leftArrow {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 53%;
    left: 87px;
    box-sizing: border-box;
    border: 6px solid black;
    border-color: transparent #ffffff #ffffff transparent;
    transform-origin: 0 0;
    transform: rotate(-225deg);
}

.alertText {
    font-size: 10px;
    font-weight: 400;
    color: #27313d;
}

.smallLabel {
    font-size: 11px;
    color: #27313d;
    font-weight: 500;
}

.warningText {
    font-size: 10px;
    font-weight: 400;
    color: rgba(76, 90, 111, 0.59);
    margin-top: 5px;
}

.warningOrangeTxt {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.29;
    letter-spacing: 0.28px;
    text-align: left;
    color: #c36b02;
    padding-top: 5px;
    position: relative;
}

.warningOrangeProductTxt {
    font-size: 12px;
    text-align: left;
}

    .warningOrangeProductTxt a {
        text-decoration: underline;
    }

.benefitNominee .radio input[type="radio"] ~ .longtxtRadio {
    color: #27313d;
    width: 89%;
}

.benefitNominee .radio input[type="radio"]:checked ~ .longtxtRadio {
    color: #27313d;
}

    .benefitNominee .radio input[type="radio"]:checked ~ .longtxtRadio span {
        color: #27313d;
    }

.optionSecond, .optionFirst {
    border-radius: 4px;
    background-color: rgba(250, 250, 250, 0.67);
    padding: 20px;
}

.additionalPremiumValues .moresavingOptions {
    color: #0661ea;
    font-weight: 500;
    font-size: 9px;
    cursor: pointer;
}

.moreOptionTable .radio .label {
    width: 18px;
    height: 18px;
}

    .moreOptionTable .radio .label:after {
        width: 8px;
        height: 8px;
    }

.moreOptionBlurBg {
    display: none;
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1031;
    -webkit-transition: all .5s ease-in;
    transition: all .5s ease-in;
    background: rgba(0, 0, 0, 0.5);
}

.moreOptionModal {
    border-radius: 4px;
    background: #fff;
    display: none;
    width: 90%;
    margin: 0 auto;
    position: fixed;
    z-index: 1032;
    /*height: 85vh;
    top: 50%;*/
    height: 90%;
    top: 53%;
    left: 50%;
    /* padding: 30px; */
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 1px -2px rgba(0,0,0,.2), 0 1px 17px 0 rgba(0,0,0,.14), 0 1px 2px 0 rgba(0,0,0,.12);
}

.moreOptionTable {
    /*max-height: 60vh;*/
    overflow-y: auto;
    height: 100%;
    padding: 30px 20px;
    background: #fff;
    border-radius: 5px;
}

.moreOptionModal table {
    width: 100%;
}

.colValue {
    padding: 20px 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
}

.moreOptionHeader .col1, .moreOptionBody .col1 {
    width: 10%;
}

.moreOptionHeader .col2, .moreOptionBody .col2 {
    width: 30%;
}

.moreOptionHeader .col3, .moreOptionBody .col3 {
    width: 30%;
    justify-content: center;
    text-align: center;
}

.moreOptionHeader .col4, .moreOptionBody .col4 {
    width: 30%;
}

.moreOptionHeader .colValue {
    padding: 15px 20px;
}

.moreOptionHeader {
    background: #f7f7f7;
    font-weight: 500;
    color: #27313d;
    border-bottom: 1px solid #d0d5dd;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.moreOptionBody .colValue {
    font-weight: 500;
    color: #27313d;
    border-bottom: 1px solid #d0d5dd;
}

    .moreOptionBody .colValue span {
        color: #27313d;
    }

.moreOptionBody.active {
    background: rgba(245, 249, 255, 0.65);
}

    .moreOptionBody.active .colValue {
        font-weight: 600;
    }

.moreOptionModal table tbody tr.active td {
    background: #f8fbff;
    /*cursor:pointer;*/
}

.effectiveSavingLink {
    color: #0661ea;
    text-decoration: underline;
}

    .effectiveSavingLink:hover {
        text-decoration: underline;
    }

.effectiveSavingNote {
    font-size: 10px;
    padding: 10px 10px;
    text-align: center;
    justify-content: center;
    color: #27313d;
    align-items: center;
}

.moreOptionCrossButton {
    width: 26px;
    height: 26px;
    position: absolute;
    top: -35px;
    right: 0;
    border: 2px solid #fff;
    border-radius: 4px;
    cursor: pointer;
}

.moreOptionTitle {
    color: #27313d;
    line-height: 22px;
    font-size: 14px;
    font-weight: 500;
}

.linkDetailsDiv {
    box-shadow: 0 0 13px 0 rgba(202, 204, 205, 0.57);
    border-bottom: 1px solid #d0d5dd;
}

.linkDetails {
    width: 33%;
    padding: 15px 15px;
    font-size: 12px;
    color: #27313d;
}

.linkDetailsBg {
    background: #fafafa;
    color: #27313d;
}

.linkCol2 {
    color: #27313d;
    font-weight: 600;
}

.linkCol3 {
    color: #27313d;
    font-weight: 600;
}

.savingAmtDiv .savingAmt {
    border: 1px dotted #ffcdb9;
    color: #0d6efd;
    width: 100%;
    border-radius: 4px;
    text-align: center;
    padding: 10px;
    font-weight: 600;
    font-size: 12px;
}

.savingAmtDiv .effectiveSaving {
    color: #20a067;
    border-color: rgba(0, 195, 109, 0.58);
}

.savingAmtDiv {
    width: 67%;
}

.savingDetails {
    padding: 15px 10px 10px;
}

.effectiveSavingDetails {
    padding: 0 10px 20px;
}

.savingButtonBox {
    position: fixed;
    width: 100%;
    bottom: 20px;
    background: #fff;
    left: 0;
    right: 0;
    padding: 0 20px;
}

.moreOptionDiv {
    height: 79%;
    overflow-y: auto;
}
/*.moreOptionCrossButton:after, .moreOptionCrossButton:before {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 18px;
    width: 2px;
    background-color: #333;
}
.moreOptionCrossButton:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.moreOptionCrossButton:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}*/
.additionalPremiumValues span.changePayTerm {
    font-size: 9px;
    color: #0661ea;
    margin-left: 5px;
    font-weight: 500;
}

/*-HigherReturnsStart-*/
.HigherReturnsBg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all .5s ease-in;
    transition: all .5s ease-in;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.HigherReturnsModal {
    border-radius: 0;
    background: #fff;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    padding: 20px;
    height: 100%;
    overflow: auto;
}

.HigherReturnsCloseBtn {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.HigherReturnsContent {
    text-align: center;
}

    .HigherReturnsContent > h2 {
        margin: 0;
        color: #0661ea;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 13px;
    }

    .HigherReturnsContent > p {
        font-size: 16px;
        color: #253858;
        font-weight: 600;
        margin: 0 0 10px 0;
        line-height: 1.6;
        max-width: 383px;
        margin: 0 auto 10px auto;
    }

.HigherReturnsRow {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    justify-content: center;
    box-sizing: border-box;
    max-width: 383px;
}

    .HigherReturnsRow > * {
        padding: 0 8px;
        box-sizing: border-box;
        width: 50%;
        margin-top: 32px;
    }

.HigherReturnsBigCol {
    min-width: 237px;
}

.HigherReturnsText {
    height: 100%;
    border: 1px solid;
    border-radius: 8px;
    position: relative;
    padding: 37px 0 54px 0;
}

.HigherReturnsHeading {
    font-size: 12px;
    border: 1px solid;
    height: 24px;
    display: inline-flex;
    align-items: center;
    padding: 0 15px;
    border-radius: 50px;
    background: #fff;
    position: absolute;
    white-space: nowrap;
    left: 50%;
    transform: translate(-50%, 0);
    top: -12px;
}

.HigherReturnsText h3 {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 600;
}

.HigherReturnsPrise {
    font-size: 18px;
    font-weight: 600;
}

    .HigherReturnsPrise span {
        display: block;
        font-weight: 400;
        font-size: 14px;
        color: #253858;
        margin-top: 5px;
    }

.HigherReturnsRop {
    font-size: 10px;
    color: #253858;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
}

.HigherReturnsBtn {
    background: #0661ea;
    border: none;
    color: #fff;
    width: 140px;
    height: 48px;
    margin-top: 24px;
    border-radius: 8px;
    cursor: pointer;
}

.HigherReturnsTextBlue {
    border-color: #A7C7FF;
    background: #EAF1FD;
}

    .HigherReturnsTextBlue .HigherReturnsHeading {
        border-color: #A7C7FF;
        color: #4187FF;
    }

    .HigherReturnsTextBlue h3 {
        color: #4187FF;
    }

.HigherReturnsTextGreen {
    border-color: #B4E5B4;
    background: #EFFDEF;
}

    .HigherReturnsTextGreen .HigherReturnsHeading {
        border-color: #B4E5B4;
        color: #629563;
    }

    .HigherReturnsTextGreen h3 {
        color: #629563;
    }

.HigherReturnsTextPink {
    border-color: #F2D98A;
    background: #FFFAEA;
    border-style: dashed;
    padding: 20px 0 14px;
}

    .HigherReturnsTextPink .HigherReturnsHeading {
        border-color: #FAE49D;
        color: #EDC031;
    }

    .HigherReturnsTextPink h3 {
        color: #629563;
    }

.HigherReturnsPrise img {
    display: inline-block;
    margin-top: -2.5px;
}

.HigherReturnsHeading sup {
    margin-top: -7px;
    font-size: 9px;
    margin-right: 2px;
}

.HigherReturnsTextPink .HigherReturnsPrise span {
    font-size: 10px;
    margin: 0;
}

.congrats {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1033;
    top: 0;
    left: 0;
}

.HigherContent {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .HigherContent img {
        margin-right: 6px;
        margin-top: 0;
    }

    .HigherContent span {
        margin: 0;
        font-size: 18px !important;
        font-weight: 600;
    }
/*-HigherReturnsEnd-*/

.warningMSG {
    color: #936906;
    font-size: 12px;
    display: flex;
    align-items: flex-start;
    margin-top: 5px;
}

    .warningMSG img {
        min-width: 10px;
        padding-top: 3px;
    }

.disclaimer-text p {
    font-size: 11px;
    line-height: 1.5;
    margin-top: 10px;
}

/*-fund-options-start-*/

.fund-options .wholeLifeWarning {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.fund-options-btn img {
    display:none;
    filter: brightness(0) saturate(100%) invert(16%) sepia(43%) saturate(337%) hue-rotate(172deg) brightness(91%) contrast(93%);
}

.fund-options-btn.fund-options-open img {
    transform: rotate(180deg);
}

.fund-selection-popup {
    position: absolute;
    top: auto;
    background: #fff;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.14);
    background-color: #fff;
    z-index: 2;
    transition: 0.3s all ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translateY(19px);
    bottom: 0;
    min-width: 100%;
    text-align: left;
    border-radius: 8px 8px 0 0;
    left: 0;
    right: 0;
}

    .fund-selection-popup.fund-selection-active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .fund-selection-popup .risk-span {
        width: 8px;
        height: 8px;
        min-width: 8px;
        min-height: 8px;
        border-radius: 50%;
        display: block;
    }

        .fund-selection-popup .risk-span.high-risk {
            background: #e56a3b;
        }

        .fund-selection-popup .risk-span.moderate-risk {
            background: #f0ce00;
        }

        .fund-selection-popup .risk-span.low-risk {
            background: #7659b0;
        }

    .fund-selection-popup .fund-selection-heading {
        border-bottom: 1px solid #d0d5dd;
        padding: 12px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .fund-selection-popup .fund-selection-heading h2 {
            font-size: 16px;
            margin: 0;
        }

        .fund-selection-popup .fund-selection-heading .fund-selection-close {
            cursor: pointer;
        }

    .fund-selection-popup .fund-selection-msg {
        padding: 8px 16px;
        font-size: 10px;
        display: block;
        background: #faf9fd;
        border-radius: 0 0 8px 8px;
        line-height: 1.5;
        font-weight: 400;
    }

    .fund-selection-popup .fund-selection-risk-indicator {
        padding: 12px 16px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 8px;
    }

        .fund-selection-popup .fund-selection-risk-indicator li {
            font-size: 10px;
            display: flex;
            align-items: center;
            gap: 4px;
        }

    .fund-selection-popup .fund-selection-thead {
        padding-left: 8px;
        padding-right: 8px;
    }

    .fund-selection-popup .fund-selection-thead {
        padding-top: 8px;
        padding-bottom: 8px;
        background-color: #f4f5f6;
        border-bottom: 1px solid #d0d5dd;
    }

        .fund-selection-popup .fund-selection-thead .fund-selection-tr {
            justify-content: space-between;
        }

    .fund-selection-popup .fund-selection-tbody {
        max-height: 277px;
        min-height: 193px;
        overflow: auto;
    }

        .fund-selection-popup .fund-selection-tbody .fund-selection-tr {
            border-bottom: 1px solid #d0d5dd;
            padding-left: 8px;
            padding-right: 8px;
            transition: 0.5s all ease-in-out;
        }

            .fund-selection-popup .fund-selection-tbody .fund-selection-tr:hover,
            .fund-selection-popup .fund-selection-tbody .fund-selection-tr.active {
                background-color: #eaf2ff;
            }

    .fund-selection-popup .fund-selection-tr {
        display: flex;
        align-items: center;
        gap: 0;
        padding: 0 4px;
    }

    .fund-selection-popup .fund-selection-th {
        font-size: 13px;
        font-weight: 500;
    }

        .fund-selection-popup .fund-selection-th span {
            font-size: 11px;
            font-weight: 400;
        }

    .fund-selection-popup .fund-selection-td {
        font-size: 12px;
        padding: 12px 0;
        margin: 0;
    }

        .fund-selection-popup .fund-selection-td.fund-selection-name {
            display: flex;
            align-items: center;
            cursor: pointer;
        }

            .fund-selection-popup .fund-selection-td.fund-selection-name .fund-name {
                display: flex;
                align-items: center;
                gap: 4px;
                font-weight: 500;
            }

                .fund-selection-popup .fund-selection-td.fund-selection-name .fund-name .nfo_fund {
                    font-size: 10px;
                    padding: 0 4px 0 4px;
                    height: 20px;
                    font-weight: 400;
                }

        .fund-selection-popup .fund-selection-td.fund-selection-value {
            font-weight: 400;
        }

        .fund-selection-popup .fund-selection-td:first-child {
            width: calc(100% - 48px);
        }

        .fund-selection-popup .fund-selection-td:last-child {
            width: 48px;
            text-align: right;
        }

    .fund-selection-popup .fund-selection-th:last-child {
        text-align: right;
    }

    .fund-selection-popup .fund-selection-td.nfo-fund-container .fund-name {
        flex-direction: column;
        align-items: flex-start;
    }

        .fund-selection-popup .fund-selection-td.nfo-fund-container .fund-name .nfo_fund {
            margin: 0 0 0 0;
        }

    .fund-selection-popup .fund-selection-td.nfo-fund-container {
        align-items: flex-start;
    }

/*-fund-options-end-*/

.irlnTextForPolicyTerm {
    font-size: 9px;
    text-align: center;
}

.requiredForIRLN {
    margin-top: 5px;
}

.totalAmountColor {
    /*background: #EAF2FF;*/
    background: linear-gradient(180deg, #ddeaff, #f3f8ff 42.34%, #f4f8ff);
    border-top: 1px solid #CBDFFD;
    padding: 16px;
    position: fixed;
    width: 100%;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -3px 6px #f5f5f5;
}

.wholeLifeWarning {
    background: #F8F4E2;
}

.totalProceedAmtValue {
    font-size: 18px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.18;
    letter-spacing: normal;
    text-align: left;
    color: #27313d;
}

@media only screen and (max-width: 394px) {

    .linkDetails, .moreOptionHeader .colValue, .moreOptionBody .colValue {
        padding: 15px 10px;
    }

    .savingDetails {
        padding: 15px 10px 10px;
    }

    .effectiveSavingDetails {
        padding: 0 10px 20px;
    }
}

.boxShadowAnimate {
    -moz-animation-duration: 0.5s;
    -webkit-animation-duration: 0.5s;
    -moz-animation-name: changeShadow;
    -webkit-animation-name: changeShadow;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-direction: alternate;
    -webkit-animation-direction: alternate;
}

@-webkit-keyframes changeShadow {
    from {
        box-shadow: 0px 0px 10px #e0ecff;
    }

    to {
        box-shadow: 0px 0px 20px #dceaff;
    }
}

.savingAmount {
    background: transparent linear-gradient(283deg, #9922FF 0%, #225CFF 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 1px 1px #6119F426;
    letter-spacing: 0px;
    color: #fff;
    text-shadow: 0px 1px 1px #00000029;
    border-radius: 4px;
    padding: 0px 5px;
    font-weight: 500;
}

.effectiveSavingWorks {
    /* border: 1px dashed #4474FC; */
    /* padding: 3px 5px; */
    /* border-radius: 4px; */
}

.effectiveAmount {
    text-align: left;
    letter-spacing: 0px;
    color: #27313D;
}

.seeHowWorks {
    text-align: left;
    letter-spacing: 0px;
    color: #225CFF;
    /* background: #EBF1FF 0% 0% no-repeat padding-box; */
    border-radius: 4px;
    padding: 0px 0px;
}

.customerLiking {
    /*position: absolute;
    left: 0;
    right: 0;
    bottom: 42px;*/
    text-align: center;
}

.customerLiking__Text {
    background: #FFFCED 0% 0% no-repeat padding-box;
    border: 1px dashed #F5E091;
    border-radius: 5px;
    text-align: center;
    letter-spacing: 0px;
    color: #AF7D10;
    padding: 1px 5px;
    font-size: 9px;
    font-weight: 400;
    display: inline-block;
    margin: 0px 0 10px;
}

.inclusionTitle {
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    line-height: 23px;
    color: #313131;
    margin: 0;
    margin-bottom: 7px;
}

.inclustionList li span {
    color: #27313D;
}

.midEquity {
    text-align: left;
    font-size: 10px;
    font-weight: 400;
    line-height: 16px;
    color: #4C5A6E;
    margin-top: 20px;
}

.inclustionList li {
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    line-height: 26px;
    color: #27313D;
    background: url('../../images/web/check-icon.svg') no-repeat 0 17px;
    padding-left: 25px;
    border-bottom: 1px solid #E6E9EC;
    padding-top: 13px;
    padding-bottom: 13px;
    position: relative;
}

.planInclustionList li {
    font-weight: 400;
}

    .planInclustionList li .smallPara {
        font-weight: 400;
        font-size: 12px;
    }

.inclustionListTitle {
    font-weight: 600;
}

.inclustionRupee {
    height: 11px;
}

.inclustionList li:last-child {
    border: none;
    padding-bottom: 0;
}

.inclustionListtable {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

/*InclusionList tooltip start*/
.inclustionList li .InclusioninfoIcon img {
    width: 13px;
    cursor: pointer;
}

.HospiDiscTooltip {
    visibility: hidden;
    opacity: 0;
    width: 260px;
    background-color: #27313d;
    border: 1px solid #27313d;
    color: #fff;
    text-align: left;
    border-radius: 4px;
    padding: 10px 16px;
    position: absolute;
    z-index: 10;
    top: -140px;
    font-size: 12px;
    left: 60px;
    line-height: 18px;
    box-shadow: 0px 1px 13px rgb(77 126 199 / 15%);
    transition: all 0.5s ease-out;
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
}

    /*    .HospiDiscTooltip::after {
        content: "";
        position: absolute;
        bottom: -18px;
        left: 104px;
        border-width: 9px;
        border-style: solid;
        border-color: #27313d transparent transparent transparent;
    }*/

    .HospiDiscTooltip ul li {
        color: #fff;
        background: none;
        font-size: 12px;
        border: 0;
        line-height: 1.8;
        padding: 0px 0px 0px 35px;
        font-weight: 500;
    }

        .HospiDiscTooltip ul li:before {
            position: absolute;
            content: "• ";
            color: rgba(255,255,255,0.5);
            font-size: 30px;
            left: 15px;
            margin-top: -15px;
            font-family: Arial, sans-serif;
        }

    .HospiDiscTooltip ul {
        margin-top: 10px;
    }

.InclusioninfoIcon:hover + .HospiDiscTooltip {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate(0%, -10%);
    transform: translate(0%, -10%);
}

.HospiDiscBody {
    padding: 23px;
    background: #fff;
    border-radius: 16px;
}

.HospiDiscBlurBg {
    display: none;
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1031;
    -webkit-transition: all .5s ease-in;
    transition: all .5s ease-in;
    background: rgba(0, 0, 0, 0.5);
}

.HospiDiscModal {
    border-radius: 4px;
    background: #fff;
    display: none;
    width: 98%;
    margin: 0 auto;
    position: fixed;
    z-index: 1032;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 1px -2px rgba(0,0,0,.2), 0 1px 17px 0 rgba(0,0,0,.14), 0 1px 2px 0 rgba(0,0,0,.12);
}

.HospiDiscDiv img {
    width: 100%;
}

.HospiDiscDiv {
    overflow: scroll;
    height: 75vh;
}

.HospiDiscCrossBtn {
    position: absolute;
    right: 2px;
    top: 2px;
    cursor: pointer;
    padding: 0px 5px;
    border-radius: 5px;
}

.TableDiscount {
    margin-top: 10px;
    border: 1px dashed #91B0FF;
    border-radius: 5px;
    font-size: 10px;
    line-height: 13px;
}

.TableDiscountHeader {
    display: flex;
}

.TableDiscountCol {
    background: #D8E2FF;
    padding: 3px;
    display: flex;
    font-weight: 400;
    align-items: center;
    border-right: 1px solid #CDD9FD;
    border-bottom: 1px solid #CDD9FD;
}

    .TableDiscountCol:first-child {
        width: 43%;
    }

    .TableDiscountCol:nth-child(2) {
        width: 28%;
        text-align: center;
    }

    .TableDiscountCol:nth-child(3) {
        width: 28%;
        text-align: center;
    }

    .TableDiscountCol:last-child {
        width: 13%;
        border-right: 0;
        border-bottom: 0;
        text-align: center;
    }

.TableDiscountBody {
    display: flex;
}

.tableinBodyCol {
    background: #F0F4FF;
    padding: 3px;
    display: flex;
    font-weight: 500;
    align-items: center;
    border-right: 1px solid #CDD9FD;
    border-bottom: 1px solid #CDD9FD;
}

    .tableinBodyCol:first-child {
        width: 43%;
    }

    .tableinBodyCol:nth-child(2) {
        width: 28%;
        display: flex;
        justify-content: center;
    }

    .tableinBodyCol:nth-child(3) {
        width: 28%;
        display: flex;
        justify-content: center;
    }

    .tableinBodyCol:last-child {
        width: 13%;
        display: flex;
        justify-content: center;
        text-align: center;
        border-right: 0;
        border-bottom: 0;
    }

        .tableinBodyCol:last-child a {
            margin-bottom: -25px;
            z-index: 1;
        }
/*InclusionList tooltip end*/

.tableinDivHeader {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    background: #F2F2F2;
    border-radius: 5px 5px 0 0;
}

.tableinDivCol {
    width: 39%;
    padding: 10px 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 11px;
    color: #1D2836;
    line-height: normal;
    text-align: center;
}

    .tableinDivCol img {
        height: 10px;
    }

.spnNotifymsg {
    line-height: 15px;
    color: #0D537C !important;
    padding: 4px;
    /*    background: #DDEFFD;
    border-radius: 4px;*/
    display: flex;
    font-size: 11px;
    align-items: flex-start;
}

.ResidentialDetails img, .NRIDetails img {
    margin-top: 1px;
    width: 12px;
    height: 12px;
}

.tableinDivCol:first-child {
    width: 22%;
}

.tableinDivCol:nth-child(2) {
    width: 39%;
}

.tableinDivCol .floating-select {
    border-bottom: none;
    width: auto;
    font-weight: 400;
    font-size: 12px;
    height: auto;
    color: #1D2836;
}

.pastYearReturn {
    padding-right: 5px;
    font-size: 12px;
    line-height: 23px;
    font-weight: 400;
    color: #1D2836;
}

.tableinDivBody {
    display: flex;
    width: 100%;
    background: #F7F7F7 0% 0% no-repeat padding-box;
    border-radius: 0px 0px 5px 5px;
}

    .tableinDivBody .tableinDivCol {
        font-weight: 600;
        display: flex;
        gap: 4px;
        white-space: nowrap;
    }
/*--------------------Upgrade Plan Css End---------------------*/
/*--------------------Rider Css start---------------------*/
.recommendIcon {
    width: 33px;
    height: 33px;
    border-radius: 68px;
    background-color: #0661ea;
}

.recommendText {
    font-size: 10px;
    font-weight: 500;
    color: #225cff;
    line-height: 16px;
}

.cardFooterBackground {
    background-color: rgba(0, 101, 255, 0.05);
    border-color: rgb(242, 247, 255);
}

.additionalPremiumLabel {
    color: #27313d;
    top: -12px;
    font-size: 11px;
    font-weight: 500;
    position: absolute;
    pointer-events: none;
    line-height: 12px;
}

.additionalPremiumValues {
    font-weight: 600;
    font-size: 14px;
    color: #27313d;
    margin-top: 10px;
}

    .additionalPremiumValues span {
        color: #27313d;
    }

.dobIcon {
    top: 4px;
}

.userTotalAge {
    position: absolute;
    top: 7px;
    background: #e7f1ff;
    right: 0px;
    text-align: center;
    display: block;
    padding: 4px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.17;
    color: #0661ea;
    min-width: 69px;
    height: 22px;
    border-radius: 4px;
    width: fit-content;
}

.annualIncomePostFixLabel {
    position: absolute;
    top: 7px;
    background: #e7f1ff;
    right: 0px;
    text-align: center;
    display: block;
    padding: 4px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.17;
    color: #0661ea;
    width: auto;
    height: 22px;
    border-radius: 4px;
}

.editIcon ~ .floating-input {
    pointer-events: none;
    cursor: none;
}

    .editIcon ~ .floating-input.animateBorder ~ .border-bottom-animation.left {
        background: #0661ea;
        width: 100%;
        left: 0;
    }

    .editIcon ~ .floating-input.animateBorder {
        pointer-events: initial;
        cursor: pointer;
    }

.secondPrdTitle {
    /*display: flex;*/
    width: 98%;
    color: #27313d;
    margin-right: 2%;
}

.secondPrdLogo {
    width: 130px;
    display: flex;
    justify-content: flex-end;
    border: 1px dashed #FCD2D0;
    border-radius: 4px;
    padding: 6px;
    box-shadow: rgba(144, 144, 144, 0.16) 0 0 51px;
    height: 100%;
}

    .secondPrdLogo img {
        width: 100%;
    }

/*--------------------Rider Css End---------------------*/
/*--------------------checkoutTermsCondition css start----------*/
.termsDetails {
    background-color: #FFF5DB;
}

.termsDetails {
    color: #27313D;
    font-size: 12px;
}

.termsPayDetail {
    color: #27313D;
}

.checkoutTermsCondition .checkboxLabel .CheckBoxTick ~ .radioBtnAnswerTxt {
    font-size: 12px;
    font-weight: 500;
    color: #27313d;
}

.checkoutTermsCondition .checkBox input[type="checkbox"]:checked ~ .radioBtnAnswerTxt {
    font-weight: 500;
    color: #27313d;
}

.checkoutTermsCondition input[type="checkbox"]:checked:disabled + .CheckBoxTick {
    opacity: 0.5;
}
/*--------------------checkoutTermsCondition css End----------*/
/*---------------------Know Your PopUp Css Start--------------*/
.knowYourPlanHeader {
    box-shadow: 0 1px 5px 0 #eaeaea;
    background-color: #fff;
    position: fixed;
    width: 100%;
    z-index: 2;
}

    .knowYourPlanHeader + .formprogressBar {
        margin-top: 80px;
    }

.knowYourPopUp {
    width: 100%;
    height: 100%;
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 200;
    background: #fff;
    transition: all .3s linear;
    z-index: 1031;
    text-align: center;
}

.progressbar {
    width: 96%;
    margin: 0 auto;
    display: flex;
}

    .progressbar li {
        list-style-type: none;
        width: 100%;
        float: left;
        font-size: 12px;
        position: relative;
        text-align: center;
        color: #7d7d7d;
    }

        .progressbar li.completed:after {
            background-color: #27313d;
        }

        .progressbar li:before {
            position: relative;
            z-index: 1;
            width: 13px;
            height: 13px;
            content: "";
            counter-increment: step;
            line-height: 30px;
            border: none;
            display: block;
            text-align: center;
            margin: 0px auto 10px auto;
            border-radius: 50%;
            border: 1px solid #d0d5dd;
            background: #fff;
        }

        .progressbar li:after {
            width: 100%;
            height: 1px;
            content: '';
            position: absolute;
            background-color: #e1e1e1;
            top: 6px;
            left: 0%;
            z-index: -1;
        }
        /*.progressbar li:first-child:after{content: none;}*/
        .progressbar li.active:before {
            background: #fff;
            color: #fff;
            border: solid 1px #0661ea;
            animation: glowing 1s infinite;
            -webkit-box-shadow: 0 0 2px 3px #8db7f7;
            -moz-box-shadow: 0 0 2px 3px #8db7f7;
            -o-box-shadow: 0 0 2px 3px #8db7f7;
            box-shadow: 0 0 2px 3px #8db7f7;
        }

@keyframes glowing {
    0% {
        box-shadow: 0 0 0 0 #8db7f7;
    }


    100% {
        box-shadow: 0 0 0 7px rgba(141, 183, 247, 0.09)
    }
}

.progressbar li span {
    font-size: 10px;
    font-weight: 500;
    line-height: 1.1;
    color: #27313d;
}

.progressbar li.active span {
    color: #0661ea;
    font-weight: 500;
}

.progressbar li.active em {
    content: "";
    width: 100%;
    background-color: #0661ea;
    height: 1px;
    display: inline-block;
    position: absolute;
    top: 15px;
    right: -48%;
    z-index: 1;
}

.progressbar li.active:last-child em {
    content: none;
    border: none;
}

.progressbar li.half em {
    content: "";
    width: 100%;
    display: inline-block;
    position: absolute;
    top: 6px;
    right: 0;
    z-index: 0;
}

.progressbar li.active.completed em {
    border-color: #27313d;
}

.progressbar li.completed:before {
    background-color: #27313d;
    box-shadow: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progressbar li:not(.completed) a, .progressbar li:not(.completed) {
    cursor: default;
}

.progressbar li.completed .tickIcon:before {
    content: '';
    position: absolute;
    transform: scale(0);
    transition: all 0.2s ease;
    z-index: 1;
    right: 0;
    left: 0;
    margin: auto;
    top: 3px;
    width: 3px;
    justify-content: center;
    height: 6px;
    align-items: center;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.progressbar li.active.completed span {
    color: #27313d;
}

.knowYourPopUp.show {
    opacity: 1;
    visibility: visible;
}

.PlanPdfDownloadBrochure {
    font-size: 12px;
    font-weight: 500;
    line-height: 25px;
    border-radius: 20px;
    color: #27313d;
    padding: 0px 10px;
    display: inline-block;
    background: #E5E8EB;
}

    .PlanPdfDownloadBrochure:hover {
        color: #27313D;
    }

.opaquerLayer {
    position: fixed;
    background: rgba(255,255,255,1);
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
    opacity: 0;
    transition: all .3s;
    height: 100%;
    visibility: hidden;
    z-index: -1;
}

    .opaquerLayer.show {
        opacity: 1;
        visibility: visible;
    }

.downloadBrochure, .aCISBrochure {
    border:;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.33;
    height: 26px;
    color: #0661ea;
    display: flex;
    align-items: center;
    padding: 0 5px;
    /*min-width: 180px;*/
    width: auto;
    justify-content: center;
    width: 100%;
    border-radius: 4px;
}

a.downloadBrochure:hover {
    color: #27313d;
}

.downloadBrochure > img {
    margin-right: 5px;
    margin-top: 0;
}

.knowYourPlanCloseBtn {
    padding: 0px 6px;
    line-height: 22px;
    cursor: pointer;
    width: 26px;
    border-radius: 4px;
}

.knowYourPlanBackArrow {
    border: none;
    padding: 0px 6px;
    line-height: 22px;
    cursor: pointer;
}

.planInfoTitle {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.44;
    color: #27313d;
    margin: 0;
}

.planInfoSubTitle {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.86;
    color: #27313d;
    margin: 0;
    line-height: 21px;
}

    .planInfoSubTitle sup {
        font-size: 10px;
    }

.planInfoSublargeTitle {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.86;
    color: #27313d;
}

.planInfoPara {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.83;
    color: #27313d;
    line-height: 22px;
    margin: 0;
}

    .planInfoPara.font-size-12 {
        font-size: 10px;
    }

.verticalScroll {
    height: 90%;
    overflow-y: scroll;
    overflow-x: hidden;
}

.bottomFixedHeight {
    height: 110px;
}

.knowMoreToolTipRight {
    background-color: #4b5b6e;
    color: #fff;
    padding: 4px 18px;
    position: relative;
    font-size: 12px;
    font-weight: 500;
    color: #fafafc;
    display: inline-block;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.knwoMoreRightArrow {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 14px;
    right: -5px;
    box-sizing: border-box;
    border: 10px solid black;
    border-color: transparent #4b5b6e #4b5b6e transparent;
    transform-origin: 0 0;
    transform: rotate(-45deg);
}

.stageText {
    font-size: 12px;
    font-weight: 500;
}

.paidBenefit {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.83;
}

.borderLine {
    background-color: #ccc;
    height: 1px;
    flex-grow: 1;
}

.stepsCount {
    font-size: 10px;
    font-weight: 500;
    line-height: 2.2;
}

    .stepsCount span {
        font-size: 14px;
        font-weight: 600;
        color: #27313d;
    }

.criticalList {
    font-size: 12px;
    font-weight: 500;
    color: #0661ea;
}

.demoVideo {
    cursor: pointer;
}

.twoMinVideoText {
    position: absolute;
    top: 5px;
    left: 10px;
    font-size: 12px;
    font-weight: 500;
    line-height: 2.17;
    text-align: left;
    color: #ffffff;
}

.autoPlayIcon {
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
}

.videoinPoPUp {
    position: fixed;
    width: 95%;
    top: 0;
    padding: 35px 8px 8px;
    background-color: #fff;
    z-index: 1033;
    margin: auto;
    top: 50%;
    /* height: 92%; */
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 1px 13px 0 rgba(76, 90, 111, 0.19);
    border-top: 8px solid #294476;
    border-radius: 16px;
}

.videoopaquerLayer {
    background-color: #0817339e;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    z-index: 1032;
}

.crossBtn {
    width: 26px;
    height: 26px;
    position: absolute;
    top: -35px;
    right: 0;
    border: 2px solid #fff;
    border-radius: 4px;
}

.planInfoTickSubPoints {
    width: 20px;
    height: 20px;
    border: 2px solid #cacccd;
    border-radius: 50%;
    margin-top: 2px;
    position: relative;
}

    .planInfoTickSubPoints:before {
        content: '';
        position: absolute;
        transform: scale(0);
        transition: all 0.2s ease;
        z-index: 1;
        right: 0px;
        left: 0;
        margin: auto;
        top: 3px;
        width: 5px;
        justify-content: center;
        height: 8px;
        align-items: center;
        border-right: 2px solid #cacccd;
        border-bottom: 2px solid #cacccd;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

.contentTableDiv table {
    width: 100%;
    width: 100% !important;
}

.contentTableDiv tr td {
    border: 1px solid #d0d5dd;
    padding: 10px 10px 7px 10px;
    color: #27313d;
    line-height: 18px;
}

.contentTableDiv thead tr td {
    background: #fafafa;
    font-weight: 500;
}

.contentTableDiv tbody tr td {
}

.FDlogo {
    width: 100px;
    border-radius: 10px;
}

.kypTabsBox {
    width: 88%;
    margin: auto;
}

.FDlogo img {
    width: 90px;
    max-height: 30px;
    text-align: center;
    margin: 0;
}

.FDTabsDiv {
    width: 100%;
    text-align: left;
    padding: 0 0px 0;
}

.TabWrap {
    width: 100%;
    border-radius: 0;
    margin-bottom: 20px;
    position: relative;
    background: #fafafa;
}

    .TabWrap .tab {
        width: 100%;
        /*margin-left: 3%;*/
        display: flex;
        justify-content: center;
    }

    .TabWrap .tabinations {
        /*background: url('../img/TabDeactive.png') center center/contain no-repeat;*/
        height: 45px;
        /* width: 46%; */
        position: relative;
        text-align: left;
        /* padding-left: 8%; */
        font-size: 11px;
        line-height: 50px;
        border: 0;
        box-shadow: none;
        cursor: pointer;
        color: #919191;
        font-weight: 400;
        margin: 0 10px;
    }

    .TabWrap .tab .tabinations.active {
        /* background: url('../img/TabActive.png') center center/contain no-repeat; */
        /* position: relative; */
        /* z-index: 9; */
        font-weight: 600;
        color: #3c3c3c;
        color: #0661ea;
        border-bottom: 2px solid #0661ea;
    }

    .TabWrap:after {
        position: absolute;
        content: "";
        height: 15px;
        /* background-color: #eae8e9; */
        width: 100%;
        left: 0;
        bottom: -7px;
        border-top-left-radius: 36px;
        border-top-right-radius: 36px;
        z-index: 99;
    }

    .TabWrap .tab .tabinations:last-child {
        /* padding-left: 5%; */
    }

    .TabWrap .tab .tabinations:nth-child(2) {
        /* right: 95px; */
    }

ul.risk_ul {
    padding-right: 0px;
    /* margin-bottom: 11px; */
    display: flex;
    align-items: center;
    flex: 1 1;
    justify-content: flex-end;
}

    ul.risk_ul li {
        font-size: 9px;
        font-weight: 400;
        display: inline-block;
        /* line-height: 40px; */
        margin-right: 0;
        text-align: left;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
    }

        ul.risk_ul li span.risk_span {
            width: 7px;
            height: 7px;
            /* float: left; */
            margin: 3px 5px 0 5px;
            border-radius: 100%;
            display: flex;
            flex-shrink: 0;
        }


span.high_risk {
    background: #e56a3b;
}

span.moderate_risk {
    background: #f0ce00;
}

span.low_risk {
    background: #7659b0;
}

.fundTableHead, .fundTableBody {
    display: flex;
    align-items: center;
    border-top: 1px solid #e7eef0
}

.fundTableCol {
    color: #4c4c4c;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 2px;
    text-align: center;
    /*height: 20px;*/
}

.fundTableBody .fundTableCol {
    font-size: 11px;
    padding: 8px 2px;
    font-weight: 500;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.fundTableBody .customfundtable1 {
    text-align: left;
    padding-left: 15px;
    font-weight: 500;
    position: relative;
    font-size: 12px;
}

.fundTableBodyBorder:first-child .rider-desc {
    bottom: initial;
    top: 15px;
}

.fundtableCol1Width {
    text-align: left;
    padding-left: 15px;
    width: 40%;
    position: relative;
}

.fundtableCol2Width {
    width: 20%;
}

.fundtableCol3Width {
    width: 20%;
}

.fundtableCol4Width {
    width: 20%;
}

.customfundtable2 {
    padding-right: 11px;
}

.customfundtable3 {
    padding-right: 16px;
}

.customfundtable4 {
    padding-right: 22px;
}

.fundTableHead .sub, .fundTableBody .sub {
    color: #8a8989;
    font-size: 12px;
    display: block;
    text-align: center;
    font-weight: 400 !important;
}

.fundPerformanceScroll {
    /*max-height: 235px;
    overflow-y: auto;
    overflow-x: hidden;*/
    width: 100%;
}

.fundTableBody {
    padding: 16px 8px;
}

.fund_inner img.download_icon {
    width: 14px;
    float: none;
    margin: 0;
    left: 2px;
    cursor: pointer;
    position: relative;
    top: 2px;
}

.nfo_fund {
    background: #FCF2EA;
    border-radius: 4px;
    padding: 4px 8px 4px 5px;
    /* top: -9px;*/
    left: 0;
    bottom: inherit;
    font-size: 9px;
    color: #E36700;
    right: inherit;
    display: flex;
    margin: 0;
    margin-bottom: 5px;
    /*position: absolute;*/
    vertical-align: bottom;
    width: -moz-fit-content;
    width: fit-content;
    align-items: center;
    justify-content: center;
}

.fundTableCol .nfo_fund {
    position: absolute;
    top: -16px;
}

.nfo_fund .anibox {
    perspective: 800px;
    transition: all .3s ease 0s;
    display: flex;
    align-items: center;
    padding: 0 4px 0 0;
}

    .nfo_fund .anibox .ani_boxcard {
        cursor: default;
        transform-style: preserve-3d;
        transition: transform .4s ease 0s;
        width: 14px;
        animation: giro 1s infinite;
        position: relative;
        display: inline-block;
        font-style: normal;
        vertical-align: middle;
    }

        .nfo_fund .anibox .ani_boxcard img {
            width: 14px;
            height: 14px;
            vertical-align: middle;
        }

@keyframes giro {
    0% {
        transform: rotateY(180deg);
    }

    100% {
        transform: rotateY(0);
    }
}


.rider-desc {
    position: absolute;
    z-index: 1;
    display: none;
    background: #27313d;
    padding: 10px;
    color: #fff;
    transition: all .3s ease;
    border-radius: 3px;
    font-size: 12px;
    text-transform: initial;
    margin: 0;
    left: -13px;
    font-style: normal;
    bottom: 20px;
    width: 250px;
    font-weight: 400;
    line-height: 18px;
}

em.fund-title:hover .rider-desc {
    display: block;
}

.fund-title i {
    position: relative;
    right: 0;
    cursor: pointer;
    display: inline-block;
    margin-left: 5px;
    height: 10px;
    top: 0;
    width: 12px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iNTEyIiBoZWlnaHQ9IjUxMiIgdmlld0JveD0iMCAwIDQzOC41MzMgNDM4LjUzMyIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNDM4LjUzMyA0MzguNTMzOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgY2xhc3M9IiI+PGc+PGc+Cgk8cGF0aCBkPSJNNDA5LjEzMywxMDkuMjAzYy0xOS42MDgtMzMuNTkyLTQ2LjIwNS02MC4xODktNzkuNzk4LTc5Ljc5NkMyOTUuNzM2LDkuODAxLDI1OS4wNTgsMCwyMTkuMjczLDAgICBjLTM5Ljc4MSwwLTc2LjQ3LDkuODAxLTExMC4wNjMsMjkuNDA3Yy0zMy41OTUsMTkuNjA0LTYwLjE5Miw0Ni4yMDEtNzkuOCw3OS43OTZDOS44MDEsMTQyLjgsMCwxNzkuNDg5LDAsMjE5LjI2NyAgIGMwLDM5Ljc4LDkuODA0LDc2LjQ2MywyOS40MDcsMTEwLjA2MmMxOS42MDcsMzMuNTkyLDQ2LjIwNCw2MC4xODksNzkuNzk5LDc5Ljc5OGMzMy41OTcsMTkuNjA1LDcwLjI4MywyOS40MDcsMTEwLjA2MywyOS40MDcgICBzNzYuNDctOS44MDIsMTEwLjA2NS0yOS40MDdjMzMuNTkzLTE5LjYwMiw2MC4xODktNDYuMjA2LDc5Ljc5NS03OS43OThjMTkuNjAzLTMzLjU5NiwyOS40MDMtNzAuMjg0LDI5LjQwMy0xMTAuMDYyICAgQzQzOC41MzMsMTc5LjQ4NSw0MjguNzMyLDE0Mi43OTUsNDA5LjEzMywxMDkuMjAzeiBNMTgyLjcyNyw1NC44MTNjMC0yLjY2NiwwLjg1NS00Ljg1MywyLjU3LTYuNTY1ICAgYzEuNzEyLTEuNzExLDMuOTAzLTIuNTcsNi41NjctMi41N2g1NC44MmMyLjY2MiwwLDQuODUzLDAuODU5LDYuNTYxLDIuNTdjMS43MTEsMS43MTIsMi41NzMsMy44OTksMi41NzMsNi41NjV2NDUuNjgyICAgYzAsMi42NjQtMC44NjIsNC44NTQtMi41NzMsNi41NjRjLTEuNzA4LDEuNzEyLTMuODk4LDIuNTY4LTYuNTYxLDIuNTY4aC01NC44MmMtMi42NjQsMC00Ljg1NC0wLjg1Ni02LjU2Ny0yLjU2OCAgIGMtMS43MTUtMS43MDktMi41Ny0zLjktMi41Ny02LjU2NFY1NC44MTN6IE0yOTIuMzU5LDM1Ni4zMDljMCwyLjY2Mi0wLjg2Myw0Ljg1My0yLjU3LDYuNTYxYy0xLjcwNCwxLjcxNC0zLjg5NSwyLjU3LTYuNTYzLDIuNTcgICBIMTU1LjMxN2MtMi42NjcsMC00Ljg1NC0wLjg1Ni02LjU2Ny0yLjU3Yy0xLjcxMi0xLjcwOC0yLjU2OC0zLjg5OC0yLjU2OC02LjU2NHYtNDUuNjgyYzAtMi42NywwLjg1Ni00Ljg1MywyLjU2OC02LjU2NyAgIGMxLjcxMy0xLjcwOCwzLjkwMy0yLjU3LDYuNTY3LTIuNTdoMjcuNDF2LTkxLjM1OGgtMjcuNDFjLTIuNjY3LDAtNC44NTMtMC44NTUtNi41NjctMi41NjhjLTEuNzEyLTEuNzExLTIuNTY4LTMuOTAxLTIuNTY4LTYuNTY3ICAgdi00NS42NzljMC0yLjY2NiwwLjg1Ni00Ljg1MywyLjU2OC02LjU2N2MxLjcxNS0xLjcxMywzLjkwNS0yLjU2OCw2LjU2Ny0yLjU2OGg5MS4zNjdjMi42NjIsMCw0Ljg1MywwLjg1NSw2LjU2MSwyLjU2OCAgIGMxLjcxMSwxLjcxNCwyLjU3MywzLjkwMSwyLjU3Myw2LjU2N3YxNDYuMTc5aDI3LjQwMWMyLjY2OSwwLDQuODU5LDAuODU1LDYuNTcsMi41NjZjMS43MDQsMS43MTIsMi41NjYsMy45MDEsMi41NjYsNi41Njd2NDUuNjgzICAgSDI5Mi4zNTl6IiBkYXRhLW9yaWdpbmFsPSIjMDAwMDAwIiBjbGFzcz0iYWN0aXZlLXBhdGgiIHN0eWxlPSJmaWxsOiM1RDYwNjgiIGRhdGEtb2xkX2NvbG9yPSIjNWQ2MDY4Ij48L3BhdGg+CjwvZz48L2c+IDwvc3ZnPg==);
    background-repeat: no-repeat;
    background-size: 10px;
}

.fundTableBody .fundSize {
    color: #7f7e7e;
    font-size: 11px;
    font-weight: 400;
}

.fundSize_1 {
    display: flex;
    align-items: center;
}

    .fundSize_1 span:not(.rupee) {
        float: left;
        color: #7f7e7e;
        font-size: 13px;
        margin: 0 5px 0 0;
    }

    .fundSize_1 span.a_fund {
        color: #38a050;
    }

        .fundSize_1 span.a_fund img {
            width: 9px;
            margin: -2px 4px 0 0;
            opacity: 1;
        }

.fundTableBody span.risk_span {
    position: absolute;
    left: -11px;
    width: 8px;
    height: 8px;
    border-radius: 50px;
    top: -2px;
    margin: 15px 5px 0 12px;
}

.GreenBorder {
    position: relative;
    display: inline-block;
    padding: 2px 5px;
    color: #38a518;
    font-weight: 600;
    border: 1px dashed #38a518;
    border-radius: 4px;
}

    .GreenBorder .offer {
        width: 45px;
        position: absolute;
        max-height: initial;
        top: -33px;
        left: 7%;
    }

.BlueBorder .blueOffer {
    width: 45px;
    position: absolute;
    max-height: initial;
    top: -33px;
    left: 7%;
}

.BlueBorder {
    position: relative;
    display: inline-block;
    padding: 2px 5px;
    color: #1572cf;
    font-weight: 600;
    border: 1px dashed #1572cf;
    border-radius: 4px;
}

    .BlueBorder span {
        color: #1572cf;
    }

.fundTableBodyBorder {
    border: 1px solid #ededed;
    margin-bottom: 8px;
    padding: 4px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 4px -2px #00000014, 0 4px 8px -2px #0000000a;
    background: #ffffff;
    transition: transform .8s;
}

    .fundTableBodyBorder:hover {
        background: #eff6fe;
    }

.fund-title {
    position: relative;
}

.dataSource {
    width: 100%;
    float: left;
    margin: 0 0 10px;
}

    .dataSource p {
        font-weight: 400;
        margin-bottom: 0;
        font-size: 12px;
        text-align: l;
    }

    .dataSource ul {
        width: 100%;
        float: left;
        margin: 0;
        display: table;
        padding: 0;
    }

        .dataSource ul li {
            display: block;
            vertical-align: middle;
            text-align: left;
            font-size: 12px;
            padding: 4px 0;
        }

            .dataSource ul li img {
                max-height: 40px;
            }

            .dataSource ul li:nth-child(2) {
                width: 100%;
                padding: 0;
                font-size: 12px;
                color: #000;
                font-weight: 500;
            }

            .dataSource ul li button {
                width: 128px;
                text-align: center;
                height: 40px;
                position: relative;
                font-size: 14px;
                font-weight: 600;
                border: 0;
                border-radius: 4px;
                background: #fd4705;
                color: #fff;
                padding: 0 7px 0 0;
                cursor: pointer;
                margin: 4px 0 7px;
            }

            .dataSource ul li strong {
                font-weight: 600;
                color: #000;
            }

            .dataSource ul li:last-child {
                /*display: none;*/
            }

#KYPFundPerformance {
    margin: 0;
    border-radius: 4px;
    border: 1px solid #e9f2ff;
}


/*--------------------Know Your PopUp Css End----------------------*/
/*--------------------19 Crtical Illness PopUp Css End----------------------*/
.criticalIllnessPopUp {
    position: fixed;
    z-index: 1050;
    width: 100%;
    height: 100%;
    top: 0;
    background: #fff;
    overflow: auto;
}

.criticalIllnessHeader {
    background-color: #fafafa;
}

.criticalList {
    background: #fff;
}

    .criticalList ul {
        counter-reset: list;
    }

        .criticalList ul li {
            font-size: 12px;
            font-weight: 500;
            line-height: 2.5;
            text-align: left;
            color: #27313d;
        }

    .criticalList li:before {
        counter-increment: list;
        content: counter(list);
        margin-right: 10px;
    }

.criticalillnessTitle {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.44;
    text-align: center;
    color: #27313d;
    margin: 0;
}

.criticalIllnesscloseBtn {
    position: absolute;
    right: 20px;
    top: 10px;
    cursor: pointer;
}
/*--------------------19 Crtical Illness  PopUp Css End----------------------*/
/*---------------------Fixed Header Css Start-------------------------------*/
.fixedHeader {
    position: static;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    /*animation: smoothScroll 1s forwards;*/
}

@keyframes smoothScroll {
    0% {
        transform: translateY(-40px);
    }

    100% {
        transform: translateY(0px);
    }
}
/*---------------------Fixed Header Css End-------------------------------*/

/*-----------------Custom Select Dropdown Css Start---------------------*/
.custom-select {
    width: 100%;
}

    .custom-select .customDropDown {
        top: auto;
        transform: translate(-50%, 0);
        width: 100%;
        background: #fff;
        padding: 24px 16px 16px 16px;
        height: auto;
        border-top-right-radius: 16px;
        border-top-left-radius: 16px;
        border-top: 8px solid #294476;
        bottom: 0;
    }

.customSelectLabel {
    color: #27313d;
    font-size: 10px;
    font-weight: 500;
    position: absolute;
    pointer-events: none;
    left: 0px;
    top: -10px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.blurBg {
    display: none;
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1031;
    -webkit-transition: all .5s ease-in;
    transition: all .5s ease-in;
    background: rgba(0, 0, 0, 0.5);
}

.cityBlurBg {
    display: none;
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1031;
    -webkit-transition: all .5s ease-in;
    transition: all .5s ease-in;
    background: rgba(0, 0, 0, 0.5);
}

.customDropDown, .cityCustomDropDown {
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    width: 90%;
    margin: 0 auto;
    position: fixed;
    z-index: 3;
    max-height: 70vh;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 1px -2px rgba(0,0,0,.2), 0 1px 17px 0 rgba(0,0,0,.14), 0 1px 2px 0 rgba(0,0,0,.12);
}

    .customDropDown ul, .cityCustomDropDown ul {
        max-height: 60vh;
        overflow-y: auto;
        border-radius: 4px;
        background: #fff;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0px;
    }

    .cityCustomDropDown ul {
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
    }

.customValue {
    display: block;
    position: relative;
}

    .customValue input {
        display: block;
        width: 100%;
        border: none;
        background: #f7f7f7;
        height: 54px;
        padding: 20px 20px 13px 20px;
    }

.cityInput {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

/*.okBtn {
    position: absolute;
    right: 5px;
    top: 5px;
    cursor: pointer;
    border-radius: 4px;
    padding: 15px 10px;
    font-size: 10px;
    color: #27313d;
    font-weight: 500;
    z-index: 2;
}*/

.searchIcon {
    position: absolute;
    left: 20px;
    top: 20px;
    pointer-events: none;
    border-radius: 4px;
    font-size: 10px;
    color: #27313d;
    font-weight: 500;
}

.customValue input.cityOnFocus, .customValue input.cityOnFocus:focus {
    padding-left: 50px;
}

.cityInput .floating-input ~ .floatingLabelText {
    top: 20px;
}

.cityInput .floating-input:focus ~ .floatingLabelText, .cityInput .floating-input.has-value ~ .floatingLabelText {
    opacity: 0;
}

.customValue input.cityOnFocus {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.customValue input:focus {
    outline: none;
}

.customDropDown.dropDownAnimation, .cityCustomDropDown.dropDownAnimation {
    opacity: 1;
    z-index: 1032;
    visibility: visible;
}

.customDropDown li {
    height: auto;
    cursor: pointer;
    padding: 15px 20px;
    font-weight: 500;
    border-bottom: 1px solid #d0d5dd;
    font-size: 16px;
    color: #27313d;
    background: #fff;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    position: relative;
}

.cityCustomDropDown li {
    height: auto;
    cursor: pointer;
    font-weight: 500;
    border-bottom: 1px solid #d0d5dd;
    font-size: 16px;
    color: #27313d;
    background: #fff;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    position: relative;
}

    .cityCustomDropDown li > a {
        font-weight: 500;
        font-size: 16px;
        color: #27313d;
        padding: 15px 20px;
        display: block;
        position: relative;
        z-index: 1;
    }

    .customDropDown li.active, .cityCustomDropDown li.active a {
        font-weight: 600;
        color: #27313d;
    }


    .customDropDown li:before, .cityCustomDropDown li:before {
        content: "";
        position: absolute;
        right: 20px;
        top: 17px;
        display: block;
        width: 20px;
        height: 20px;
        margin-top: 0px;
        border: 2px solid #27313d;
        border-radius: 100%;
        -webkit-tap-highlight-color: transparent;
    }

    .customDropDown li.active:before, .cityCustomDropDown li.active:before {
        border-color: #225cff;
    }

    .customDropDown li.active:after, .cityCustomDropDown li.active:after {
        content: '';
        position: absolute;
        top: 22px;
        right: 25px;
        width: 10px;
        height: 10px;
        border-radius: 100%;
        background: #225cff;
        opacity: 1;
        pointer-events: none;
    }

    .customDropDown li:last-child, .cityCustomDropDown li:last-child {
        border-bottom: none;
    }



.selectLabel {
    position: relative;
    font-size: 14px;
    padding: 0;
    display: block;
    width: 100%;
    height: 40px;
    background-color: transparent;
    border: none;
    font-weight: 600;
    color: #27313d;
    padding-right: 5px;
    cursor: pointer;
}

    .selectLabel[disabled] {
        cursor: no-drop;
        opacity: 0.45;
    }

    .selectLabel > span {
        font-weight: 600;
        color: #27313d;
    }

    .selectLabel:after {
        content: "";
        /* position: absolute; */
        right: 17px;
        top: 14px;
        width: 9px;
        height: 9px;
        border: solid #cacccd;
        border-width: 0 2px 2px 0;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        margin-left: auto;
        margin-top: -5px;
        margin-right: 6px;
    }
/*-----------------Custom Select Dropdown Css End---------------------*/
/*-------------------Process Validation Css Start-------------*/
.processValidationTitle {
    color: #27313d;
    font-weight: 600;
    font-size: 18px;
    border-bottom: 1px solid #d0d5dd;
}

.processValidationInfoBox {
}

.nameTitle {
    color: #27313d;
    font-weight: 600;
    font-size: 16px;
}

.infoPara {
    font-size: 12px;
    color: #27313d;
}
/*----------------Popup css starts----------------*/
/*************Feature & Benefit css start*************/
.CoronaBlurBg {
    position: fixed;
    z-index: 1050;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    background: #27313df5;
    overflow: auto;
    margin: 0px auto;
    text-align: center;
    border-radius: 4px;
}

.coronaFeatures {
    opacity: 1;
    visibility: visible;
    z-index: 1051;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0px auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* overflow-y: auto; */
    border-radius: 4px;
    background: #fff;
}

    .coronaFeatures .criticalIllnessHeader {
        border-bottom: 2px solid #70707026;
    }

.coronaFeatureCloseBtn {
    position: absolute;
    right: 10px;
    top: 16px;
    cursor: pointer;
    width: 10px;
    height: 10px;
}

    .coronaFeatureCloseBtn img {
        width: 100%;
    }

.coronaFeatureTabDetails {
    /* margin-top: 70px; */
    background: #fff;
    padding-left: 20px;
    padding-top: 20px;
    padding-right: 20px;
    overflow-y: auto;
    height: 87%;
}

.coronaFeatureDetails ul {
    display: flex;
    margin: 0 20px 0 10px;
    /* border-bottom: 2px solid #ccc; */
    justify-content: flex-start;
    text-align: left;
}

    .coronaFeatureDetails ul li {
        display: flex;
        width: auto;
        justify-content: flex-start;
        font-size: 14px;
    }

.secondPrdMaxLogo {
    width: 130px;
    border: none;
}

.coronaFeatureDetails ul li {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.63;
    text-align: center;
    color: #27313d;
    align-items: center;
    cursor: pointer;
    padding: 20px 6px;
    /*border-bottom: 2px solid #ccc;*/
}

    .coronaFeatureDetails ul li.active {
        color: #0661ea;
        border-bottom: 2px solid #0661ea;
    }

.detailsIcons {
}

.featureDetailHeading {
    font-size: 12px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.86;
    letter-spacing: normal;
    text-align: left;
    color: #27313d;
    margin: 0;
}

.featureDetailLargeHeading {
    font-size: 14px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.86;
    letter-spacing: normal;
    text-align: left;
    color: #27313d;
    margin-top: 10px;
}

.featureDetailOfferHeading {
    font-size: 12px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.86;
    letter-spacing: normal;
    text-align: left;
    color: #27313d;
    padding-top: 10px;
    margin: 0;
}

.notCoveredHeading {
    font-size: 14px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.86;
    letter-spacing: normal;
    text-align: left;
    color: #27313d;
    margin: 22px 0 0;
}

.featureDetailPara {
    font-size: 11px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.8;
    letter-spacing: normal;
    text-align: left;
    /*color: #27313d;*/
    margin: 5px 0;
}

.accordianContentTitle {
    font-size: 11px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.17;
    letter-spacing: normal;
    text-align: left;
    color: #27313d;
    margin: 0;
    margin-bottom: 0;
    margin-top: 20px;
}

.accordianContentPara {
    font-size: 11px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 2;
    letter-spacing: normal;
    text-align: left;
    color: #27313d;
}

.featureTip {
    font-size: 10px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.17;
    letter-spacing: normal;
    text-align: left;
    color: #0661ea;
}

    .featureTip strong {
        font-weight: 700;
        color: #0661ea;
    }

.accordianList li {
    display: flex;
    font-size: 12px;
    line-height: 2.17;
    text-align: left;
    color: #27313d;
}

    .accordianList li span {
        font-weight: 700;
        margin-right: 5px;
    }

.featuresTabDetailsInfo {
    width: 100%;
    border-bottom: 1px solid #70707026;
    padding: 16px 50px 16px 0;
    position: relative;
    line-height: 24px;
    margin-left: 18px;
    position: relative;
}

.featuresTabDetailsIcons {
    padding-top: 19px;
}

.detailsIcons {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: #fafafa;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sourceBy {
    font-size: 10px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.17;
    letter-spacing: normal;
    text-align: left;
    color: #27313d;
}

.featuresHosipitalList {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    justify-content: space-between;
}

    .featuresHosipitalList li {
        border-bottom: 1px solid #70707026;
        padding: 10px 0;
        display: flex;
        align-items: center;
        width: 100%;
        font-size: 12px;
        line-height: 2;
        text-align: left;
        color: #27313d;
    }

/*.featuresHosipitalList li span {
            color: #27313d;
        }*/

.claimProcess ul.featureClaimList {
    margin-bottom: 8px;
    list-style-type: disc;
    padding-left: 17px;
}

    .claimProcess ul.featureClaimList li {
        list-style-type: disc;
    }

.claimProcess .featureClaimList li ul {
    list-style-type: circle;
    padding-left: 40px;
    margin-top: 8px;
}

    .claimProcess .featureClaimList li ul li {
        list-style-type: circle;
    }

.featureClaimList {
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 2;
    letter-spacing: normal;
    text-align: left;
    color: #27313d;
}
/*************Feature & Benefit css end*************/
/*----------------Popup css end----------------*/
.icon-arrow-back {
    margin-top: -1px;
    width: 14px;
}

.icon-download-black {
    filter: brightness(0) saturate(100%) invert(33%) sepia(13%) saturate(934%) hue-rotate(177deg) brightness(97%) contrast(87%);
    min-width: 12px;
}

.icon-grey-scale {
    filter: grayscale(1);
}
/*-----------------Accordian css start-----------*/
/*----- Accordion -----*/
.accordion,
.accordion * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.accordion {
    overflow: hidden;
    /*box-shadow: 0px 1px 3px rgba(0,0,0,0.25);
    border-radius: 3px;
    background: #f7f7f7;*/
}

/*----- Section Titles -----*/
.accordion-section-title {
    width: 100%;
    /* padding: 15px; */
    display: block;
    /* border-bottom: 1px solid #1a1a1a; */
    /* background: #333; */
    transition: all linear 0.15s;
    /* font-size: 1.200em; */
    /* text-shadow: 0px 1px 0px #1a1a1a; */
    /* color: #fff;*/
    position: relative;
}

/*.accordion-section-title.active,
    .accordion-section-title:hover {
        background: #4c4c4c;
        text-decoration: none;
    }*/
/*.accordion-section:last-child .accordion-section-title {
    border-bottom: none;
}*/
/*----- Section Content -----*/
.accordion-section-content {
    /*padding: 15px;*/
    display: none;
}

.accordion-section-title:after {
    content: "";
    border: solid #253858;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    position: absolute;
    right: -38px;
    transition: all .3s ease-in;
    top: 50%;
    margin-top: -5px;
}

.accordion-section-title.active:after {
    transform: rotate(-135deg);
    margin-top: -2px;
}

.customValueSelect {
    position: absolute;
    right: 54px;
    top: 11px;
    font-size: 12px;
    font-weight: 500;
    background-color: #eee;
    background-position: 91%;
    border: none;
    padding: 8px 27px 8px 8px;
    border-radius: 8px;
    width: auto;
    height: auto;
}
/*-----------------Accordian css end-------------*/
@media only screen and (max-width: 375px) {
    .productLogo .productLogoTop > img {
        width: 110px;
    }
}

@media only screen and (max-width: 360px) {
    .secondPrdLogo {
        width: 100px;
    }

    .downloadBrochure {
        font-size: 11px;
        padding: 0 2px;
        font-weight: 500;
    }

        .downloadBrochure > img {
            width: 10px;
        }

    .coronaFeatureDetails ul li {
        font-size: 10px;
        padding: 20px 6px;
    }

    .pageNumber5 .smallPara a {
        font-size: 11px;
    }
}

@media only screen and (max-width: 320px) {
    .productLogo .productLogoTop > img {
        width: 80px;
    }
}

/****Sum Assured Popup Css start***/
.highSumAssured {
    cursor: pointer;
    background: #fef7dc;
}

.popUpTitle {
    font-size: 16px;
    font-weight: 600;
}

.popUpBody {
    padding: 30px 15px;
}

.popUpBlurBg {
    display: block;
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1031;
    -webkit-transition: all .5s ease-in;
    transition: all .5s ease-in;
    background: rgba(0, 0, 0, 0.5);
}

.popUpModal {
    border-radius: 4px;
    background: #fff;
    display: none;
    width: 50%;
    margin: 0 auto;
    position: fixed;
    z-index: 1032;
    /* height: 65%; */
    top: 53%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 1px -2px rgba(0,0,0,.2), 0 1px 17px 0 rgba(0,0,0,.14), 0 1px 2px 0 rgba(0,0,0,.12);
}

.popUpDiv img {
    width: 80%;
}

.popUpCrossButton {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
}

.popUpFooter {
    padding: 15px 15px;
    border-top: 1px solid #e3e3e3;
    display: flex;
    align-items: center;
}

.continueWithCurrentTxt {
    flex-grow: 1;
    color: #0661ea;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
}

.highSumAssuredModal {
    width: 95%;
    display: block;
    -webkit-animation-duration: .85s;
    animation-duration: .85s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
    left: 0;
    right: 0;
    margin-top: -79px;
}

.goWithUpgradeTxt .btn {
    padding: 10px 20px;
}

@keyframes bounceInUp {
    0%, 100%, 30%, 60%, 80% {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,200px,0);
        transform: translate3d(0,200px,0);
    }

    30% {
        opacity: 1;
        -webkit-transform: translate3d(0,-40px,0);
        transform: translate3d(0,-40px,0);
    }

    60% {
        -webkit-transform: translate3d(0,4px,0);
        transform: translate3d(0,4px,0);
    }

    80% {
        -webkit-transform: translate3d(0,-2px,0);
        transform: translate3d(0,-2px,0);
    }

    100% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

.basedProfile .popUpTitle, .basedProfile {
    font-size: 14px;
}
/****Sum Assured Popup Css end***/
.floating-input:focus ~ label, .floating-select:focus ~ label {
    color: #0661ea !important;
}

.progress-container {
    width: 100%;
    height: 4px;
    background: transparent;
    position: fixed;
    top: 0;
    z-index: 999;
}

.progress-bar {
    height: 4px;
    background: #0661ea;
    width: 0%;
}

.pagingInfo {
    position: absolute;
    z-index: 1;
    font-size: 11px;
    background: #fff;
    line-height: normal;
    font-weight: 500;
    padding: 1px 6px;
    border-radius: 6px;
    min-width: 38px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: -5px;
    left: 50%;
    transform: translate(-50%);
}

    .pagingInfo span {
        font-weight: 600;
        font-size: 12px;
    }

.editUserDetails {
    display: none;
}

.kypFundPerformance {
    margin: 0;
   /*border-radius: 4px;
     padding: 8px;
    border: 1px solid #e9f2ff; */
}

.fund-performance-wrap iframe {
    border: none;
    outline: none;
    width: 100%;
    height: calc(100dvh - 227px);
}