﻿*,
::after,
::before {
    box-sizing: border-box;
    /*color: #27313d;*/
    font-family: 'Poppins', sans-serif;
}

.overflowHidden {
    overflow: hidden !important;
}

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: #27313d;
    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
}

header {
    min-height: 62px;
}

.d-none {
    display: none
}

.d-inline {
    display: inline
}

.d-inline-block {
    display: inline-block
}

.d-block {
    /*display: block !important;*/
    display: block;
}

.d-table {
    display: table
}

.d-table-row {
    display: table-row
}

.d-table-cell {
    display: table-cell
}

.d-flex {
    display: -ms-flexbox;
    display: -moz-box-flexbox;
    display: -webkit-flex;
    display: flex;
}

.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 {
    display: inline-block;
    font-weight: 400;
    color: #27313d;
    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;
    color: #fff;
}

.btn-primary {
    color: #fff;
    background-color: #0661ea;
    border-color: #0661ea;
}

.btn-primary-box-shadow {
    box-shadow: 0 3px 6px 0 #0817339e;
}

.btn-transparent {
    color: #0661ea;
    background-color: #fff;
    border-color: #0661ea;
}

.btn-primary-width {
    width: 200px;
}

.btn-Blue {
    border-radius: 8px;
    box-shadow: 0 3px 6px 0 #0817339e;
    background-color: #0661ea;
    text-transform: inherit;
}

.btn-secondary-width {
    width: 300px;
    text-transform: inherit;
}

.btn-primary:hover {
    color: #fff;
    background-color: #0661ea;
    border-color: #0661ea;
}

.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% !important;
}

.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;
}

.p-5 {
    padding: 5px;
}

.pl-5 {
    padding-left: 5px;
}

.pr-5 {
    padding-right: 5px;
}

.pt-5 {
    padding-top: 5px;
}

.pb-5 {
    padding-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-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;
}

.position-relative {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.nposition-relative {
    position: relative;
}

.positionRelative {
    position: relative;
}

.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;
}

.moreInfoOVerlay + .fixed-bottom {
    /*height: 126px*/
}

.box-shadow-top {
    box-shadow: 0 -3px 6px #f5f5f5;
}

.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;
}

.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: 120px !important
}

.inputSearchIcon {
    background: #fff url(../../images/mobile/searchIcon.svg) right 9px no-repeat;
    background-size: 17px;
}
/*-------------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;
    font-weight: 400;
}

    .field-validation-error > span {
        color: #e74c3c;
    }
/*-------------Developer StyleSheet End-----------*/
.primaryBlackColor {
    color: #27313d !important;
}

.primaryGreyColor {
    color: #27313d !important;
}

.primaryBlueColor {
    color: #0661ea !important;
}

.blackTextColor {
    color: #000000 !important;
}

span[id*="spn"], span[class*="spn"], span[id*="txtRiderSA"], span[id*="RiderPremium"], span[id*="lbl"], span[id*="LimitedPay"], span[id*="productPagelimitedPremium"] {
    /*color: #27313d;*/
}
/*------------Base css end---------------*/
/*--------------Loader css start---------*/
/*product page laoder css*/
.loader {
    position: fixed;
    height: 100%;
    width: 100%;
    background: rgba(245,247,248,0.8);
    z-index: 1034;
    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------------*/


/*----------------Skeleton Loader css start--------------*/

.cardLoader {
    overflow: hidden;
    /* background: white; */
    /* border-radius: .25rem; */
    /* max-width: 380px; */
    /* width: 380px; */
    /* 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;
}

/*.cardLoader:hover {
        box-shadow: 0 15px 60px 0 rgba(0, 0, 0, 0.08), 0 5px 25px 0 rgba(0, 0, 0, 0.08);
    }*/

.cardLoader-detail {
    /* padding: .5rem 1rem; */
}

.cardLoader-image {
    margin: 0;
    padding: 0;
    height: 200px;
    overflow: hidden;
}

    .cardLoader-image img {
        max-width: 100%;
        height: auto;
    }

.cardLoaderLoading {
    position: relative;
    background-color: #f5f5f5;
}

    .cardLoaderLoading.cardLoader-image {
        border-radius: 0;
    }

.cardLoader-title.cardLoaderLoading {
    height: 18px;
    width: 70%;
}

.cardLoader-description.cardLoaderLoading {
    height: 14px;
    margin: 10px 0;
}

.cardLoader-description {
    width: 90%;
}

.cardLoader-descriptionSecond {
    width: 80%;
}

.cardLoader-price.cardLoaderLoading {
    height: 18px;
    margin-top: 30px;
}

.cardLoaderLoading::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.38), transparent);
    -webkit-animation: loading 1.5s infinite;
    animation: cardLoaderLoading 1.5s infinite;
}

@-webkit-keyframes cardLoaderLoading {
    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@keyframes cardLoaderLoading {
    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}
/*----------------Skeleton Loader css 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 #e3e3e3;
    font-weight: 600;
    color: #27313d;
    border-radius: 0;
}

.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: #27313d;
    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;
}

.customFloatingLabel {
    font-size: 11px;
    top: -22px;
    /*color: #0661ea;*/
}

.verification-code-box .floatingLabelText, .floating-input.has-value ~ .floatingLabelText, .floating-input:focus ~ .floatingLabelText {
    top: -15px;
    font-size: 11px;
}

.floating-input.valid ~ .floatingLabelText, .floating-input[type="date"] ~ .floatingLabelText {
    top: -15px;
    font-size: 11px;
    /* color: #0661ea;*/
}

.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: #27313d;
}

.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:focus ~ .prefixInputIcon {
    display: block;
    top: 7px;
}

.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: 32px;
}

.nriCountryCode.countryCodeValue, .nriCountryCode:focus {
    padding-left: 74px;
}

.customValue .onFocusSymbolPrefix ~ .prefixInputIcon, .cityInput .onFocusSymbolPrefix ~ .prefixInputIcon {
    display: none;
}

.annualIncomePostFixLabel {
    display: none;
}

.dropDownPostFixLabel {
    position: absolute;
    top: 7px;
    background: #e7f1ff;
    right: 40px;
    text-align: center;
    padding: 4px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.17;
    color: #0661ea;
    width: 69px;
    height: 22px;
    border-radius: 4px;
}

.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: 18px;
    left: 20px;
}

.customValue .onFocusSymbolPrefix:focus, .customValue .onFocusSymbolPrefix, .cityInput .onFocusSymbolPrefix:focus, .cityInput .onFocusSymbolPrefix {
    padding-left: 33px;
}

.floating-select:focus ~ label, .floating-select.valid ~ label {
    top: -15px;
    font-size: 11px;
    /*color: #0661ea;*/
}

.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 .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;
    }

    .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-------------*/

/*-------------------illnessList Css Start-------------*/
.or {
    background: #F7F7F7;
    border: 1px solid #D8D8D8;
    border-radius: 15px;
    padding: 5px;
    font-size: 12px;
    margin-top: -15px;
    font-weight: 500;
}

.Or-Wrapper {
    display: flex;
    justify-content: center;
    border-top: 1px dashed #D8D8D8;
    margin: 20px 0 10px;
}

.HealthBody ul li {
    margin-top: 10px;
}

.HealthPara {
    font-size: 12px;
    color: #525252;
}

.HealthBenefits {
    color: #27313D;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.inline-select {
    border: none;
    background-color: #fff;
    border-radius: 4px;
    padding: 3px 26px 3px 10px;
    font-weight: 500;
    font-size: 14px;
    background-position: right 8px center;
    border: 1px solid #ccc;
    margin-right: 4px;
}

.HealthPlan {
    border: 1px solid #54C691;
    box-shadow: 0px 0px 20px #d1ede6 !important;
}

.subHeading {
    font-size: 16px;
    font-weight: 600;
    color: #27313d;
    line-height: 1.5;
    padding-right: 85px;
}

.totalPrice {
    font-size: 11px;
    font-weight: 500;
}


.HealthParagraph {
    padding-right: 0px;
    font-size: 13px;
}
/*-------------------illnessList Css End-------------*/

/*-------------------FormElements Css Start-------------*/
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-overflow: '';
    background: transparent url(../../images/mobile/select-arrow.png) 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;
}

    .radio .radioBtnAnswerTxt {
        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: #0661ea;
            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: #0661ea;
    }

        .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: #0661ea;
        font-weight: 500;
    }

.gendersFieldsDiv {
    width: 100%;
    padding: 0 0 8px 0;
    border-bottom: 1px solid #d0d5dd;
}

    .gendersFieldsDiv .checkcover {
        margin-right: 30px;
    }

        .gendersFieldsDiv .checkcover .checkmark {
            /* background: #fff url("../../images/web/genderBlack.png") no-repeat; */
            /* background-size: 23px; */
            /* background-position: 25px 9px; */
            color: #252733;
            border-right: 0;
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
            /* border: 1px solid #e0e2e4; */
            /* border-left: 1px solid #e0e2e4; */
            display: inline-block;
            /* height: 40px; */
            /* line-height: 38px; */
            text-align: center;
            font-size: 11px;
            font-weight: 500;
            /* border: 2px solid #27313d; */
            cursor: pointer;
            border-radius: 50%;
        }

        .gendersFieldsDiv .checkcover.female .checkmark {
            /* background: #fff url("../../images/web/genderBlack.png") no-repeat; */
            /* background-size: 23px; */
            /* background-position: 19px -41px; */
            /* padding-left: 11px; */
        }

        .gendersFieldsDiv .checkcover.male input:checked ~ .checkmark {
            /* background: #0661ea url("../../images/web/genderWhite.png") no-repeat; */
            /* background-size: 23px; */
            /* background-position: 25px 9px; */
            /* color: #ffffff; */
            /* background: #0661ea; */
        }

        .gendersFieldsDiv .checkcover.female input:checked ~ .checkmark {
            /*background: #0661ea url("../../images/web/genderWhite.png") no-repeat;
            background-size: 23px;
            background-position: 19px -41px;
            color: #ffffff;*/
        }

        .gendersFieldsDiv .checkcover.male .checkmark {
            /* border-right: none; */
            /* border-top-left-radius: 4px; */
            /* border-bottom-left-radius: 4px; */
        }

        .gendersFieldsDiv .checkcover.female .checkmark {
            /* border-top-right-radius: 4px; */
            /* border-bottom-right-radius: 4px; */
        }
        /*radio type checkbox for investment start*/
        .gendersFieldsDiv .checkcover .checkmark {
            position: relative;
            line-height: 23px;
            font-size: 14px;
            padding-left: 25px;
            font-weight: 400;
        }

            .gendersFieldsDiv .checkcover .checkmark:before {
                content: "";
                position: absolute;
                display: block;
                left: 0;
                margin-right: 8px;
                width: 20px;
                height: 20px;
                margin-top: 1px;
                border: 2px solid #27313d;
                border-radius: 100%;
                -webkit-tap-highlight-color: transparent;
            }

            .gendersFieldsDiv .checkcover .checkmark:after {
                content: '';
                position: absolute;
                top: 6px;
                left: 5px;
                width: 10px;
                height: 10px;
                border-radius: 100%;
                background: #0661ea;
                transform: scale(0);
                -o-transform: scale(0);
                -webkit-transform: scale(0);
                -moz-transform: scale(0);
                transition: all 0.2s ease;
                opacity: 0.08;
                pointer-events: none;
            }

        .gendersFieldsDiv .checkcover input:checked ~ .checkmark:before {
            border-color: #0661ea;
        }

        .gendersFieldsDiv .checkcover input:checked ~ .checkmark:after {
            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;
        }

        .gendersFieldsDiv .checkcover input:checked ~ .checkmark {
            color: #0661ea;
            font-weight: 500;
        }

.hidden {
    display: none;
}

.radioBtn ~ .floatingLabelText {
    top: -8px;
}

.radio input[type="radio"]:checked ~ .active {
    border: 1px solid #e74c3c;
}

.questionLabel {
    font-size: 14px;
    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-top: 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 #0661ea;
    border-bottom: 2px solid #0661ea;
    -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: #0661ea;
}

.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;
}

.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 {
    /*box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.08), 0px 4px 8px -2px rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid #e3e3e3;*/
    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;
    position: relative;
    z-index: 3;
}

.productLogo {
    width: 45%;
    display: flex;
    align-items: flex-start;
}

    .productLogo > img {
        width: 110px;
    }

.clientPrdName, .client-prd-name {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.17;
    text-align: left;
    color: #27313d;
    margin-top: 7px;
    justify-content: center;
    height: 100%;
    margin-top: 4px;
}

.planDetailsInfo {
    color: #27313d;
    font-size: 12px;
    text-align: left;
    width: 100%;
    line-height: 14px;
    padding: 3px 0 3px 6px;
    display: inline-block;
    background: transparent linear-gradient( 91deg,#cbdfff,#fff) 0 0 no-repeat padding-box;
    border-radius: 4px 0 0 4px;
    margin-top: 3px;
}

.headerRight {
    width: 55%;
}

.totalAmt {
    font-size: 16px;
    font-weight: 700;
    display: block;
    width: 100%;
    text-align: right;
    display: flex;
    justify-content: flex-end;
}

    .totalAmt > span {
        color: #27313d;
    }

.totalAmt {
    color: #27313d;
    display: flex !important;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.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 img {
        width: 14px;
    }

.downloadBrochure, .downloadCISBrochure {
    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;
    color: #27313d;
}

.modeOfPremium {
    margin-left: 5px;
}

    .modeOfPremium .floating-select {
        font-size: 11px;
        line-height: 30px;
        height: auto;
        background-size: 10px;
        background-position: right 13px;
        opacity: 1;
        color: #27313d;
    }

        .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/img-ipru-ceo-photo.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;
    }

.slick-dots {
    height: auto;
    line-height: normal;
    top: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: -3px;
    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);
        }


.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: #d09103;
    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;
}

.certifiedPartnerTitleCrossButton, .wellness-cross-btn {
    position: absolute;
    cursor: pointer;
    z-index: 99;
    right: 0;
    top: -40px;
    border: 2px solid #fff;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.certifiedPartnerBody {
    padding: 10px;
}

.certifiedPartnerBlurBg, .invalidNumberBlurBg, .infoHousewifeBg {
    display: none;
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1031;
    background: rgba(0, 0, 0, 0.5);
}

.certifiedPartnerModal {
    border-radius: 4px;
    background: #fff;
    display: none;
    width: 90%;
    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);
    cursor: pointer;
}


.certifiedPartnerDiv img {
    width: 100%;
}

.certifiedPartnerTitleCrossButton {
/*    position: absolute;
    right: 20px;
    top: 13px;
    cursor: pointer;*/
}

    .certifiedPartnerTitleCrossButton img {
        filter: brightness(0) invert(1);
        width: 12px !important;
        /*        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*/
/*.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: 0 0;
    text-align: left;
    margin-bottom: 20px;
    padding: 10px 40px 0 10px;
}

.certifiedPartnerBody {
/*    padding: 10px;*/
padding:2px;
}

.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: rgba(23, 43, 77, 0.9);
    /*    background: #0817339e;*/
}

.certifiedPartnerModal {
    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;
    box-shadow: 0 2px 1px -2px #0003, 0 1px 17px #00000024, 0 1px 2px #0000001f;
/*    border-top: 8px solid #294476;*/
    border-radius: 12px;
}

.certifiedPartnerDiv img {
    width: 100%;
    border-radius:16px;
}

/*.certifiedPartnerTitleCrossButton {
    position: absolute;
    right: 20px;
    top: 13px;
    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;
}
/*-------------------Header Css End-------------*/
/*-------------------EditUserDetails Css Start-------------*/
.editUserDetails {
    background: #fff;
    width: 100%;
    margin-right: 0;
    padding: 14px 15px 9px;
    background: #fff;
    display: none;
}

    .editUserDetails ul li {
        font-size: 12px;
        font-weight: 600;
        line-height: 1.83;
        letter-spacing: 0.17px;
        text-align: right;
        color: #27313d;
    }

        .editUserDetails ul li.dividerLine {
            color: #cacccd;
            padding: 0 5px;
        }

.editLink {
    color: #0661ea;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.2px;
}

.borderAfter:after {
    content: "";
    position: absolute;
    right: 0px;
    height: 45px;
    width: 1px;
    background-color: #eaeaea;
    top: -22px;
}

.editBtnLi {
    flex: 1 1;
    text-align: right;
}
/*-------------------EditUserDetails Css End-------------*/
/*-------------------productDetails Css start----------------------*/
.productDetails {
    background-color: #fff;
    box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.08), 0px 4px 8px -2px rgba(0, 0, 0, 0.04);
    padding-top: 24px;
    padding-bottom: 5px;
    border-radius: 0 0 16px 16px;
}

    .productDetails .floating-select {
        font-size: 12px;
        height: auto;
        line-height: 2.17;
        width: auto;
        margin: 0 auto;
    }

    .productDetails select {
        text-align-last: center;
    }

    .productDetails .floating-select:focus ~ .floatingLabelText, .productDetails .floating-select.valid ~ .floatingLabelText, .productDetails .floating-select.ng-touched ~ .floatingLabelText {
        line-height: 11px;
        text-align: center;
        left: 0;
        right: 0;
        font-size: 10px;
        padding-left: 0;
    }
/*-------------------productDetails Css end----------------------*/
/*-------------------Product Toogles Switches Css End-------------*/
.prdToggle {
}

.toggles {
    width: 100%;
    /* float: left; */
    padding-top: 0;
}

    .toggles span.monthly {
        font-weight: 500;
        color: #253858;
        text-align: right;
        padding-right: 9px;
        margin-left: 0;
        font-size: 12px;
    }

    .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;
    }

        .toggles .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

    .toggles .slider.round {
        border-radius: 34px;
        background-color: #fff;
    }

    .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%;
    }

    .toggles .switch input:checked + .slider:before {
        transform: translateX(26px);
    }

    .toggles .switch .arrow {
        position: absolute;
        left: 5px;
        transition: all .3s;
        top: 5px;
        line-height: 0;
    }

    .toggles .switch input:checked + .slider .arrow {
        left: 32px;
        transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(175deg);
    }

    .toggles .switch .arrow img {
        max-width: 10px;
        position: relative;
    }

    .toggles .switch input:checked + .slider .arrow img {
        transform: translateX(2px);
    }

    .toggles span.monthly, .toggles span.yearly {
        display: inline-block;
    }

    .toggles span.yearly {
        font-size: 12px;
        position: relative;
        text-align: left;
        padding-left: 10px;
        color: #050505;
        font-weight: 500;
    }

        .toggles span.monthly.active, .toggles span.yearly.active {
            color: #0661ea;
            font-weight: 700;
        }
/*-------------------Product Toogles Switches 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;
}

.formCard {
    position: relative;
    - top: 90px;
    border-top: #e4eaff 1px solid;
    overflow: hidden;
    border-radius: 16px;
    margin-top: 12px;
}

.page-card {
    box-shadow: 0 0 6px 0 rgba(76, 90, 111, 0.17);
}
/*-------------------Form Section Css End-------------*/
/*benefit css Timeline kyp*/
.benefitTimelineDiv {
    width: 100%;
    margin: auto;
}

.payAndGet {
    background-color: #deebff;
    display: flex;
    align-items: flex-start;
    padding: 10px 20px 10px 10px;
    border-radius: 8px;
}

.payAndGetTxt {
    margin: 1px 0 0 6px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.58;
    letter-spacing: normal;
    text-align: left;
    color: #0652dd;
}

.ideaIcon {
    width: 26px;
    height: 26px;
    padding: 1.8px 4.1px 2.9px 4.9px;
    box-shadow: 0 1px 2px 0 #0817339e;
    background-color: #ffffff;
    border-radius: 50%;
    margin-right: 5px;
}

.policyStart {
    border-radius: 8px;
    padding: 22px 30px 5px 13px;
    position: relative;
    text-align: center;
}

.investBg {
    background-color: rgba(38, 128, 235, 0.1);
    border: solid 1px #1e76ce;
    margin: 43px 3px 20px 0;
}

.investmentTitle {
    margin: 0 26px 5px 33px;
    font-size: 12px;
    font-weight: 700;
    line-height: 2.17;
    color: #1e76ce;
}

.benefitDuration {
    font-size: 10px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.6;
    letter-spacing: normal;
    color: #27313d;
    margin-left: 5px;
}

.payingTermDuration {
    font-weight: 600;
    line-height: 1.25;
    color: #000000;
    font-size: 12px;
}

.policyStartTime {
    font-size: 12px;
    font-weight: 500;
    line-height: 2.17;
    color: #ffffff;
    border-radius: 30px;
    background-color: #0652dd;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: inline-block;
    width: 20%;
    text-align: center;
    margin: auto;
    padding: 0 20px;
}

.noteList {
    margin: 15px 0 5px;
}

    .noteList ul {
        display: flex;
        position: relative;
    }

        .noteList ul::after {
            content: "";
            border-bottom: dashed 2px rgb(30 118 206 / 43%);
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: 50%;
        }

        .noteList ul li {
            width: 100%;
            position: relative;
            z-index: 1;
        }

            .noteList ul li .moneyGrowIcon {
                width: 32px;
                height: 32px;
                padding: 9.1px 6.9px 8.6px 7.3px;
                border: solid 0.6px #0652dd;
                background-color: #e7f1ff;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: auto;
            }

.durationTime {
    display: flex;
}

.durationStartYear {
    font-size: 10px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.6;
    letter-spacing: normal;
    text-align: left;
    color: #1e76ce;
    padding: 0 15px;
}

.durationMiddleYearBorder {
    border-bottom: solid 2px #80a8da;
    display: flex;
    flex-grow: 1;
    height: 15px;
}

.youGet {
    background-color: rgba(98, 149, 99, 0.1);
    border: solid 1px #629563;
}

.youGetTitle {
    font-size: 12px;
    font-weight: bold;
    line-height: 2.17;
    color: #629563;
}

.youGetDurationTime .durationStartYear {
    color: #629563;
}

.youGetDurationTime .durationMiddleYearBorder {
    border-bottom: solid 2px #629563;
}

.youGet .noteList ul::after {
    border-bottom: dashed 2px rgb(86 131 81 / 0.43);
}

.youGet .noteList ul li .moneyGrowIcon {
    width: 39px;
    height: 39px;
}

.youGetPlus {
    padding: 6.9px 6.4px 6.3px 6.8px;
    background-color: #d8d8d8;
    width: 21px;
    height: 21px;
    margin: 5px auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #27313d;
}

.additionLumpsumAmt {
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.17;
    letter-spacing: normal;
    color: #27313d;
}

.youGet .benefitDuration {
    font-size: 11px;
}

.monthlyYearly {
    font-size: 8px;
}

.rightBadge {
    background-color: #76a4d4;
    color: #fff;
    padding: 2px 10px 2px 5px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    position: absolute;
    right: 0;
    font-size: 10px;
    text-align: left;
}

    .rightBadge span {
        font-weight: 700;
        font-size: 11px;
    }

.badgeGreenBg {
    background-color: #6aac6c;
}

.borderLinePayingDuration {
    border: solid 1px rgb(112 112 112 / 0.2);
    margin: 0 10px;
}

.marketLinkedMain {
    background-color: transparent;
    padding: 10px 0 0;
    border: 1px solid #1e76ce;
}

.guaranteeLinkedHeading {
    font-size: 12px;
    font-weight: 700;
    color: #629563;
    margin-top: 10px;
    margin-bottom: 5px;
}

.leftBadge {
    background: #7f7bd8;
    border-radius: 4px 0;
    color: #fff;
    font-size: 9px;
    position: absolute;
    left: -1px;
    top: -8px;
    padding: 4px 6px;
    min-width: 70px;
    text-align: left;
    max-width: 70px;
}

.marketLinkedInnerHeading {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
}

.marketLinkedMain .policyStartTime + .youGet {
    border-right: none;
    border-left: none;
}

.leftBadge span {
    display: block;
    font-weight: 700;
}

.leftBadge::after {
    content: "";
    position: absolute;
    right: -3px;
    top: 0;
    -webkit-transform: rotate( 100deg );
    transform: rotate( 148deg );
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #7f7bd8;
}

.marketLinked {
    padding: 10px 30px 10px 10px;
    position: relative;
    border-bottom: none;
    border-left: none;
    border-right: none;
}



.colorFeatureWrap {
    overflow: auto;
}

.colorFeatureFlex {
    padding: 12px;
    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,
.featureHealthCover .colorFeatureText h3 span {
    color: #2d7b64;
}

.featureLifeCover .colorFeatureText h3,
.featureLifeCover .colorFeatureText h3 span {
    color: #2d3cd9;
}

.featureTaxSavings .colorFeatureText h3,
.featureTaxSavings .colorFeatureText h3 span {
    color: #8b6e0e;
}

.viewFullFeaturesList ul li sup {
    font-size: 9px;
}

.featureLifeCover .colorFeatureIcon,
.featureTaxSavings .colorFeatureIcon {
    padding-top: 3px;
}

.colorFeatureText p {
    margin: 0;
    color: #253858;
    font-size: 12px;
}

.colorFeatureSmall {
    font-size: 12px;
}

    .colorFeatureSmall sup {
        font-size: 8px;
    }

.colorFeatureText .colorFeatureSmall {
    font-size: 10px;
}

    .colorFeatureText .colorFeatureSmall sup {
        font-size: 6px;
    }

.colorFeatureIcon {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    padding-top: 4px;
}

    .colorFeatureIcon img {
        width: 22px;
    }


/*benefit css end*/
.pastYearsInfo {
    font-size: 11px;
    font-weight: 500;
    line-height: 11px;
    text-align: left;
    color: #27313d;
}

.retirementHeader {
    background-color: #eaeaea;
    font-size: 14px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.25;
    letter-spacing: normal;
    text-align: center;
    color: #27313d;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
}
/*--------------------Upgrade Plan Css Start---------------------*/
.upgradeTitle {
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: normal;
    text-align: left;
    color: #000000;
}

.upgradeGuaranteedImg {
    position: absolute;
    right: 10px;
    top: 0;
    z-index: 2;
    width: 90px;
}

.pageNumber5 .upgradeGuaranteedImg {
    right: initial;
    left: 10px;
    top: 10px;
}

.upgradeCGBox {
    width: 90px;
    height: 90px;
    background-color: #e7f1ff;
    border-radius: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .upgradeCGBox img {
        width: 100%;
    }

.upgradeCGBoxInfo {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    color: #000000;
}

.upgradeHoriLine {
    background-color: #e0e0e0;
    width: 100%;
    height: 1px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.upgradeHoriLineORTxt {
    width: 25px;
    height: 25px;
    background-color: #d3d3d3;
    font-size: 14px;
    font-weight: 600;
    color: #535353;
    border-radius: 50%;
    position: absolute;
    top: -10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    text-align: center;
    z-index: 2;
}

.totalMatLabel {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    color: #000000;
}

.totalMatAmt {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.18;
    text-align: left;
    color: #0661ea;
}

.productPlanMainTitle {
    margin: 0 0 39px 0;
    background-color: #fafafa;
    border-bottom: 1px solid #e5e8eb;
    border-radius: 16px 16px 0 0;
    min-height: 50px;
}

.titleHeading {
    font-size: 14px;
    font-weight: 600;
    color: #27313d;
}

.otherDetails {
    width: 93%;
    height: 100%;
}

.multiStepForm .formLiStep.active {
    /*border-bottom: 2px solid #0652DD;*/
    /* padding-bottom: 3px; */
    /* margin-bottom: -10px; */

    height: 100%;
    align-items: center;
    display: flex;
}

.formLiStep {
    font-size: 14px;
    font-weight: 500;
    /* line-height: 1.5; */
    /* text-align: center; */
    color: #b2b2b2;
    padding: 4px 16px;
}

    .formLiStep.active {
        font-weight: 600;
        color: #27313d;
    }

    .formLiStep.active {
        /*border-bottom: 2px solid #0652DD;*/
        /* padding-bottom: 3px; */
        /* margin-bottom: -10px; */
        height: 100%;
        align-items: center;
        display: flex;
    }

.progressBarInvesting {
    font-size: 10px; /* 9px;*/
    font-weight: 500;
    line-height: 1.2;
    text-align: left;
    /*color: #353434;*/ /* #b2b2b2;*/
}

.horizontalDividerLine {
    position: relative;
    margin: 0 5px;
    cursor: initial;
    flex-grow: 1;
}

    .horizontalDividerLine:after {
        content: "";
        position: absolute;
        width: 80%;
        height: 1px;
        background-color: #e5e8eb;
        left: 0;
        right: 0;
        margin: auto;
        justify-content: center;
        display: flex;
        align-items: center;
    }
/*--------------------Upgrade Plan Css End---------------------*/
/*--------------------Rider Css Start---------------------*/
.switchPlanBtn {
    background-color: #e7f1ff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.71;
    text-align: center;
    color: #0661ea;
    position: absolute;
    right: 0;
    width: 215px;
    top: 0px;
    height: 31px;
    border-top-right-radius: 4px;
    border-bottom-left-radius: 4px;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
}

.congratsBox {
    margin: auto;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.39;
    text-align: center;
    color: #27313d;
    padding-top: 80px;
}

.congratsPara {
    font-size: 17px;
    color: #27313d;
}

.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;
    width: 69px;
    height: 22px;
    border-radius: 4px;
    /*display: none;*/
}

.userProposerTotalAge {
    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: 69px;
    height: 22px;
    border-radius: 4px;
    /*display: none;*/
}

    .userTotalAge:empty, .userProposerTotalAge:empty, .annualIncomePostFixLabel:empty {
        display: none;
    }
/*--------------------Rider Css End---------------------*/
/*--------------------Rider Not Available Css Start---------------*/
.riderNotAvailable {
    text-align: center;
    padding: 80px 0;
}

    .riderNotAvailable h4 {
        margin-top: 0;
        font-size: 14px;
        margin-bottom: 20px;
    }

    .riderNotAvailable p {
        font-size: 12px;
        margin: 0px;
    }
/*--------------------Rider Not Available Css End---------------*/
/*---------------------Proceed Amount css start----------------*/
.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: -1px;
    }

.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;
}

.returnInfo {
    font-size: 9px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: center;
    color: #27313d;
    margin-top: 5px;
}

.wholeLifeWarning {
    background: #f9f4e2;
    color: #27313d !important;
}

.dividerVertLine {
    content: "";
    height: 80%;
    width: 1px;
    background: #eaeaea;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
}

.amountMoreInfo {
    font-size: 10px;
    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: 400;
    align-items: center;
    margin-top: 8px;
}

    .amountMoreInfo img {
        filter: brightness(0) saturate(100%) invert(36%) sepia(83%) saturate(4446%) hue-rotate(209deg) brightness(98%) contrast(103%);
        margin-right: 5px;
    }

.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: -1px;
    background: none;
    z-index: 2;
}

.moreInfoMOP {
    /*font-size: 12px;
    font-weight: 500;
    line-height: 1.83;
    text-align: left;
    color: #27313d;*/
    font-size: 12px;
    font-weight: 600;
    line-height: 1.57;
    text-align: left;
    color: #000000;
    /*padding-left: 25px;*/
}

.dropDownMsg {
    text-align: left;
    font-weight: 500;
    letter-spacing: 0px;
    color: #0652DD;
    font-size: 11px;
    background: #DEEBFF 0% 0% no-repeat padding-box;
    border: 1px dashed #9BC3FF;
    border-radius: 8px;
    padding: 2px 10px;
    line-height: 15px;
    margin-top: 30px;
}

.moreInfoBox {
    background: #fff;
    z-index: 3;
    left: 0;
    right: 0;
    padding: 0;
}

.moreInfoBox {
    /*position: fixed;
      bottom: 126px;
      height: 433px; 
      height: 60vh;
      z-index: 12;*/
    margin: -18px -16px 10px -16px;
    padding: 16px 24px 24px;
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
    border-top: 8px solid #294476;
}

.moreInfoBodyHeader {
    padding: 8px 0;
    margin-bottom: 20px;
    background-color: #FFF;
}

    .moreInfoBodyHeader .moreInfoTitle {
        text-align: center;
        color: #27313d;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.38;
        flex-direction: column;
        display: flex;
        margin: 0;
    }

        .moreInfoBodyHeader .moreInfoTitle .planDetailsInfo {
            background: none;
            width: auto;
            margin: auto;
            text-align: center;
            padding: 4px 0 0 0;
        }

.closeIcon {
    margin-top: 3px;
    align-content: center;
}

    .closeIcon img {
        width: 15px;
    }

.moreInfocrossIcon {
    cursor: pointer;
    display: flex;
    justify-content: flex-end;
    flex: 1 1;
}

.moreInfoBodyDetails {
    padding: 0 0 0 0;
    border: none;
    max-height: 300px;
    overflow-y: auto;
    min-height: 210px;
}

    .moreInfoBodyDetails ul {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        list-style-type: disc;
        padding-left: 4px;
    }

        .moreInfoBodyDetails ul li {
            width: 100%;
            background: url(../../images/web/dot.svg) 1px center no-repeat;
            background-size: 7px;
            display: flex;
            margin-bottom: 8px;
        }

            .moreInfoBodyDetails ul li label {
                width: 50%;
                padding-left: 18px;
                color: #27313d;
                font-size: 12px;
                line-height: 1.7;
            }

            .moreInfoBodyDetails ul li .values {
                width: 50%;
                font-size: 13px;
                line-height: 1.7;
                font-weight: 600;
                text-align: left;
                padding-left: 24px;
                /* display: flex; */
                justify-content: flex-end;
            }

.moreInfoOVerlay {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #0817339e;
    z-index: 10;
}

.bodyDetailsLable {
    font-size: 13px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.57;
    letter-spacing: normal;
    text-align: left;
    color: #000000;
}

.bodyDetailsValues {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.57;
    text-align: left;
    color: #000000;
    padding-left: 25px;
}

    .bodyDetailsValues .floating-select {
        font-size: 12px;
    }
/**********************tooltip for sapling Top css start **********************/
.amountInfo {
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.amountInfoAmount {
    position: relative;
}

    .amountInfoAmount .amountInfo {
        position: static;
    }

    .amountInfoAmount .amountInfoTooltip {
        min-width: 280px;
    }

    .amountInfoAmount .amountInfo .amountInfoTooltip::after {
        left: 127px;
    }

.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;
}

.amountInfo.amountInfoWhite {
    position: static;
}

.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 Top css end**********************/
.annualIncomePostFixLabel, .incomePostFixLabel {
    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: 69px;
    height: 22px;
    border-radius: 4px;
}
/*---------------------Proceed Amount css End----------------*/
/*--retirement-plan more info start--*/
.more-info-new-plan > .d-flex, .retirement-plan-new-info .retirementPlanInfo > .d-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(184, 195, 205, .3);
    padding: 12px 0;
}

    .more-info-new-plan > .d-flex.divCGPremiumDistribution,
    .retirement-plan-new-info .retirementPlanInfo > .d-flex.divCGPremiumDistribution {
        padding-top: 0;
    }

    .more-info-new-plan > .d-flex:first-child, .more-info-new-plan > .divForCG:nth-child(2) {
        padding-top: 0
    }

.more-info-new-plan > .more-info-noborder {
    border: none;
}

.more-info-new-plan > .d-flex:first-child, .retirement-plan-new-info .retirementPlanInfo > .d-flex:first-child, .more-info-new-plan > .d-flex:nth-child(2) {
    border: none;
}

.more-info-new-plan .blueDividerLine, .retirement-plan-new-info .blueDividerLine {
    display: none;
}

.more-info-new-plan .bodyDetailsValues, .retirement-plan-new-info .bodyDetailsValues {
    padding-left: 0;
}

.retirement-plan-new-info
.retirementDropdown {
    width: auto;
}

    .retirement-plan-new-info .retirementDropdown select {
        height: auto;
        border: none;
        font-size: 12px;
    }


.retirement-plan-new-info .retirementPlanInfo .retirement-plan-coloum {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-bottom: 24px;
}

.retirement-plan-coloum .bodyDetailsLable {
    margin-bottom: 16px;
}

.benefit-payout-values {
    padding: 0;
    display: flex;
    gap: 70px;
    width: 100%;
    flex-wrap: wrap;
}

.guaranteed-return {
    width: 100%;
}

.marked-linked {
    width: 100%;
}

.retirement-plan-box {
    border-radius: 8px;
    border: 1px dashed #17B5A5;
    background: #FAFFFF;
    position: relative;
    padding: 16px;
    display: flex;
    justify-content: space-between;
}

.retirement-plan-label {
    position: absolute;
    top: -6px;
    background: #fff;
    line-height: 1;
    border-radius: 20px;
    padding: 0 2px;
    left: 14px;
    font-size: 12px;
}

.guaranteed-return .retirement-plan-content {
    width: 40%;
}

.retirement-plan-content {
    color: #49586F;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bodyDetailsValues .retitement-plan-text {
    font-size: 11px;
    font-weight: 500;
}

.retirement-plan-content strong {
    color: #122443;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}

.retirement-plan-amount {
    display: flex;
    align-items: center;
}

    .retirement-plan-amount .retirementDropdownMoP {
        padding: 0;
        width: 81px;
    }

.retirement-plan-box .past-performance {
    display: block;
    font-weight: normal;
    font-size: 10px;
}

.retirement-plan-new-info .bodyDetailsLable, .more-info-new-plan .bodyDetailsLable {
    font-weight: normal;
}

.guaranteed-return:before {
    content: '';
    position: absolute;
    width: 1px;
    top: 24px;
    bottom: 24px;
    background: #D0E5E5;
    left: 50%;
    margin-left: -0.5px;
}

.guaranteed-return:after {
    content: '+';
    position: absolute;
    background: #7BA5A5;
    padding: 0;
    color: #fff;
    line-height: 0;
    width: 16px;
    height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: normal;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.guaranteed-return:before {
    content: '';
    position: absolute;
    width: 1px;
    top: 24px;
    bottom: 24px;
    background: #D0E5E5;
    left: 50%;
    margin-left: -0.5px;
}

.guaranteed-return:after {
    content: '+';
    position: absolute;
    background: #7BA5A5;
    padding: 0;
    color: #fff;
    line-height: 0;
    width: 16px;
    height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: normal;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.marked-linked:before {
    content: '';
    background: #D0E5E5;
    position: absolute;
    width: 100%;
    height: 1px;
    left: 50%;
    transform: translate(-50%, 0);
    top: -33px;
}

.marked-linked:after {
    content: '+';
    position: absolute;
    background: #7BA5A5;
    padding: 0;
    color: #fff;
    line-height: 0;
    width: 16px;
    height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: normal;
    border-radius: 50%;
    left: 50%;
    transform: translate(-50%, 0);
    top: -41px;
}

.guaranteed-return-amount {
    background: #088175;
    border-radius: 16px;
    color: #fff;
    font-size: 12px;
    font-weight: normal;
    position: absolute;
    padding: 2px 16px;
    bottom: -12px;
    left: 50%;
    transform: translate(-50%, 0);
    white-space: nowrap;
    line-height: 1.6;
}

    .guaranteed-return-amount strong {
        white-space: nowrap;
    }

.retirement-plan-amount .retirementDropdownMoP .floating-select {
    color: inherit;
}

.more-info-new-plan ul {
    justify-content: space-between;
}

    .more-info-new-plan ul li {
        width: 100%;
        justify-content: space-between;
    }

        .more-info-new-plan ul li:last-child {
            margin-bottom: 0;
        }

        .more-info-new-plan ul li > * {
            width: auto !important;
        }

.retirement-plan-frequency {
    font-size: 11px;
}

.bodyDetailsValues, .bodyDetailsValues span {
    font-weight: 600;
}

/*--retirement-plan more info end--*/
/*---------------------Know Your PopUp Css Start--------------*/
/*.slider {
    width: 90%;
    margin: 100px auto;
}*/

#KYPFundPerformance {
    margin: 0;
    /*border-radius: 4px;
    border: 1px solid #e9f2ff;*/
}

.tabWrapContent {
    padding: 0 10px;
}

.kypBox {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    transition: all 0.5s ease-in-out;
    border-radius: 8px;
    border: 1px solid #dcdfe4;
    box-shadow: 0 2px 4px -2px #00000014, 0 4px 8px -2px #0000000a;
}

    .kypBox .rounded-circle img {
        width: 100%;
    }

.kypBoxFirstScreen {
    /* margin-right: 2%; */
    width: 100%;
    margin-bottom: 70px;
    margin: 1% !important;
}

.kypBoxTitle {
    font-size: 16px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: left;
    color: #27313d;
    margin-bottom: 4px;
}

.kypBoxPara {
    font-size: 12px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.43;
    letter-spacing: 0.2px;
    text-align: left;
    color: #27313d;
}

.kypBoxIcon {
    height: auto;
    min-width: 60px;
    display: flex;
    align-items: center;
    margin-right: 16px;
    width: 60px;
    height: 60px;
    padding: 6px;
    justify-content: flex-end;
}

    .kypBoxIcon img {
        width: 100%;
        max-width: 40px;
    }

.kypBoxParaFlex {
    display: flex;
    flex-wrap: wrap;
}

    .kypBoxParaFlex > * {
        width: 100%;
        box-sizing: border-box;
        margin-top: 14px;
    }

    .kypBoxParaFlex .contentDl {
        font-size: 16px;
        color: #27313d;
        margin-bottom: 6px;
        display: block;
    }

.KypborderDashed {
    border-bottom: 1px dashed rgba(76, 90, 111, 0.33);
}

.knowYourPlanHeader {
    /* background-color: #fafafa; */
    /* box-shadow: 0 1px 5px 0 #eaeaea; */
    /* position: fixed; */
    width: 100%;
    z-index: 2;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    padding-bottom: 10px;
    padding-top: 10px;
}

    .knowYourPlanHeader + .formprogressBar {
        margin-top: 80px;
    }

.knowYourPopUpBox {
    position: relative;
    width: 100%;
    margin: 0px auto;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.knowYourPlanDownloadBrochure {
    border: 2px solid #27313d;
    font-size: 13px;
    font-weight: 500;
    line-height: 30px;
    height: 30px;
    color: #27313d;
    display: flex;
    align-items: center;
    padding: 0 10px;
}

    .knowYourPlanDownloadBrochure:hover {
        color: #27313d;
    }

.knowYourPopUp {
    width: 100%;
    margin: 0 auto;
    height: 100%;
    position: fixed;
    /* overflow: hidden; */
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 200;
    background-color: #0817339e;
    transition: all .3s linear;
    z-index: 1031;
    text-align: center;
}

    .knowYourPopUp.show {
        opacity: 1;
        visibility: visible;
    }

.criticalIllnessPopUp {
    content: "";
    width: 100%;
    margin: 0 auto;
    height: 100%;
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    opacity: 1;
    visibility: visible;
    z-index: 200;
    background-color: #27313df5;
    transition: all .3s linear;
    z-index: 10;
    text-align: center;
}

    .criticalIllnessPopUp.show {
        opacity: 1;
        visibility: visible;
    }

.criticalIllnessPopUpBox {
    position: relative;
    width: 90%;
    margin: 20px auto;
    height: 94%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    border-radius: 4px;
}

.progressbar {
    width: 100%;
    margin: 25px auto 10px;
}

    .progressbar li {
        list-style-type: none;
        width: 100%;
        float: left;
        font-size: 12px;
        position: relative;
        text-align: center;
        color: #7d7d7d;
        cursor: pointer;
    }

        .progressbar li:not(.completed) a, .progressbar li:not(.completed) {
            cursor: default;
        }

        .progressbar li:before {
            position: relative;
            z-index: 1;
            width: 11px;
            height: 11px;
            content: "";
            counter-increment: step;
            line-height: 29px;
            border: none;
            display: block;
            text-align: center;
            margin: 0px auto 0px auto;
            border-radius: 50%;
            border: 1px solid #d0d5dd;
            background-color: #27313d;
            /*animation: glowingBeforActive 1s infinite;*/
            -webkit-box-shadow: 0 0 2px 3px rgba(227, 227, 227, 0.16);
            -moz-box-shadow: 0 0 2px 3px rgba(227, 227, 227, 0.16);
            -o-box-shadow: 0 0 2px 3px rgba(227, 227, 227, 0.16);
            box-shadow: 0 0 2px 3px rgba(227, 227, 227, 0.16);
        }

        .progressbar li:after {
            width: 100%;
            height: 2px;
            content: '';
            position: absolute;
            background-color: #e5e8eb;
            top: 6px;
            left: 0%;
        }

        .progressbar li:first-child:after {
            width: 100%;
        }

        .progressbar li:last-child:after {
            width: 100%;
        }
/*.progressbar li:first-child:after{content: none;}*/
.knowYourPopUp .progressbar li.active:after {
    background-color: #0661ea;
    height: 2px;
    /*width: 80%;*/
    /*left: 20%;*/
}

.knowYourPopUp .progressbar li.active:before {
    width: 18px;
    height: 18px;
    border: 1px solid #0661ea;
    background: #fff;
}

.progressbar li.active:before {
    background: #0661ea;
    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)
    }
}

@keyframes glowingBeforActive {
    0% {
        box-shadow: 0 0 0 0 rgb(227, 227, 227);
    }


    100% {
        box-shadow: 0 0 0 7px rgba(227, 227, 227, 0.16);
    }
}

/*.progressbar li.active + li:after {background-color: #a71d38;}*/
.progressbar li span {
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 24px;
    letter-spacing: normal;
    text-align: center;
    color: #b2b2b2;
    position: absolute;
    top: -35px;
    left: 0;
    right: 0;
    margin: auto;
}

.progressbar li.active span {
    color: #27313d;
    /* font-weight: 600; */
}

.knowPlanProgressBar.progressbar li.active span {
    color: #0661ea;
}

.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; */
    width: 0;
}

.progressbar li.half em {
    content: "";
    width: 50%;
    /*border: 0.5px solid #e5e8eb;*/
    display: inline-block;
    position: absolute;
    top: 6px;
    right: 0;
    z-index: 0;
}

.progressbar li.active.completed em {
    border-color: #27313d;
}

.progressbar li.completed:before {
}

/*.tickIcon {
    display: none;
}*/

.progressbar li.completed .tickIcon:after {
    content: '';
    position: absolute;
    /*transform: scale(0);
    transition: all 0.2s ease;*/
    z-index: 1;
    right: 0;
    left: 0;
    margin: auto;
    /* display: flex; */
    top: 1px;
    width: 4px;
    justify-content: center;
    height: 7px;
    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;
}
/*.progressbar li.half:after em{

}*/
.knowPlanProgressBar li span {
    position: initial;
    font-size: 12px;
    font-weight: 500;
    line-height: 15px;
    color: #000000;
}

.knowPlanProgressBar li:before {
    margin: 1px auto 12px auto;
    width: 18px;
    height: 18px;
    border: 1px solid #d0d5dd;
    background: #fff;
    top: -3px;
}

.progressbar li.completed:after {
}

.progressbar li.completed:before {
}

.opaquerLayer {
    position: absolute;
    background: #27313d00;
    top: 0;
    width: 100%;
    margin: auto;
    left: 0;
    right: 0;
    opacity: 0;
    transition: all .3s;
    height: 100%;
    visibility: hidden;
    z-index: -1;
}

    .opaquerLayer.show {
        opacity: 1;
        visibility: visible;
    }


a.downloadBrochure:hover {
    color: #0661ea;
}

.downloadBrochure {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
}

    .downloadBrochure > img {
        margin-right: 5px;
        /*margin-top: 1px;*/
    }

    .downloadBrochure:hover > img {
        margin-right: 5px;
        /*margin-top: 1px;*/
        -webkit-animation-name: hvr-icon-down;
        animation-name: hvr-icon-down;
        -webkit-animation-duration: 0.75s;
        animation-duration: 0.75s;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

@keyframes hvr-icon-down {
    0%, 50%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    25%, 75% {
        -webkit-transform: translateY(6px);
        transform: translateY(6px);
    }
}

.knowYourPlanCloseBtn {
    /* border: 2px solid #27313d; */
    /* padding: 0px 6px; */
    /* line-height: 26px; */
    cursor: pointer;
    width: 30px;
    text-align: right;
}

.knowYourPlanBackArrow {
    line-height: 26px;
    cursor: pointer;
    width: 30px;
    display: flex;
    justify-content: center;
    /*position: absolute;*/
    top: 50%;
}

.planInfoTitle {
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    color: #27313d;
    margin: 0;
}

.planInfoSubTitle {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.8;
    color: #27313d;
    margin: 0;
    /*line-height: 20px;*/
}

.planInfoSublargeTitle {
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    color: #27313d;
}

.planInfoPara {
    font-size: 14px;
    font-weight: 500;
    color: #27313d;
    line-height: 22px;
    /* line-height: 15px; */
    margin: 0;
}

.verticalScroll {
    height: 100%;
    /* overflow-x: hidden; */
    width: 100%;
    /* margin: 20px auto; */
    background: #fff;
    border-radius: 4px;
    /* border-bottom-left-radius: 0; */
    /* border-bottom-right-radius: 0; */
    display: flex;
    position: relative;
    flex-direction: column;
}

.productContentSubTitle {
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    color: #000000;
}

.contentDl {
    font-weight: 400;
    letter-spacing: 0.17px;
    text-align: left;
    color: #27313d;
    font-size: 14px;
    width: 82px;
}

.contentDt {
    font-weight: 400;
    letter-spacing: 0.17px;
    text-align: left;
    color: #27313d;
    font-size: 12px;
}

.contentDtRight {
    text-align: right;
    font-size: 14px;
}

.circlImg {
    width: 58px;
    height: 58px;
}

#KYPPlanBenefit .borderBottom {
    border-bottom: 1px solid rgba(112, 112, 112, 0.2);
}

.verticalInnerScroll {
    height: 94%;
    overflow-y: auto;
    margin-top: 0;
    padding: 0 14px;
}

.kypTabs {
    border: solid 1px #27313d;
    background-color: #fff;
    padding: 9px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.64;
    color: #000000;
}

.firstTab {
    border-right: none;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

    .firstTab.active, .SecondTab.active {
        background: #0661ea;
        border: 1px solid #0661ea;
        border-right: none;
        color: #fff;
    }

.SecondTab {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.planInfoContent {
    padding: 20px 0px;
}

.kyp-plan-benefit {
    padding-bottom: 80px;
}

.contentBtnDiv {
    position: fixed;
    z-index: 2;
    right: 70px;
    top: 50%;
    margin: auto;
    transform: translate(0px, -50%);
    cursor: pointer;
    width: 37.5px;
    height: 37.5px;
    box-shadow: 0 3px 6px 0 #0817339e;
    border: solid 0.3px rgba(112, 112, 112, 0.5);
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blueDividerLine:after {
    content: "";
    height: 100%;
    width: 1px;
    background: #e7f1ff;
    position: absolute;
    top: 0;
    bottom: 0;
}

.closeIcon img {
    width: 15px;
}

.contentBtnDiv.BackArrow {
    left: 70px;
    right: inherit;
}

.bottomFixedHeight {
    height: 110px;
}

.knowMoreToolTipRight {
    background-color: #4b5b6e;
    color: #fff;
    padding: 3px 18px 5px 18px;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: #fafafc;
    display: inline-block;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    line-height: 22px;
}

.knwoMoreRightArrow {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    /* margin-left: -0.5em; */
    top: 15px;
    right: -5px;
    box-sizing: border-box;
    border: 11px solid black;
    border-color: transparent #4b5b6e #4b5b6e transparent;
    transform-origin: 0 0;
    transform: rotate(-45deg);
    border-radius: 0px 2px 0px 3px;
}

.stageText {
    font-size: 14px;
    font-weight: 500;
}

.paidBenefit {
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    /* width: 100%; */
}

.borderLine {
    /* width: 100%; */
    background-color: #ccc;
    height: 1px;
    flex-grow: 1;
}

.stepsCount {
    font-size: 14px;
    font-weight: 500;
    line-height: 2.2;
    /* width: 100%; */
}

    .stepsCount span {
        font-size: 18px;
        font-weight: 600;
        color: #27313d;
    }

.criticalList {
    font-size: 12px;
    font-weight: 500;
    color: #0661ea;
}

.demoVideo {
    cursor: pointer;
    position: relative;
    width: 333px;
}

.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: 94%;
    top: 0;
    padding: 24px 10px 10px 10px;
    background-color: #fff;
    z-index: 1033;
    margin: auto;
    top: 50%;
    /*height: 92%;*/
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 1px -2px #0003, 0 1px 17px #00000024, 0 1px 2px #0000001f;
    border-top: 8px solid #294476;
    border-radius: 12px;
}

.videoopaquerLayer {
    /*    background-color: #0817339e;*/
    background-color: rgba(23, 43, 77, 0.9);
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    z-index: 1032;
}

.videoinPoPUp .crossBtn {
    width: 26px;
    height: 26px;
    right: 0;
    border: none;
    border-radius: 4px;
    top: -1px;
    right: 5px;
}

.crossBtn {
    width: 26px;
    height: 26px;
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 4px;
    border: 2px solid #27313d;
    padding: 0px 6px;
    line-height: 23px;
    cursor: pointer;
    width: 26px;
}

.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);
    }

.FDlogo {
    width: auto;
}

.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;
    background: #fafafa;
    position: sticky;
    top: 0;
    z-index: 9;
}

    .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;
            min-width: 7px;
            /* float: left; */
            margin: 3px 5px 0 5px;
            border-radius: 100%;
        }


span.high_risk {
    background: #e56a3b;
}

span.moderate_risk {
    background: #f0ce00;
}

span.low_risk {
    background: #7659b0;
}

.fundTableHead {
    position: sticky;
    top: 45px;
    z-index: 9;
    background: #fff;
    border-bottom: 1px solid #e7eef0;
    margin-bottom: -1px;
}

.fundTableHead, .fundTableBody {
    display: flex;
    align-items: center;
    border-top: 1px solid #e7eef0
}

.fundTableCol {
    color: #4c4c4c;
    font-size: 11px;
    font-weight: 500;
    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: 11px;
}

.fundTableBodyBorder:first-child .rider-desc {
    bottom: initial;
    top: 15px;
}

.fundTableBodyBorder:nth-child(2) .rider-desc {
    bottom: auto;
}

.fundtableCol1Width {
    text-align: left;
    padding-left: 15px;
    width: 40%;
    position: relative;
}

.fundtableCol2Width {
    width: 20%;
}

.fundtableCol3Width {
    width: 20%;
}

.fundtableCol4Width {
    width: 20%;
}

.customfundtable2 {
    padding-right: 8px;
}

.customfundtable3 {
    padding-right: 8px;
}

.customfundtable4 {
    padding-right: 0;
}

.fundTableHead .sub, .fundTableBody .sub {
    color: #8a8989;
    font-size: 10px;
    display: block;
    text-align: center;
    font-weight: 400 !important;
}

.fundTableBody {
    padding-top: 0;
    margin-top: 10px;
    border: none;
}

.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;
}

    .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);
    }
}

.fund_inner img.download_icon {
    width: 10px;
    float: none;
    margin: 0;
    left: 2px;
    cursor: pointer;
    position: relative;
    top: -1px;
}

.rider-desc {
    position: absolute;
    z-index: 1;
    display: none;
    background: rgba(66,83,97,.85);
    padding: 10px;
    color: #fff;
    transition: all .3s ease;
    border-radius: 3px;
    font-size: 10px;
    text-transform: initial;
    margin: 0;
    left: -13px;
    font-style: normal;
    bottom: 20px;
    letter-spacing: 1px;
    width: 250px;
    font-weight: 400;
    line-height: 16px;
}

.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;
    margin-top: 4px;
}

.fundSize_1 span {
    float: left;
    color: #7f7e7e;
    font-size: 11px;
    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: 0;
    margin: 12px 5px 0 12px;
}

.fundTableBody .fundTableColNfo_fund span.risk_span {
    top: 26px;
}

.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;
}

.fund-title {
    position: relative;
}

.fund-title-wrap {
    position: relative;
}

    .fund-title-wrap .fund-title {
        position: static;
    }

.dataSource {
    width: 100%;
    float: left;
    margin: 0 0 10px;
}

    .dataSource p {
        font-weight: 400;
        margin-bottom: 0;
        font-size: 12px;
        text-align: left;
    }

    .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;
                500;
                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: 400;
            }

            .dataSource ul li:last-child {
                display: none;
            }
/*--------------------Know Your PopUp Css End----------------------*/
/*--------------------Investment poup css start----------------------*/


.investmentModalOverlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1029;
    width: 100vw;
    height: 100vh;
    background-color: #0817339e;
}

.investmentModal.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
    display: none;
}

.rupeeIcon {
    max-width: 14px;
    position: absolute;
    left: 5px;
    top: 12px;
}

.investmentModal .inputField input {
    width: 100%;
    font-weight: 600;
    padding: 5px 5px 5px 20px;
    box-sizing: border-box;
    font-size: 20px;
    border-radius: 0;
    font-size: 14px;
}

.investmentModal .btnGroup {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.investmentModal .close {
    position: absolute;
    top: -23px;
    right: -13px;
    font-size: 20px;
    color: #000;
    cursor: pointer;
    font-weight: 400;
}

.investfixed_child {
    background: #fff;
    width: 95%;
    border-radius: 6px;
    margin: 0;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 20px 20px 20px;
}

    .investfixed_child .floating-input {
        font-size: 14px;
    }

    .investfixed_child .floatingLabelText, .investfixed_child .floating-select {
        font-size: 14px;
        width: auto;
    }

.headTitle {
    text-align: center;
    position: relative;
    width: 100%;
    border-radius: 6px 6px 0 0;
    float: left;
    box-sizing: border-box;
    height: 56px;
    padding: 16px 0 10px;
    margin-bottom: 45px;
}

.investAmount {
    width: 100%;
    float: left;
}

.headTitle .img img {
    width: 42px;
    position: relative;
    top: -2px;
}

.headTitle h1 {
    color: #252733;
    width: 80%;
    float: left;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    margin-left: 15px;
}

.investAmount {
    width: 100%;
    float: left;
}

    .investAmount .fields {
        width: 96%;
        margin: 0 auto;
        justify-content: center;
    }

.ChosseInvest {
    width: 100%;
    float: left;
    margin: 55px 0 35px;
}

    .ChosseInvest ul {
        width: 100%;
        float: left;
        text-align: center;
    }

        .ChosseInvest ul li {
            position: relative;
            cursor: pointer;
            border-radius: 4px;
            padding: 10px 5px 10px 5px;
            box-sizing: border-box;
            width: 28%;
            display: inline-block;
            border: 1px solid #2151d7;
            color: #2151d7;
            margin: 0 5px;
            font-size: 14px;
            font-weight: 500;
        }

            .ChosseInvest ul li .iconrs {
                max-width: 10px;
                top: 1px;
                right: 1px;
            }

            .ChosseInvest ul li a {
                color: #2151d7;
            }
/*--------------------Investment popup css end------------------------*/
/*--------------------19 Crtical Illness PopUp Css End----------------------*/
.criticalIllnessPopUp {
    position: fixed;
    z-index: 1050;
    width: 100%;
    height: 100%;
    top: 0;
    /*background: #fff;*/
    /*overflow: none;*/
}

.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;
}
/*-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 #e5e8eb;
        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 #e5e8eb;
    }

        .fund-selection-popup .fund-selection-thead .fund-selection-tr {
            justify-content: space-between;
        }

    .fund-selection-popup .fund-selection-tbody {
        max-height: 277px;
        overflow: auto;
    }

        .fund-selection-popup .fund-selection-tbody .fund-selection-tr {
            border-bottom: 1px solid #e5e8eb;
            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: flex-start;
            cursor: pointer;
        }

            .fund-selection-popup .fund-selection-td.fund-selection-name .fund-name {
                display: flex;
                align-items: flex-start;
                font-weight: 500;
                flex-direction: column;
                gap: 2px;
                justify-content: center;
                min-height: 20px;
            }

                .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;
                    margin: 0;
                }

        .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-options-end-*/
/*--------------------19 Crtical Illness  PopUp Css End----------------------*/
/*---------------------Fixed Header Css Start-------------------------------*/
.fixedHeader {
    position: fixed;
    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:first-child {
        min-width: 140px;
    }

.customSelectLabel {
    color: #27313d;
    font-size: 10px;
    font-weight: 500;
    position: absolute;
    pointer-events: none;
    left: 0px;
    right: 0;
    text-align: center;
    top: -13px;
    line-height: 11px;
    justify-content: center;
    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: #0661ea;
    }

    .customDropDown li.active:after, .cityCustomDropDown li.active:after {
        content: '';
        position: absolute;
        top: 22px;
        right: 25px;
        width: 10px;
        height: 10px;
        border-radius: 100%;
        background: #0661ea;
        opacity: 1;
        pointer-events: none;
    }

    .customDropDown li:last-child, .cityCustomDropDown li:last-child {
        border-bottom: none;
    }



.selectLabel {
    position: relative;
    font-size: 12px;
    padding: 0;
    display: block;
    width: auto;
    height: auto;
    background-color: transparent;
    font-weight: 700;
    color: #27313d;
    cursor: pointer;
    text-align: center;
    margin: auto;
    line-height: 26px;
    text-align-last: center;
    justify-content: center;
}

    .selectLabel a {
        font-weight: 600;
        color: #27313d;
    }

    .selectLabel[disabled] {
        cursor: no-drop;
        opacity: 0.45;
    }

    .selectLabel > span {
        font-weight: 600;
        color: #27313d;
    }

/*.selectLabel:after {
        content: "";
        position: absolute;
        right: 20px;
        top: 14px;
        width: 9px;
        height: 9px;
        border: solid #cacccd;
        border-width: 0 2px 2px 0;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }*/
.customArrow:after {
    content: url(../../images/mobile/select-arrow.png);
    transform: translate(0px, -50%);
    margin-left: 0px;
    position: relative;
    top: 1px;
}

.modeOfInvest, .bodyDetailsValues span.modeOfInvest {
    font-size: 10px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.17;
    letter-spacing: normal;
    text-align: left;
    color: #27313d;
}
/*-----------------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;
}
/*investing for css start*/
.backToUser {
    border: 1px solid #eaeaea;
    font-size: 12px;
    border-radius: 4px;
    padding: 2px 10px;
    color: #0661ea;
    font-weight: 500;
}

.investingForLable {
    color: #27313d;
    font-size: 11px;
    font-weight: 500;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.questionMarkPopup {
    border-radius: 50%;
    background: #0661ea;
    color: #fff;
    width: 15px;
    height: 15px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 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;
    }

.investingFor {
    margin-top: -15px;
}

    .investingFor input + label {
        background: #fff;
        border: 1px solid #0661ea;
        border-radius: 20px;
        color: #0661ea;
        cursor: pointer;
        font-size: 14px;
        margin-right: 10px;
        padding: 8px 16px;
    }

    .investingFor input:checked + label {
        background: #0661ea;
        border: 1px solid #0661ea;
        border-radius: 20px;
        color: #fff;
    }
/*investing for css end*/
.retirementHeader {
    background-color: #f8f9fc;
    font-size: 14px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.25;
    letter-spacing: normal;
    text-align: center;
    color: #27313d;
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
}

.retirementDownload {
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 11px;
    height: 100%;
    display: flex;
    align-items: center;
}



.benefitAgeYearCG .benefitAgeDetail {
    padding: 0px 0px 0px 10px;
}

.benefitAgeYear.benefitAgeYearCG .bodyDetailsValues .retirementPlan {
    background: #f0f7ff;
    border-radius: 4px;
    padding: 10px;
    max-width: 180px;
}

.retirementPlanStandAlone .benefitAgeYear.benefitAgeYearCG .retirementPayout {
    justify-content: flex-start;
    text-align: left;
    display: block;
    width: 40%;
    padding-left: 0;
}

.retirementPlanStandAlone .retirementLabel {
    line-height: normal;
    position: initial;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    width: 110px;
    margin-right: 0;
}

.retirementPlanStandAlone .benefitAgeYear.benefitAgeYearCG .retirementLabel {
    width: auto;
    display: block;
    align-items: flex-start;
    flex-direction: column;
}

.retirementPayoutAmt {
    font-size: 15px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 25px;
    letter-spacing: normal;
    text-align: left;
    color: #000;
}

.benefitAgeYear.benefitAgeYearCG .moreInfoPlusIcon {
    width: 14%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    padding-left: 10px;
}

.retirementPlanStandAlone .benefitAgeYear.benefitAgeYearCG .retirementPension {
    width: 60%;
    margin-right: 0;
}

.benefitAgeYear.benefitAgeYearCG .retirmntStanAloneInput {
    width: 82px;
}

.retirementInput {
    width: 100%;
}

.benefitAgeYear.benefitAgeYearCG .retirementInput .floating-input {
    padding-right: 0;
    padding-top: 5px;
    color: #000;
    padding-bottom: 2px;
    height: auto;
    font-size: 15px;
}

.onFocusSymbolPrefix.floating-input.has-value ~ .prefixInputIcon, .onFocusSymbolPrefix.floating-input.ng-valid ~ .prefixInputIcon, .onFocusSymbolPrefix.floating-input.labelActive ~ .prefixInputIcon, .onFocusSymbolPrefix.floating-input:focus ~ .prefixInputIcon {
    display: block;
    top: 7px;
}

.retirementPlanStandAlone .retirementDropdownMoP {
    width: 75px;
    padding-left: 8px;
}

.retirementDropdownMoP .floating-select {
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.83;
    letter-spacing: normal;
    text-align: left;
    color: #000;
    border-bottom: none;
    background-size: 10px;
    padding-right: 10px;
    height: 100%;
}

.retirementPlanStandAlone .benefitAgeYear.benefitAgeYearCG .standAloneOr {
    margin: 0 auto 20px;
    border-top: 1px dashed #cacccd;
    width: 100%;
    height: 1px;
}

.retirementPlanStandAlone .standAloneOr span {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    background: #c1c1c1;
    font-size: 12px;
    font-weight: 500;
    text-transform: lowercase;
    justify-content: center;
}

.retirementPlanStandAlone .benefitAgeYear.benefitAgeYearCG .standAloneOr span {
    margin-right: 40px;
}

.retirementDropdown {
    width: 37%;
}

.retirementLabel {
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: left;
    color: #27313d;
    /* margin-bottom: 10px; */
    display: flex;
    align-items: center;
}

.retirementPayoutAmt {
    font-size: 16px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.4;
    letter-spacing: normal;
    text-align: left;
    color: #000;
    display: flex;
    align-items: center;
}

.plusIcon {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.retirmntMop {
    font-size: 12px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.17;
    letter-spacing: normal;
    text-align: left;
    color: #000;
}

.taxFreeBadge {
    border-radius: 2px;
    background-color: #619647;
    font-size: 8px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
    padding: 0 5px;
    margin-right: 5px;
}

.totalAmtBtmFixed .retirementLabel {
    margin-bottom: 3px;
    margin-top: 3px;
    font-size: 12px;
    display: block;
}

.totalAmtBtmFixed .plusIcon {
    width: 25px;
}

.retirementPayoutAmt .retirmntMop {
    font-size: 10px;
}

.totalAmtBtmFixed .retirementPayoutAmt {
    font-size: 16px;
}

.retirementMoreInfoBtn {
    display: flex;
    flex: 1;
    justify-content: flex-end;
}
/* standalone css */
.moreInfoBodyDetails .retirementPlanStandAlone .retirementPension {
    flex-direction: column;
    width: 50% !important;
    margin: 0;
}

.moreInfoBoxBody .retirementPlanStandAlone .retirementPlan {
    flex-wrap: initial;
}

.moreInfoBodyDetails .retirementPlanStandAlone .retirementPayout {
    flex-direction: column;
    margin-bottom: 0;
    width: 50% !important;
    padding-left: 28px !important;
}
/* .moreInfoBoxBody .retirementPlanStandAlone .retirementPlanInfo{
padding-bottom: 0;
} */
.moreInfoBoxBody .retirementPlanStandAlone .retirementDropdownMoP {
    width: 60px !important;
    padding-left: 4px !important;
}

.retirementPlanStandAlone .standAloneOr {
    width: initial !important;
}

.retirementPlanStandAlone .benefitAgeYear .bodyDetailsLable {
    margin-top: 20px;
}

.retirementPension .retirmntStanAloneInput {
    width: 85px;
    padding-left: 0;
}

.retirementPension .retirementDropdownMoP .floating-select {
    height: auto;
    line-height: 31px !important;
}

.benefitAgeMoreInfo {
    padding-left: 10px;
}

.retirementPlanStandAlone .standAloneOr span {
    position: absolute;
    left: 50%;
    transform: translate(-50%,-50%);
    top: 40%;
}

.moreInfoBoxBody .retirementHeader {
    text-align: left;
    padding-left: 10px;
    border-radius: 8px 8px 0 0;
    margin-top: 0;
}

.moreInfoBoxBody .retirementDropdown {
    width: 70px;
}

.moreInfoBoxBody .retirementPlan {
    flex-wrap: wrap;
}

.moreInfoBoxBody .retirementPayout {
    width: 100%;
    margin-bottom: 10px;
}

.moreInfoBoxBody .plusIcon {
    margin-bottom: 15px;
    width: 100%;
}

.moreInfoBoxBody .retirementPlanInfo {
    margin: 0;
    padding: 0;
}

.moreInfoBoxBody .retirementPension {
    width: 83px;
    margin-right: 5px;
}

.moreInfoBoxBody .retirementDropdownMoP {
    width: 60px;
}

.moreInfoBoxBody .moreInfoEditBtn {
    font-size: 10px;
    top: 7px;
}

.moreInfoBoxBody .retirementDropdownMoP .floating-select {
    padding-right: 10px;
    font-size: 10px !important;
}

.moreInfoBoxBody .retirementPayoutAmt {
    font-size: 13px;
    line-height: 32px;
}

    .moreInfoBoxBody .retirementPayoutAmt img {
        width: 8px;
    }

.retirementPension .retirmntStanAloneInput img {
    width: 8px;
}

.retirementPension .retirmntStanAloneInput .prefixInputIcon {
    top: 5px;
}

.moreInfoBoxBody .retirementInput .floating-input {
    padding-right: 21px;
}

/*.benefitAgeYearCG .benefitAgeDetail {
    padding: 0 2px;
}*/

.moreInfoBodyDetails .retirementPlanStandAlone .benefitAgeYear.benefitAgeYearCG .retirementPayout {
    flex-direction: column;
    margin-bottom: 10px;
    width: 100% !important;
    padding-left: 0px !important;
}

.cgPlanMoreInfo {
    flex-wrap: wrap;
}

.retirementPlanStandAlone .benefitAgeYear.benefitAgeYearCG .moreInfoPlusIcon {
    width: 100% !important;
    margin-bottom: 10px;
    padding-left: 40px;
}

.moreInfoBodyDetails .retirementPlanStandAlone .benefitAgeYear.benefitAgeYearCG .retirementPension {
    flex-direction: column;
    width: 100% !important;
    margin: 0;
}

.retirementPlanStandAlone .benefitAgeYear.benefitAgeYearCG .standAloneOr span {
    position: initial;
    left: 50%;
    transform: translate(0);
    top: 40%;
}

.retirementPlanStandAlone .benefitAgeYear.benefitAgeYearCG .retirementLabel {
    font-size: 10px;
}

.moreInfoBoxBody .benefitAgeYear.benefitAgeYearCG .retirementPayoutAmt {
    line-height: 1.5;
    font-size: 12px;
}

.standAloneOr.plusIcon {
    width: 40px;
}

.retirementPlan .retirementPayout {
    width: 30%;
    display: flex;
    gap: 0px;
    flex-direction: column;
}

.retirementPlan .retirementPension {
    width: 38%;
}

.amountMoreInfo {
    font-size: 12px;
}

.totalAmtBtmFixed .retirementPlan .retirementPayoutAmt {
    font-size: 15px;
}

.dd-list-container .dd-items-container {
    font-size: 14px;
}
/*--------------All Popup start---------------*/
/* ----------------------Investing for PopUp Json End----------------- */
.moreInfocrossIcon {
    cursor: pointer;
    margin-bottom: 0px !important;
    position: absolute;
    top: 30px;
    right: 26px;
}

.closeIcon img {
    width: 15px;
    height: 15px;
}

.investingForOverlay {
    transition: all 0.5s ease-in-out;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #0817339e;
    z-index: 9;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.investingOverlayActive {
    opacity: 1;
    visibility: visible;
}

.investingForDiv {
    background: #fff;
    position: fixed;
    z-index: 1033;
    left: 0;
    right: 0;
    bottom: calc(-100% - 800px);
    /*height: 60vh;*/
    height: auto;
    padding: 16px;
    overflow: auto;
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
    border-top: 8px solid #294476;
    transition: all 0.5s ease-in-out;
}

    .investingForDiv.investingForActive {
        bottom: 0;
    }

    .investingForDiv .moreInfocrossIcon {
        top: 26px;
        right: 16px;
    }

.investingForTitle {
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    padding: 8px 0;
}

.forYourself {
    background: #edf1fd;
    padding: 16px 40px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.investingForDividerLine {
    border-bottom: 1px solid #e4e4e4;
    margin: 10px 0;
}

.forSomeoneElse {
    background: #ecf9ef;
    padding: 16px 40px;
    border-radius: 4px;
}

.investingForBody {
    text-align: center;
    margin: 20px 0;
}

.investingForBodyTitle {
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    margin-bottom: 10px;
}

.investingForBodyDetail {
    font-weight: 400;
    font-size: 13px;
    text-align: center;
}

.investingForBtn {
    text-align: center;
}

    .investingForBtn .btn {
        font-size: 13px;
        min-width: 184px;
        padding: 4px 0;
        height: 40px;
        font-weight: 600;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }
/* ----------------------Investing for PopUp Json End----------------- */
/*----------------------Investment amount popup css start-------------*/
.prdFormTitle {
    color: #000;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    margin-bottom: 8px;
    margin-top: 8px;
}

.prdPageFormDetail {
    position: fixed;
    bottom: 0;
    background: #fff;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 64px;
    z-index: 1033;
    padding: 20px 30px 30px;
    height: auto;
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
    border-top: 8px solid #294476;
}

    .prdPageFormDetail .floatingLabelText {
        color: #0661ea;
    }
/*leftpanel new css start*/
.abbrevationValue {
    font-size: 10px;
    color: #27313d;
    font-weight: 400;
    margin-top: 5px;
    display: flex;
    align-items: flex-start;
}

    .abbrevationValue:empty {
        display: none;
    }

    .abbrevationValue:before {
        content: "";
        background: #6f6f6f;
        width: 5px;
        height: 5px;
        display: none;
        margin-right: 6px;
        border-radius: 50%;
        flex-shrink: 0;
        margin-top: 5px;
    }

/*leftpanel new css end*/
/*----------------------Investment amount popup css end----------------*/
/*--------------All Popup end-----------------*/

.totalAmountColor {
    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;
}

.disclaimer-text {
    margin-top: 24px;
    padding-bottom: 80px;
}

    .disclaimer-text p {
        font-size: 11px;
        line-height: 1.5;
        margin-top: 0;
    }

        .disclaimer-text p:last-child {
            margin-bottom: 0;
        }

.spnNotifymsg {
    line-height: 15px;
    color: #0D537C;
    padding: 4px;
    display: flex;
    font-size: 12px;
    align-items: flex-start;
}

    .spnNotifymsg span {
        color: #0D537C;
    }

.OtherCitySuggestion {
    font-size: 12px;
    line-height: 15px;
    color: #c36b02;
    font-style: normal;
}

.userDetails .formTxt {
    text-align: left;
}

@media only screen and (max-width:768px) {
    .policyStartTime {
        width: 140px;
    }

    .payingTermDuration {
        font-size: 11px;
    }

    .youGet .benefitDuration {
        font-size: 9px;
    }

    .noteList ul li:nth-child(even) {
        display: none;
    }

    .rightBadge {
        top: 10px;
    }

    .moreInfoTitle {
        display: flex;
        flex-grow: 1;
        justify-content: center;
        color: #000;
        font-size: 14px;
        font-weight: 500;
    }
}


#FirstName, #Proposer_ProposerFirstName {
    text-transform: capitalize;
}

.modePremium {
    position: absolute;
    top: 18px;
    right: 0;
}

    .modePremium select {
        border: none;
        font-weight: 500;
        font-size: 14px;
    }

    .modePremium .form-label {
        opacity: 1;
        visibility: visible;
        font-size: 0 !important;
        margin: 0;
        position: absolute;
    }

.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: 500;
    margin-right: 3px;
}


/*---healthDeclaration-start---*/
.healthDeclarationClick {
    text-decoration: underline;
}

.healthDeclarationOverlay {
    opacity: 0;
    visibility: hidden;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    transition: all .3s ease-in-out;
    background: #0817339e;
    z-index: 9999;
    position: fixed;
}

    .healthDeclarationOverlay.show {
        opacity: 1;
        visibility: visible;
    }

.healthDeclarationModal {
    border-radius: 4px;
    background: #fff;
    width: calc(100% - 30px);
    margin: 0 auto;
    position: fixed;
    z-index: 10;
    padding: 30px;
    height: auto;
    min-height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 1px -2px #0003, 0 1px 17px #00000024, 0 1px 2px #0000001f;
}

.healthDeclarationBody {
    padding: 0 10px;
}

.healthDeclarationTitle {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
}

.healthDeclarationDiv p {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 10px;
    font-weight: 500;
}

.healthDeclaration-list {
    max-height: calc(100vh - 330px);
    overflow: auto;
    margin-bottom: 30px;
}

    .healthDeclaration-list ol {
        margin-left: 0;
        padding: 0 0 0 20px;
    }

        .healthDeclaration-list ol li {
            font-size: 13px;
            line-height: 1.7;
            list-style-type: auto;
            margin-bottom: 4px;
        }

.healthDeclarationTitleCrossButton {
    position: relative;
    right: 0;
    top: 5px;
    cursor: pointer;
    left: 50%;
    transform: translate(-50%);
    height: 40px;
    min-height: 40px;
    font-size: 14px;
    line-height: 21px;
    padding: 10px 12px;
    font-weight: 400;
    width: max-content;
    text-transform: initial;
}

    .healthDeclarationTitleCrossButton:hover {
        color: #fff;
    }
/*---healthDeclaration-end---*/

.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: 16px;
    color: #27313d;
    margin-top: 10px;
    display: flex;
    align-items: center;
}

    .additionalPremiumValues .rupee {
        top: -1px;
        position: relative;
    }

.cardFooterBackground {
    background-color: rgba(0, 101, 255, 0.05);
    border-color: rgb(242, 247, 255);
}

.paymentMode {
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #27313d;
}

.recommendIcon {
    width: 33px;
    height: 33px;
    border-radius: 68px;
    background-color: #0661ea;
}

.recommendText {
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
}

.light-blue-filter {
    filter: brightness(0) saturate(100%) invert(64%) sepia(79%) saturate(2116%) hue-rotate(188deg) brightness(99%) contrast(105%);
}

.white-filter {
    filter: brightness(0) invert(1);
}

.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;
    }

.review-plan-name {
    margin-top: 5px;
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #27313d;
}

.page-form-detail {
    overflow: auto;
    padding-top: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px 0;
    max-height: 320px;
    min-height: 240px;
}

.floating-input:focus ~ label, .floating-select:focus ~ label {
    color: #0661ea !important;
}

.triple-benefits-list {
    padding-left: 20px;
    margin-top: 10px;
}

    .productInnerContent .triple-benefits-list li, .triple-benefits-list li {
        list-style: disc;
        font-size: 12px;
        font-weight: 500;
        line-height: 1.5;
        letter-spacing: 0.2px;
        text-align: left;
        color: #4c5a6f;
        margin-bottom: 6px;
    }



.compounding-calculator-overlay {
    transition: all 0.5s ease-in-out;
    background: #0817339e;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1030;
    visibility: hidden;
    opacity: 0;
}

    .compounding-calculator-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.compounding-calculator-module {
    transition: all 0.5s ease-in-out;
    position: fixed;
    z-index: 1030;
    background: #fff;
    border-radius: 16px;
    max-width: 1085px;
    left: 50%;
    transform: translate(-50%, -50%);
    top: -1000px;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 98%;
    overflow: hidden;
}

    .compounding-calculator-module.active {
        opacity: 1;
        visibility: visible;
        top: 50%;
    }

.compounding-calculator-body {
    position: relative;
    height: 100%;
}

.compounding-calculator-close {
    position: absolute;
    top: 20px;
    right: 20px;
    display: inline-flex;
    cursor: pointer;
}

.compounding-calculator-body iframe {
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
}

@media (max-width: 767px) {
    .compounding-calculator-module {
        transition: all 0.5s ease-in-out;
        position: fixed;
        z-index: 1030;
        bottom: -100%;
        border-radius: 16px 16px 0 0;
        transform: none;
        left: 0;
        top: initial;
    }

        .compounding-calculator-module.active {
            bottom: 0;
            top: initial;
        }

    .compounding-calculator-body {
        padding-top: 15px;
    }

    .compounding-calculator-close {
        top: 15px;
        right: 15px;
    }

        .compounding-calculator-close img {
            width: 14px;
            height: 14px;
        }
}


.compounding-btn-wrap {
    position: relative;
}

.compounding-btn {
    position: absolute;
    z-index: 8;
    /*    z-index: 9;*/
    bottom: -60px;
    height: 45px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 16px 0px 0px 16px;
    border-right: none;
    background: #fff;
    box-shadow: 0px 2px 10px 4px rgb(115 123 143 / 25%), 0px 4px 22px -2px rgba(0, 0, 0, 0.04);
    transition: all 0.5s ease-in-out;
    box-sizing: border-box;
}

    .compounding-btn.compounding-fixed {
        position: fixed;
        top: 72px;
        right: -101px;
        bottom: auto;
    }

    .compounding-btn img {
        width: 30px;
        height: auto;
    }

    .compounding-btn span, .compounding-btn strong {
        color: #0065ff;
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
    }

    .compounding-btn span {
        line-height: 1.2;
        padding: 1px 0 0;
        display: block;
    }

    .compounding-btn strong {
        font-weight: 600;
        display: block;
    }


.fund-performance-wrap iframe {
    border: none;
    outline: none;
    width: 100%;
    height: calc(100vh - 130px);
    display: block;
}


.wellnessText {
    width: 100%;
}

    .wellnessText h3 {
        font-weight: 400;
        text-align: left;
        line-height: 1.6;
    }

    .colorFeatureFlex .wellnessText h3 .knowText, .wellnessText a {
        text-decoration: underline;
        color: #0661ea;
        font-weight: 500;
    }


.common-imagepop-overlay {
    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;
    visibility: hidden;
    opacity: 0;
}
.common-imagepop-model {
    border-radius: 4px;
    background: #fff;
    width: calc(100% - 30px);
    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);
    visibility: hidden;
    opacity: 0;
}
.common-imagepop-body {
    border-radius: 4px;
    overflow: auto;
    max-height: calc(100dvh - 100px)
}
.common-imagepop-body img {
    width: 100%;
}
.common-imagepop-script.active {
    visibility: visible;
    opacity: 1;
}
.common-imagepop-close {
    position: absolute;
    cursor: pointer;
    z-index: 99;
    right: 0;
    top: -36px;
    border: 2px solid #fff;
    border-radius: 4px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
    .common-imagepop-close img {
        filter: brightness(0) invert(1);
        width: 14px;
    }
.gst-cut {
    position: relative;
}

    .gst-cut:before {
        content: "";
        position: absolute;
        height: 1px;
        width: 100%;
        background: #000;
        top: 50%;
        transform: translate(0, -50%);
    }

.nil-gst {
    color: #23a140;
}



.amountInfoWrap {
    position: relative;
    margin: 4px;
    z-index: 9;
}

    .amountInfoWrap .amount-info-inner {
        border-radius: 8px;
        padding: 2px 10px;
        background: #fff9f5;
        justify-content: space-between;
        display: flex;
        width: 100%;
        z-index: 1;
        position: relative;
    }

    .amountInfoWrap .amountInfoText {
        font-size: 12px;
        background: linear-gradient(to right, #a85501 0%, #de5e35 80%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: rgba(0, 0, 0, 0);
        display: inline-block;
    }

        .amountInfoWrap .amountInfoText img {
            filter: brightness(0) saturate(100%) invert(67%) sepia(42%) saturate(7309%) hue-rotate(338deg) brightness(89%) contrast(94%);
            margin-top: -1px;
        }

    .amountInfoWrap .amountInfo {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .amountInfoWrap .amountInfo .amountInfoTooltip {
            display: block;
            width: 300px;
            top: 50px;
        }

            .amountInfoWrap .amountInfo .amountInfoTooltip ol {
                padding-left: 12px;
            }

                .amountInfoWrap .amountInfo .amountInfoTooltip ol li {
                    color: #fff;
                    font-size: 11px;
                    list-style-type: auto;
                }

    .amountInfoWrap .switch {
        left: 0;
        width: auto;
        height: auto;
    }

    .amountInfoWrap:before {
        position: absolute;
        inset: -0.0625rem;
        transition: ease all 0.4s;
        background: conic-gradient(from var(--gradient-angle), #fff, #f3a75a);
        animation: hoverRotate 2.5s linear infinite;
        content: "";
        opacity: 1;
        border-radius: 0.5rem;
    }

    .amountInfoWrap .toggles {
        width: auto;
    }

    .amountInfoWrap .switch input {
        display: none;
    }

    .amountInfoWrap .switch .slider.round:before {
        width: 12px;
        height: 12px;
        left: 2px;
        background: #fff;
    }

    .amountInfoWrap .switch input:checked + .slider:before {
        transform: translateX(11px);
    }

    .amountInfoWrap .switch .slider {
        background-color: #ccc;
        width: 27px;
        height: 16px;
        display: block;
        position: relative;
        margin: 0;
    }

    .amountInfoWrap .switch input:checked + .slider {
        background-color: #225cff;
    }

.amount-info-inner .amountInfo .amountInfoTooltip::after {
    display: none;
}

@keyframes hoverRotate {
    0% {
        --gradient-angle: 0deg;
    }

    100% {
        --gradient-angle: 360deg;
    }
}

@property --gradient-angle {
    syntax: "<angle>";
    initial-value: 90deg;
    inherits: false;
}





.slide-wrap {
    display: flex;
    gap: 4px;
    overflow: auto;
    width: 100%;
    margin-top: 4px;
}

.slide-box {
    display: flex;
    width: 100%;
    min-width: 168px;
    align-items: center;
    justify-content: space-between;
    font-size: 9px;
    font-weight: 400;
    border: 1px solid;
    border-radius: 4px;
    min-height: 35px;
}

    .slide-box strong {
        font-weight: 600;
    }

.ceo-slide {
    color: #092764;
    font-weight: 600;
    border-radius: 4px;
    border: 1px solid #dceefe;
    max-width: 155px;
    min-width: 155px;
}

.ceo-slide-content {
    display: flex;
    height: 100%;
    align-items: center;
}

    .ceo-slide-content span {
        display: block;
        line-height: 1;
    }

    .ceo-slide-content:before {
        content: '';
        background: url(https://static.pbcdn.in/e2e-cdn/assets/images/img-ipru-ceo-photo.png) no-repeat left top 1px / 46px auto;
        width: 46px;
        display: inline-flex;
        height: 100%;
        transform: rotateY(180deg);
        margin-right: 4px;
    }

.ceo-slide-btn {
    width: 20px;
    height: 20px;
    display: block;
    background: #cddffe;
    border-radius: 50%;
    margin-right: 6px;
    position: relative;
}

    .ceo-slide-btn:before {
        content: '';
        width: 0;
        height: 0;
        border-top: 4px solid transparent;
        border-bottom: 4px solid transparent;
        border-left: 7px solid #66a4ff;
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin-left: 1px;
    }

.slide-platinum-partner {
    border-color: #FFF3C7;
}

.platinum-partner-content {
    display: flex;
    align-items: center;
    height: 100%;
}

    .platinum-partner-content:before {
        content: '';
        display: flex;
        height: 100%;
        background: #fef7dc url(https://static.pbcdn.in/e2e-cdn/assets/icons/icon-5-star-partner.svg) no-repeat -4px center / 34px auto;
        min-width: 30px;
        border-radius: 0 50% 50% 0;
        margin-right: 4px;
    }

    .platinum-partner-content span {
        color: #4e430d;
        width: 120px;
    }

.platinum-partner-icon {
    display: block;
    margin: 0 5px;
}

    .platinum-partner-icon img {
        min-width: 10px;
        max-width: 10px;
        filter: brightness(0) saturate(100%) invert(22%) sepia(16%) saturate(3181%) hue-rotate(19deg) brightness(97%) contrast(90%);
    }
/*New video popup css start*/
.common-pop-model {
    width: auto;
    margin: 0 auto;
    position: fixed;
    z-index: 1033;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-in-out;
    max-width: calc(100% - 30px);
}

    .common-pop-model.active {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1 !important;
        visibility: visible !important;
    }

.btn-close, .crossBtn {
    background: #2b3d70;
    position: absolute;
    cursor: pointer;
    right: 0px;
    left: initial;
    top: -40px;
    border: 2px solid #fff;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cross-btn {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    padding: 4px;
    transition: all .4s ease-in-out;
}

    .cross-btn:before, .cross-btn:after {
        content: "";
        height: 2px;
        width: 16px;
        display: block;
        background: #fff;
        border-radius: 10px;
        position: absolute;
        top: 50%;
        left: 50%;
    }

    .cross-btn:before {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .cross-btn:after {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

.btn-close .cross-btn:before, .btn-close .cross-btn:after {
    width: 16px;
    background: #fff;
}

.video-img-pop {
    padding: 2px;
    background: #fff;
    border-radius: 16px;
    display: block;
}

.video-pop {
    min-height: initial;
    max-height: initial;
    width: auto;
    position: relative;
}

.min-height-wrap {
    min-height: 395px;
}

.video-pop img {
    width: auto;
    display: block;
    max-height: calc(100dvh - 130px);
    border-radius: 16px;
}

.video-pop video {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.video-img-pop img, .video-img-pop video {
    border-radius: 16px;
    display: block;
}

.video-overlay {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}

    .video-overlay.active {
        opacity: 1 !important;
        visibility: visible !important;
    }
/*New video popup css end*/