﻿*,
::after,
::before {
    box-sizing: border-box;
    /*color: #4c5a6f;*/
    font-family: 'Poppins', sans-serif;
}

html {
    font-family: 'Poppins', sans-serif;
    line-height: 1.15;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    /*color: #212529;*/
    text-align: left;
    background-color: #fafafa;
}
/*--------------Base Css----------------*/
a {
    color: #0065ff;
    text-decoration: none;
    background-color: transparent
}

ul, li, label {
    list-style-type: none;
    padding: 0;
    margin: 0;
}


a:hover {
    color: #0065ff;
    text-decoration: none;
}

img {
    vertical-align: middle;
    border-style: none;
}

svg {
    overflow: hidden;
    vertical-align: middle
}

.clearfix::after {
    display: block;
    clear: both;
    content: ""
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 8px;
    font-weight: 500;
    line-height: 1.2
}

.h1,
h1 {
    font-size: 28px
}

.h2,
h2 {
    font-size: 32px
}

.h3,
h3 {
    font-size: 28px
}

.h4,
h4 {
    font-size: 18px
}

.h5,
h5 {
    font-size: 14px
}

.h6,
h6 {
    font-size: 16px
}

.d-none {
    display: none
}

.d-inline {
    display: inline
}

.d-inline-block {
    display: inline-block
}

.d-block {
    display: block !important;
}

.d-table {
    display: table
}

.d-table-row {
    display: table-row
}

.d-table-cell {
    display: table-cell
}

.d-flex {
    display: -ms-flexbox !important;
    display: -moz-box-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
}

.d-inline-flex {
    display: -ms-inline-flexbox;
    display: inline-flex
}

.flex-row {
    -webkit-flex-direction: column;
    -ms-flex-direction: row;
    flex-direction: row
}

.flex-column {
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column
}

.flex-row-reverse {
    -ms-flex-direction: row-reverse;
    -webkit-flex-direction: column;
    flex-direction: row-reverse
}

.flex-column-reverse {
    -ms-flex-direction: column-reverse;
    -webkit-flex-direction: column;
    flex-direction: column-reverse
}

.flex-wrap {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap
}

.flex-nowrap {
    -ms-flex-wrap: nowrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: nowrap
}

.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap-reverse
}

.flex-fill {
    -ms-flex: 1 1 auto;
    -webkit-flex-grow: 1;
    flex: 1 1 auto
}

.flex-grow-0 {
    -ms-flex-positive: 0;
    flex-grow: 0
}

.flex-grow-1 {
    -ms-flex-positive: 1;
    flex-grow: 1
}

.flex-shrink-0 {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.flex-shrink-1 {
    -ms-flex-negative: 1;
    flex-shrink: 1
}

.flex-column {
    -ms-flex-direction: column;
    flex-direction: column;
}

.justify-content-start {
    -ms-flex-pack: start !important;
    -webkit-flex-pack: start !important;
    justify-content: flex-start !important;
}

.justify-content-end {
    -ms-flex-pack: end;
    -webkit-flex-pack: end;
    justify-content: flex-end
}

.justify-content-center {
    -ms-flex-pack: center;
    -webkit-flex-pack: center;
    justify-content: center
}

.justify-content-between {
    -ms-flex-pack: justify;
    -webkit-flex-pack: justify;
    justify-content: space-between
}

.justify-content-around {
    -ms-flex-pack: distribute;
    -webkit-flex-pack: distribute;
    justify-content: space-around
}

.align-items-start {
    -webkit-flex-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.align-items-end {
    -webkit-flex-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

.align-items-center {
    -webkit-flex-align: center;
    -ms-flex-align: center;
    align-items: center
}

.align-items-baseline {
    -ms-flex-align: baseline;
    align-items: baseline
}

.align-items-stretch {
    -ms-flex-align: stretch;
    align-items: stretch
}

.align-content-start {
    -ms-flex-line-pack: start;
    align-content: flex-start
}

.align-content-end {
    -ms-flex-line-pack: end;
    align-content: flex-end
}

.align-content-center {
    -ms-flex-line-pack: center;
    align-content: center
}

.align-content-between {
    -ms-flex-line-pack: justify;
    align-content: space-between
}

.align-content-around {
    -ms-flex-line-pack: distribute;
    align-content: space-around
}

.align-content-stretch {
    -ms-flex-line-pack: stretch;
    align-content: stretch
}

.align-self-auto {
    -ms-flex-item-align: auto;
    align-self: auto
}

.align-self-start {
    -ms-flex-item-align: start;
    align-self: flex-start
}

.align-self-end {
    -ms-flex-item-align: end;
    align-self: flex-end
}

.align-self-center {
    -ms-flex-item-align: center;
    align-self: center
}

.align-self-baseline {
    -ms-flex-item-align: baseline;
    align-self: baseline
}

.align-self-stretch {
    -ms-flex-item-align: stretch;
    align-self: stretch
}

.text-justify {
    text-align: justify
}

.text-wrap {
    white-space: normal
}

.text-nowrap {
    white-space: nowrap
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.text-center {
    text-align: center
}

.float-left {
    float: left
}

.float-right {
    float: right
}

.float-none {
    float: none
}

.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 10px 12px;
    font-size: 14px;
    line-height: 1.6;
    border-radius: 4px;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    outline: none;
    font-weight: 700;
}

.btn-blue {
    color: #fff;
    background: #0065ff;
}

.btn-primary {
    color: #fff;
    background-color: #fd4704;
    border-color: #fd4704;
}

    .btn-primary:hover {
        color: #fff;
        background-color: #fd4704;
        border-color: #fd4704;
    }

.btn.btn-disabled, .btn[disabled] {
    opacity: 0.5;
    cursor: no-drop;
}


.container {
    max-width: 1140px;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: -ms-flexbox !important;
    display: -moz-box-flexbox !important;
    display: -webkit-flex !important;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.font-size-12 {
    font-size: 12px !important;
}

.w-25 {
    width: 25%;
}

.w-50 {
    width: 50%;
}

.w-48 {
    width: 48%;
}

.w-75 {
    width: 75%;
}

.w-100 {
    width: 100%;
}

.w-auto {
    width: auto;
}

.h-25 {
    height: 25%;
}

.h-50 {
    height: 50%;
}

.h-75 {
    height: 75%;
}

.h-100 {
    height: 100%;
}

.h-auto {
    height: auto;
}

.mw-100 {
    max-width: 100%;
}

.mh-100 {
    max-height: 100%;
}

.m-0 {
    margin: 0;
}

.mt-0, .my-0 {
    margin-top: 0;
}

.mr-0, .mx-0 {
    margin-right: 0 !important;
}

.mb-0, .my-0 {
    margin-bottom: 0 !important;
}

.ml-0, .mx-0 {
    margin-left: 0 !important;
}



.m-15 {
    margin: 15px;
}

.ml-5 {
    margin-left: 5px;
}

.mr-5 {
    margin-right: 5px;
}

.mt-5 {
    margin-top: 5px;
}

.mb-5 {
    margin-bottom: 5px;
}

.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 #e5e8eb;
}

.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: 4px;
}

.rounded-top {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.rounded-right {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.rounded-bottom {
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
}

.rounded-left {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.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;
}

.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;
}

.box-shadow-top {
    box-shadow: 0 -8px 10px 0 #eaeaea;
}

.prefixInputIcon {
    position: absolute;
    top: 8px;
}

    .prefixInputIcon ~ .floating-input {
        padding: 7px 50px 7px 15px;
    }

.countryCode {
    font-size: 14px;
    font-weight: 500;
    color: #4c5a6f;
    top: 9px;
}

    .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;
}

.floating-disabled {
    pointer-events: none;
    opacity: 0.5;
}

.saveBtn {
    font-size: 10px;
    font-weight: 500;
    line-height: 1.8;
    text-align: left;
    color: #0065ff;
    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: #4c5a6f;
    }

    .ui-autocomplete li {
        border-bottom: 1px solid #e5e8eb;
    }

        .ui-autocomplete li.ui-menu-item a:hover {
            background: #f9f9f9;
            display: block;
        }
/*----------City Css End---------------*/
.bottomSpace {
    margin-bottom: 160px !important
}

.inputSearchIcon {
    background: #fff url(../../images/mobile/searchIcon.svg) right 9px no-repeat;
    background-size: 17px;
}

.infoWarningMsg {
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
    color: #f38e03;
    display: block;
    margin-top: 5px;
}

.errorMsg {
    display: block !important;
    color: #e74c3c !important;
    font-size: 12px;
    margin-top: 5px;
    line-height: 14px;
    font-weight: 400;
}
/*-------------Developer StyleSheet Start-----------*/
input.input-validation-error,
textarea.input-validation-error,
select.input-validation-error {
    border-bottom: 1px solid #e74c3c;
}

.field-validation-valid {
    display: none;
}

.field-validation-error {
    display: block;
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    line-height: 14px;
}

    .field-validation-error > span {
        color: #e74c3c;
    }
/*-------------Developer StyleSheet End-----------*/
span[id*="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: 1031;
    left: 0;
    top: 0;
    bottom: 0;
}

.inputLoader {
    height: 50%;
    width: 88%;
    background: rgba(245, 247, 248, 0.31);
    z-index: 3;
    right: 21px;
    top: 24px;
    left: initial;
}

.lds-css {
    position: absolute;
    top: 50%;
    left: 50%;
}

.inputLoader .lds-css {
    position: absolute;
    top: 50%;
    right: -11px;
    left: initial;
}

.lds-css + span {
    position: absolute;
    top: 53%;
    left: 50%;
    color: #2f3542;
    font-size: 12px;
    transform: translateX(-50%);
}

.lds-rolling div, .lds-rolling div:after {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 10px solid #2f3542;
    border-top-color: transparent;
    border-radius: 50%;
}

.lds-rolling div {
    -webkit-animation: lds-rolling 1s linear infinite;
    animation: lds-rolling 1s linear infinite;
}

    .lds-rolling div:after {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

.lds-rolling {
    width: 35px !important;
    height: 35px !important;
    -webkit-transform: translate(-17.5px, -17.5px) scale(0.175) translate(17.5px, 17.5px);
    transform: translate(-17.5px, -17.5px) scale(0.175) translate(17.5px, 17.5px);
}

@keyframes lds-rolling {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@-webkit-keyframes lds-rolling {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.pFixed {
    position: fixed;
    background: rgba(245, 247, 248, 0.59);
    z-index: 9999;
}

    .pFixed .lds-css + span {
        top: 58%;
        left: 47.5%;
    }

    .pFixed .lds-rolling div, .pFixed .lds-rolling div:after {
        width: 300px;
        height: 300px;
    }
/*--------------Loader css end------------*/


/*----------------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--------------*/
/*--------------Animate Loader css start------------------*/
.animateTextBox {
    background: transparent;
    position: fixed;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.loaderBox {
    width: 100%;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.clpImg {
    margin: auto;
    text-align: center;
}

.spinnerDots {
    width: 70px;
    text-align: center;
    margin: 35px auto 0px auto;
}

    .spinnerDots > div {
        background-color: #0065ff;
        border-radius: 100%;
        display: inline-block;
        width: 14px;
        height: 14px;
        -webkit-animation: rk-bouncedelay 1.4s infinite ease-in-out both;
        animation: rk-bouncedelay 1.4s infinite ease-in-out both;
    }

    .spinnerDots .dots1 {
        -webkit-animation-delay: -0.32s;
        animation-delay: -0.32s;
    }

    .spinnerDots .dots2 {
        -webkit-animation-delay: -0.16s;
        animation-delay: -0.16s;
    }

@-webkit-keyframes rk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes rk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

.animateText div {
    opacity: 0;
    width: 100%;
    position: absolute;
    font-weight: 600;
    font-size: 15px;
    overflow: hidden;
    color: #333333;
    text-align: center;
    -webkit-animation: animateLines 10s linear infinite 0s;
    -ms-animation: animateLines 10s linear infinite 0s;
    animation: animateLines 10s linear infinite 0s;
}

    .animateText div:nth-child(2) {
        -webkit-animation-delay: 2s;
        -ms-animation-delay: 2s;
        animation-delay: 2s;
        color: #333333;
    }

    .animateText div:nth-child(3) {
        -webkit-animation-delay: 4s;
        -ms-animation-delay: 4s;
        animation-delay: 4s;
        color: #333333;
    }

    .animateText div:nth-child(4) {
        -webkit-animation-delay: 6s;
        -ms-animation-delay: 6s;
        animation-delay: 6s;
        color: #333333;
    }

    .animateText div:nth-child(5) {
        -webkit-animation-delay: 8s;
        -ms-animation-delay: 8s;
        animation-delay: 8s;
        color: #333333;
    }

    .animateText div:nth-child(6) {
        -webkit-animation-delay: 10s;
        -ms-animation-delay: 10s;
        animation-delay: 10s;
        color: #333333;
    }

@-webkit-keyframes animateLines {
    0% {
        opacity: 0;
    }

    2% {
        opacity: 0;
        -webkit-transform: translateY(-30px);
    }

    5% {
        opacity: 1;
        -webkit-transform: translateY(0px);
    }

    17% {
        opacity: 1;
        -webkit-transform: translateY(0px);
    }

    20% {
        opacity: 0;
        -webkit-transform: translateY(30px);
    }

    80% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}
/*--------------Animate Loader css end--------------------*/
/*-------------------FloationgLabels Css Start-------------*/
.floating-label {
    position: relative;
}

.floating-input {
    font-size: 14px;
    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: 14px;
    padding: 0;
    display: block;
    width: 100%;
    height: 40px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #e5e8eb;
    font-weight: 600;
    color: #27313d;
    padding-right: 20px;
}


    .floating-input:focus, .floating-select:focus {
        outline: none;
    }

.floatingLabelText {
    color: #4c5a6f;
    font-size: 12px;
    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;
}

.floating-input.has-value ~ .floatingLabelText, .floating-input:focus ~ .floatingLabelText {
    top: -15px;
    font-size: 11px;
}

.floating-input.valid ~ .floatingLabelText {
    top: -15px;
    font-size: 11px;
}

.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: 25px;
}

.nriCountryCode.countryCodeValue, .nriCountryCode:focus {
    padding-left: 44px;
}

.customValue .onFocusSymbolPrefix ~ .prefixInputIcon, .cityInput .onFocusSymbolPrefix ~ .prefixInputIcon {
    display: none;
}

.annualIncomePostFixLabel {
    display: none;
}

.customValue .onFocusSymbolPrefix:focus ~ .prefixInputIcon, .cityInput .onFocusSymbolPrefix:focus ~ .prefixInputIcon {
    display: block;
    top: 15px;
    left: 20px;
}

.customValue .onFocusSymbolPrefix ~ .prefixInputIcon, .customValue .onFocusSymbolPrefix.floating-input:not(:placeholder-shown) ~ .prefixInputIcon, .cityInput .onFocusSymbolPrefix ~ .prefixInputIcon, .cityInput .onFocusSymbolPrefix.floating-input:not(:placeholder-shown) ~ .prefixInputIcon {
    top: 18px;
    left: 20px;
}

.customValue .onFocusSymbolPrefix:focus, .customValue .onFocusSymbolPrefix, .cityInput .onFocusSymbolPrefix:focus, .cityInput .onFocusSymbolPrefix {
    padding-left: 33px;
}

.floating-select:focus ~ label, .floating-select.valid ~ label, .floating-select.has-value ~ label {
    top: -15px;
    font-size: 11px;
}

.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: 7px 0;
    border-bottom: 1px solid #e5e8eb;
    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: #0065ff;
        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, .custom-select.error .selectLabelonPage {
    border-bottom: 1px solid #e74c3c;
}
/*-------------------FloationgLabels 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;
    font-weight: 600;
}

    .radio .label {
        position: relative;
        display: block;
        float: left;
        margin-right: 8px;
        width: 20px;
        height: 20px;
        margin-top: 0px;
        border: 2px solid #4c5a6f;
        border-radius: 100%;
        -webkit-tap-highlight-color: transparent;
    }

        .radio .label:after {
            content: '';
            position: absolute;
            top: 3px;
            left: 3px;
            width: 10px;
            height: 10px;
            border-radius: 100%;
            background: #225cff;
            transform: scale(0);
            -o-transform: scale(0);
            -webkit-transform: scale(0);
            -moz-transform: scale(0);
            -webkit-transition: all 0.2s ease;
            -o-transition: all 0.2s ease;
            -moz-transition: all 0.2s ease;
            transition: all 0.2s ease;
            opacity: 0.08;
            pointer-events: none;
        }

    .radio input[type="radio"]:checked .label:after {
        transform: scale(3.6);
    }

    .radio input[type="radio"]:checked + .label {
        border-color: #225cff;
    }

        .radio input[type="radio"]:checked + .label:after {
            -o-transform: scale(1);
            -webkit-transform: scale(1);
            -moz-transform: scale(1);
            transform: scale(1);
            transition: all 0.2s cubic-bezier(0.35, 0.9, 0.4, 0.9);
            -o-transition: all 0.2s cubic-bezier(0.35, 0.9, 0.4, 0.9);
            -webkit-transition: all 0.2s cubic-bezier(0.35, 0.9, 0.4, 0.9);
            -moz-transition: all 0.2s cubic-bezier(0.35, 0.9, 0.4, 0.9);
            opacity: 1;
        }

    .radio input[type="radio"]:checked ~ .radioBtnAnswerTxt {
        color: #225cff;
    }

.hidden {
    display: none;
}

.radioBtn ~ .floatingLabelText {
    top: -8px;
}

.radio input[type="radio"]:checked ~ .active {
    border: 1px solid #e74c3c;
}

.questionLabel {
    font-size: 12px;
    line-height: 1.7;
    font-weight: 500;
    color: #27313d;
}

.radio.radioBtnAbsolute {
    position: absolute;
    right: 10px;
    top: 10px;
}

.checkBox {
}

.checkboxLabel {
    position: relative;
    cursor: pointer;
    display: inline-block;
    margin-right: 10px;
}

.checkBox .CheckBoxTick {
    position: relative;
    display: block;
    float: left;
    margin-right: 10px;
    width: 20px;
    margin-top: 2px;
    height: 20px;
    border: 2px solid #4c5a6f;
    border-radius: 4px;
    -webkit-tap-highlight-color: transparent;
}


.checkboxLabel .CheckBoxTick:after {
    content: '';
    position: absolute;
    transform: scale(0);
    transition: all 0.2s ease;
    opacity: 0;
    pointer-events: none;
    right: 5px;
    top: 1px;
    width: 6px;
    height: 11px;
    border-right: 2px solid #225cff;
    border-bottom: 2px solid #225cff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.checkboxLabel .CheckBoxTick ~ .radioBtnAnswerTxt {
    font-size: 12px;
    font-weight: 500;
}

.checkBox input[type="checkbox"]:checked + .CheckBoxTick:after {
    transition: all 0.2s cubic-bezier(0.35, 0.9, 0.4, 0.9);
    opacity: 1;
}

.checkBox input[type="checkbox"]:checked ~ .radioBtnAnswerTxt {
    color: #27313d;
    font-weight: bold;
}

.checkboxLabel:hover .CheckBoxTick:after {
    transform: scale(1.1) rotate(45deg);
}

input[type="checkbox"]:checked + .CheckBoxTick {
    border-color: #225cff;
}

.addRemoveCheckbox input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    width: 100%;
    text-align: center;
    float: left;
    border: none;
    background: transparent;
    position: relative;
    overflow: visible;
}

.addRemoveCheckbox .addRemoveBtn:before {
    content: "Add";
    display: block;
    width: auto;
    font-size: 0.75rem;
    color: #0065ff;
    text-align: center;
    padding: 3px 10px 5px 25px;
    border: 1px solid #0065ff;
    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;
}

.pageNumber4 .addRemoveCheckbox .addRemoveBtn:before {
    content: "Switch to";
    background: transparent url(../../images/web/switchTo.svg) no-repeat 11px center;
    background-size: 11px;
}

.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: 0 8px 10px 0 #eaeaea;
    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;
}

.productLogo {
    width: 50%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.productName {
    font-size: 10px;
    font-weight: 500;
    margin-top: 4px;
    display: block;
    width: 100%;
}

.productLogo > img {
    width: 125px;
}

.headerRight {
    width: 50%;
    margin-right: 10px;
}

.totalAmt {
    font-size: 18px;
    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-weight: 500;
    font-size: 11px;
    margin-top: 3px;
}

    .knowYourPlan a {
        color: #0065ff;
        font-size: 11px;
        font-weight: 500;
    }

.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;
        }

.proToolTip {
    position: absolute;
    transition: all 0.3s ease;
    cursor: pointer;
    top: -20px;
    right: 0;
}

.proToolTipTxt {
    visibility: hidden;
    width: 255px;
    background-color: #27313d;
    border: 1px solid #27313d;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 5px 5px;
    position: absolute;
    z-index: 10;
    bottom: 70px;
    font-size: 10px;
    /*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%);
}

    .proToolTipTxt span {
        font-weight: 500;
    }

    .proToolTipTxt::after {
        content: "";
        position: absolute;
        border-width: 9px;
        border-style: solid;
        left: initial;
        right: 20px;
        top: initial;
        bottom: -18px;
        border-color: #27313d transparent transparent transparent;
    }

.proToolTip:hover + .proToolTipTxt {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate(0%, -10%);
    transform: translate(0%, -10%);
}

.proTipIcon {
    color: #d09103;
    font-size: 10px;
    background: #f7eecd;
    padding-right: 4px;
    border-radius: 0 10px 10px 0;
    font-weight: 500;
}

    .proTipIcon img {
        background: #fff;
        border-radius: 50%;
        padding: 2px;
        position: relative;
        left: -3px;
    }

.certifiedPartner {
    background: #fef7dc;
    border-radius: 30px;
    position: relative;
    width: auto;
}

.certifiedPartnerInfo {
    font-size: 10px;
    font-weight: 600;
    line-height: 1.71;
    letter-spacing: 0.2px;
    text-align: left;
    color: #d09103;
    cursor: pointer;
    padding: 3px 5px 3px 35px;
    min-height: 50px;
}

.hideSlider {
    height: 0 !important;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
}

.mdSpeaks {
    /*background-image: url("https://static.pbcdn.in/e2e-cdn/assets/images/hdfc-life-ceo-video-cover-mobile.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;*/
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.ceo-play-btn {
    position: absolute;
    top: 50%;
    transform: translate(0px,-50%);
    right: 8px;
}

    .ceo-play-btn span {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #0095ff;
        border-radius: 50%;
        cursor: pointer;
    }

        .ceo-play-btn span:before {
            content: '';
            width: 0;
            height: 0;
            border-top: 6px solid transparent;
            border-bottom: 6px solid transparent;
            border-left: 10px solid #fff;
            margin-left: 2px;
        }

video::-webkit-media-controls {
    background-color: transparent;
}

.CEO-slide {
    display: flex;
    width: 100%;
    height: 50px;
    opacity: 0.8;
    padding: 8px;
    background: linear-gradient(277deg, #EC2D32 12.53%, #264F98 97.64%);
    box-sizing: border-box;
    justify-content: flex-start;
}

    .CEO-slide .slide-col h3 {
        color: #fff;
        margin: 0;
        font-size: 11px;
        line-height: 1.4;
        font-weight: 700;
        padding: 3px 0;
    }

        .CEO-slide .slide-col h3 span {
            color: #fff;
        }

.ceo-name h4 {
    font-size: 8px;
    font-weight: 700;
    margin: 0;
    color: #E79140;
}

.ceo-name span {
    font-size: 5.5px;
    color: #004FAF;
    text-align: left;
}

.ceo-name-wrap {
    background: linear-gradient(266deg, #455EB9 6.03%, #263B7B 83.29%), #D9D9D9;
    padding: 3px;
    border-radius: 30px 26px 0 30px;
    position: absolute;
    bottom: 3px;
    left: 101px;
}

    .ceo-name-wrap:before {
        content: '';
        background: linear-gradient(266deg, #455EB9 6.03%, #263B7B 83.29%), #D9D9D9;
        width: 30px;
        height: 30px;
        display: block;
        position: absolute;
        left: -1px;
        top: -1px;
        border-radius: 50%;
    }

    .ceo-name-wrap:after {
        content: '';
        height: 24px;
        display: block;
        background: linear-gradient(180deg, #F4FFFF 0%, #D4EBF7 100%);
        position: absolute;
        border-radius: 50%;
        top: 2px;
        left: 2px;
        width: 24px;
    }

.ceo-name {
    background: linear-gradient(180deg, #F4FFFF 0%, #D4EBF7 100%);
    line-height: 1.5;
    padding: 0 7px 0 29px;
    border-radius: 30px 27px 0 30px;
    min-height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.ceo-color-name-wrap {
    position: absolute;
    bottom: 11px;
    left: 128px;
}

.ceo-color-name {
    text-align: center;
    display: flex;
    flex-direction: column;
}

    .ceo-color-name h4 {
        background: #084e85;
        margin: 0;
        padding: 2px 4px;
        color: #fff;
        font-size: 0;
        display: flex;
        align-items: center;
    }

    .ceo-color-name span {
        background: #ee252e;
        color: #fff;
        font-size: 0;
        padding: 1px 4px;
        display: flex;
        align-items: center;
    }

    .ceo-color-name h4:before {
        content: 'Mr. Anup Bagchi';
        font-size: 9px;
    }

    .ceo-color-name span:before {
        content: 'MD & CEO of ICICI Pru Life';
        font-size: 7px;
    }

.ceo-photo {
    width: 43px;
    position: absolute;
    right: 60px;
    bottom: 0;
}

.certifiedPartnerTitle {
    font-size: 14px;
    font-weight: 600;
}

.certifiedPartnerBody, .assurance-body {
    padding: 10px;
}

.assurance-body {
    padding: 2px;
}

.certifiedPartnerBlurBg, .invalidNumberBlurBg, .infoHousewifeBg, .delayPremiumBlurBg, .assurance-overlay, .image-popup-overlay {
    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(8,23,51,.62);
}

.infoHousewifeBg {
    display: block !important;
    opacity: 0;
    visibility: hidden;
}

    .infoHousewifeBg.infoHousewifeActive {
        opacity: 1;
        visibility: visible;
    }

.certifiedPartnerModal, .invalidNumberModal, .delayPremiumModal, .assurance-model, .image-popup-model {
    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;
}

.delayPremiumBody {
    padding: 10px;
}

.image-popup-model {
    width: calc(100% - 8px)
}

.delayPremiumBody {
    overflow-y: auto;
    max-height: 85vh;
}

.delayPremiumDiv img {
    width: 100%;
}

.delayPremiumCrossButton {
    cursor: pointer;
    border: 2px solid #fff;
    position: absolute;
    top: -35px;
    right: 0px;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.infoHousewifeModal {
    width: 100%;
    right: 0;
    left: 0;
    border-radius: 16px 16px 0 0;
    position: fixed;
    background: #fff;
    z-index: 1032;
    bottom: -100%;
    overflow: auto;
    transition: all 0.5s ease-in-out;
    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);
    max-height: calc(100vh - 100px);
    border-top: 8px solid #294476;
}

    .infoHousewifeModal.activeModal {
        bottom: 0;
    }

.infoHousewifeBody {
    padding: 30px 16px;
}


.infoHousewifeHeading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

    .infoHousewifeHeading h2 {
        font-size: 16px;
        margin: 0;
        font-weight: 600;
        width: 100%;
        text-align: center;
    }

.infoHousewifeContent {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    width: 100%;
    justify-content: space-between;
}

    .infoHousewifeContent > img {
        max-width: 50px;
        width: 100%;
    }

    .infoHousewifeContent:last-child {
        margin-bottom: 0;
    }

.infoHousewifeText {
    padding-left: 20px;
    width: 100%;
}

    .infoHousewifeText h3 {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 8px;
        margin-top: 0;
    }

    .infoHousewifeText ul li {
        font-size: 11px;
        padding-bottom: 6px;
        position: relative;
        display: block;
        padding-left: 10px;
        line-height: 1.5;
    }

        .infoHousewifeText ul li:before {
            content: '';
            width: 4px;
            height: 4px;
            background: #000;
            border-radius: 200px;
            position: absolute;
            top: 6px;
            left: 0;
        }

        .infoHousewifeText ul li:last-child {
            padding-bottom: 0;
        }



.peaceMind h3, .peaceMind li {
    color: #7C84D5;
}

.affordable h3, .affordable li {
    color: #673924;
}

.hassleFree h3, .hassleFree li {
    color: #1C3763;
}

.convenient h3, .convenient li {
    color: #344A55;
}

.peaceMind .infoHousewifeText ul li:before {
    background: #7C84D5;
}

.affordable .infoHousewifeText ul li:before {
    background: #673924;
}

.hassleFree .infoHousewifeText ul li:before {
    background: #1C3763;
}

.convenient .infoHousewifeText ul li:before {
    background: #344A55;
}

.certifiedPartnerDiv img, .assurance-div img {
    width: 100%;
}

.certifiedPartnerTitleCrossButton, .videoCloseBtn, .assurance-close, .image-popup-close {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    z-index: 99;
}

.assurance-close, .certifiedPartnerTitleCrossButton, .image-popup-close {
    right: 0;
    top: -36px;
    border: 2px solid #fff;
    border-radius: 4px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .assurance-close img, .certifiedPartnerTitleCrossButton img, .image-popup-close img {
        filter: brightness(0) invert(1);
        width: 14px !important;
    }

    .certifiedPartnerTitleCrossButton img, .videoCloseBtn img, .assurance-close img {
        width: 15px;
    }

.invalidNumberModal {
    width: 95%;
    padding: 40px;
    text-align: center;
}

    .invalidNumberModal h4 {
        font-size: 16px;
        line-height: 24px;
        margin-top: 0;
    }



.fiveStarImg {
    background: #fef7dc;
    box-shadow: 0 0 22px #cecece;
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    left: 0px;
    top: -2px;
}

.ceoSpeakLink {
    color: #d09103;
    font-size: 12px;
}

    .ceoSpeakLink:hover {
        color: #d09103;
    }

.proToolTip {
    position: absolute;
    transition: all 0.3s ease;
    cursor: pointer;
    top: -20px;
    right: 0;
}

.proToolTipTxt {
    visibility: hidden;
    width: 255px;
    background-color: #27313d;
    border: 1px solid #27313d;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 5px 10px;
    position: absolute;
    z-index: 10;
    bottom: 70px;
    font-size: 10px;
    /*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%);
}

    .proToolTipTxt span {
        font-weight: 500;
    }

    .proToolTipTxt::after {
        content: "";
        position: absolute;
        border-width: 9px;
        border-style: solid;
        left: initial;
        right: 20px;
        top: initial;
        bottom: -18px;
        border-color: #27313d transparent transparent transparent;
    }

.proToolTip:hover + .proToolTipTxt {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate(0%, -10%);
    transform: translate(0%, -10%);
}

.proTipIcon {
    color: #d09103;
    font-size: 10px;
    background: #f7eecd;
    padding-right: 4px;
    border-radius: 0 10px 10px 0;
    font-weight: 500;
}

    .proTipIcon img {
        background: #fff;
        border-radius: 50%;
        padding: 2px;
        position: relative;
        left: -3px;
    }

.coverForNotify {
    border: 1px solid #F8DE88;
    background: #FFF9EA;
    transform: translateY(12px);
    position: relative;
    box-shadow: 0 0 3px #FFEAB4;
    position: absolute;
    width: 100%;
    z-index: 2;
}

    .coverForNotify.show {
        transition: 0.5s all;
        transform: translateY(2px);
    }

.coverImportantInfo {
    font-size: 11px;
    color: #574815;
    font-weight: 500;
}

.coverImportantNote {
    font-size: 10px;
    color: #6e6645;
}

    .coverImportantNote span {
        color: #6e6645;
    }

.coverForNotifyClose {
    position: absolute;
    right: 10px;
    top: 5px;
}

    .coverForNotifyClose svg {
        fill: #84671C;
    }

.coverForNotifyTile {
    border: 1px solid #F8DE88;
    background: #FFF9EA;
    transform: translateY(0px);
    box-shadow: 0 0 3px #FFEAB4;
    /*position: absolute;*/
    width: 100%;
    z-index: 2;
    opacity: 1;
    visibility: visible;
    bottom: 0;
    left: 0;
    right: 0;
}

    .coverForNotifyTile.show {
        transition: 0.5s all;
        transform: translateY(2px);
        opacity: 1;
        visibility: visible;
    }

.coverForNotifyCloseTile {
    position: absolute;
    right: 10px;
    top: 5px;
    cursor: pointer;
}

    .coverForNotifyCloseTile svg {
        fill: #84671C;
    }

.coverImportantInfoTile {
    font-size: 12px;
    color: #574815;
    font-weight: 500;
    padding-right: 30px;
}

    .coverImportantInfoTile span {
        color: #574815;
    }

.coverForNotify {
    border: 1px solid #F8DE88;
    background: #FFF9EA;
    transform: translateY(12px);
    position: relative;
    box-shadow: 0 0 3px #FFEAB4;
    position: absolute;
    width: 100%;
    z-index: 2;
}

    .coverForNotify.show {
        transition: 0.5s all;
        transform: translateY(2px);
    }

.coverImportantInfo {
    font-size: 11px;
    color: #574815;
    font-weight: 500;
}

.coverImportantNote {
    font-size: 10px;
    color: #6e6645;
}

    .coverImportantNote span {
        color: #6e6645;
    }

.coverForNotifyClose {
    position: absolute;
    right: 10px;
    top: 5px;
}

    .coverForNotifyClose svg {
        fill: #84671C;
    }

.coverForNotifyTile {
    border: 1px solid #F8DE88;
    background: #FFF9EA;
    transform: translateY(0px);
    box-shadow: 0 0 3px #FFEAB4;
    /*position: absolute;*/
    width: 100%;
    z-index: 2;
    opacity: 1;
    visibility: visible;
    bottom: 0;
    left: 0;
    right: 0;
}

    .coverForNotifyTile.show {
        transition: 0.5s all;
        transform: translateY(2px);
        opacity: 1;
        visibility: visible;
    }

.coverForNotifyCloseTile {
    position: absolute;
    right: 10px;
    top: 5px;
    cursor: pointer;
}

    .coverForNotifyCloseTile svg {
        fill: #84671C;
    }

.coverImportantInfoTile {
    font-size: 12px;
    color: #574815;
    font-weight: 500;
    padding-right: 30px;
}

    .coverImportantInfoTile span {
        color: #574815;
    }

.certifiedPartner {
    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: 0;
    margin-top: 0;*/
}

.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: 50px;
}

.certifiedPartnerTitle {
    font-size: 14px;
    font-weight: 600;
    padding: 0 20px;
    display: none;
}

.certifiedPartnerBody {
    padding: 2px;
}

.certifiedPartnerBlurBg, .invalidNumberBlurBg {
    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);
}

.certifiedPartnerModal, .invalidNumberModal {
    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%;
}


.invalidNumberModal {
    width: 95%;
    padding: 40px;
    text-align: center;
}

    .invalidNumberModal h4 {
        font-size: 16px;
        line-height: 24px;
        margin-top: 0;
    }

.fiveStarImg {
    background: #fef7dc;
    box-shadow: 0 0 5px #cecece;
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    left: -1px;
    top: 0;
}

.viewCertificateBtn, .viewCertificateClaimBtn {
    display: flex;
    flex-grow: 1;
    justify-content: flex-end;
}

    .viewCertificateBtn span, .viewCertificateClaimBtn span {
        background: #FFFCF0 0% 0% no-repeat padding-box;
        border: 1px solid #0065FF;
        border-radius: 14px;
        color: #0065FF;
        font-size: 10px;
        line-height: normal;
        padding: 1px 10px;
        display: inline-block;
        font-weight: normal;
        text-transform: uppercase;
        margin-top: 0px;
        cursor: pointer;
        text-align: center;
    }

.trustTxt span {
    background: #EFCE50AD 0% 0% no-repeat padding-box;
    border-radius: 10px;
    padding: 1px 10px;
    font-size: 11px;
    color: #D09104;
    text-transform: uppercase;
    font-weight: normal;
}

.claimSettlement {
    background: transparent linear-gradient(290deg, #79C1EF 0%, #349ADB 100%) 0% 0% no-repeat padding-box;
    border: 1px solid #3A96D1;
    color: #fff;
    /* padding: 3px 5px 3px 25px; */
    border-radius: 40px 4px 4px 40px;
}

    .claimSettlement .certifiedPartnerInfo {
        color: #fff;
        /* padding: 3px 5px 3px 35px; */
    }

.claimSetImg {
    background: #fef7dc;
    box-shadow: 0 0 5px #cecece;
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    left: -1px;
    top: -2px;
}

.peaceMind span {
    background: #1F86C8 0% 0% no-repeat padding-box;
    border-radius: 10px;
    padding: 1px 10px;
    font-size: 11px;
    color: #fff;
    text-transform: uppercase;
    font-weight: normal;
}

.slick-slide {
    margin: 0px 1px;
}


.slick-prev:before,
.slick-next:before {
    color: black;
}


.slick-slide {
    transition: all ease-in-out 1s;
    opacity: 1;
}

.slick-active {
    opacity: 1;
}

.slick-current {
    opacity: 1;
}

.claimImg {
    padding: 10px;
    border-radius: 50%;
    background: #fef7dc;
}

.mdSpeaks .fiveStarImg {
    top: -1px;
}

.mdSpeaks {
    /*background: transparent linear-gradient( 290deg, #c3fbde 0%, #45ca86 100%) 0% 0% no-repeat padding-box;
    border: 1px solid #60d599;
    color:#fff;*/
}

    .mdSpeaks .viewCertificateBtn span, .mdSpeaks .viewCertificateClaimBtn span {
        /*border: 1px solid #60d599;*/
    }

.videoSlider {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    left: 0px;
    top: -3px;
}

.sliderPara {
    font-size: 10px;
    font-weight: normal;
    line-height: 16px;
}

.demoSlide .videoSlider {
    top: -4px;
    position: relative;
    left: 0px;
    width: 60px;
    height: 60px;
    left: 0px;
}

.demoSlide.claimSettlement .certifiedPartnerInfo {
    padding-left: 70px;
}

/*slider arrow css start*/

.regular.slider, .slick-list {
    width: 100%;
}

.hideHeaderSlider {
    height: 0px;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
}

.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: -8px;
}

    .slick-dots li {
        width: auto;
        height: auto;
        margin: 0 3px;
    }

        .slick-dots li.slick-active button:before {
            background: rgb(37, 56, 88, 0.6);
        }
/*slider arrow css end*/
.hide-slider {
    height: 0;
    overflow: hidden;
    visibility: visible;
}
/*-------------------Header Css End-------------*/
/*-------------------EditUserDetails Css Start-------------*/
.editUserDetails ul li {
    font-size: 10px;
    color: #27313d;
    font-weight: 500;
    letter-spacing: 0.15px;
}

    .editUserDetails ul li.dividerLine {
        color: #cacccd;
        padding: 0 3px;
    }

.rupee {
    font-size: inherit;
    font-weight: 500;
    color: inherit;
    margin-right: 3px;
}

    .rupee:before {
        font-family: system-ui,Segoe UI,Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol;
        content: "\20B9";
        display: inherit;
        font-size: inherit;
        color: inherit;
    }

.editLink {
    color: #0065ff;
    font-weight: 500;
    font-size: 11px;
}

.borderAfter:after {
    content: "";
    position: absolute;
    right: 0px;
    height: 45px;
    width: 1px;
    background-color: #eaeaea;
    top: -15px;
}
/*-------------------EditUserDetails Css End-------------*/
/*-------------------Mobile number OTP css start-------------------*/
.floating-input ~ .floatingLabelText span {
    font-size: 8px;
    line-height: 11px;
    display: block;
}

.verification-code-box .floatingLabelText, .floating-input.has-value ~ .floatingLabelText, .floating-input:focus ~ .floatingLabelText {
    top: -18px;
    font-size: 11px;
}

.floating-input.valid ~ .floatingLabelText, .floating-input[type="date"] ~ .floatingLabelText {
    top: -18px;
    font-size: 11px;
    /* color: #0065ff;*/
}


.verification-code-box {
    display: flex;
    width: 177px;
    align-items: center;
    position: absolute;
    padding-top: 2px;
    left: 130px;
    top: 0;
}

    .verification-code-box:before {
        content: '';
        position: absolute;
        width: 1px;
        background: #e5e8eb;
        top: 0;
        bottom: 0;
        left: -5px;
    }

.resendOtpBtn {
    display: inline-block;
    font-size: 12px;
    padding-left: 10px;
}

    .resendOtpBtn:hover {
        text-decoration: underline;
    }

.otptimer {
    display: inline-flex;
    margin-left: 10px;
    font-size: 11px;
    color: #757575;
}

.verification-code-box input {
    border: 1px solid #AFAFAF;
    border-radius: 4px;
    height: 32px;
    letter-spacing: 5px;
    font-size: 14px;
    padding: 0 5px;
    width: 65px;
    text-align: center;
    outline: none;
}

.verificationBtn {
    margin-left: 7px;
    display: block;
    min-width: 20px;
    height: 20px;
    background: url(https://static.pbcdn.in/e2e-cdn/assets/icons/icon-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 3px;
    display: flex;
    align-items: center;
}

    .otp-verified img {
        width: 16px;
        margin-right: 6px;
    }

.verificationBtnActive:after {
    display: none;
}

.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;
}

    .warningOrangeTxt span {
        font-size: 12px;
        text-align: left;
        justify-content: flex-start;
        color: #c36b02;
    }

.warningOrangeProductTxt {
    font-size: 12px;
    text-align: left;
}

.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;
            }

.amountInfo:hover .amountInfoTooltip {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate(0%, -10%);
    transform: translate(0%, -10%);
}
/*-------------------Mobile number OTP css end-------------------*/
/*-------------------Form Section Css start-------------*/
.amountInfo {
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.amountInfoTooltip {
    visibility: hidden;
    opacity: 0;
    width: 260px;
    background-color: #27313d;
    border: 1px solid #27313d;
    color: #fff !important;
    text-align: left;
    border-radius: 4px;
    padding: 10px 16px;
    position: absolute;
    z-index: 10;
    bottom: 165%;
    font-size: 12px;
    left: -108px;
    line-height: 18px;
    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;
    bottom: -18px;
    left: 104px;
    border-width: 9px;
    border-style: solid;
    border-color: #27313d transparent transparent transparent;
}

.amountInfo:hover .amountInfoTooltip {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate(0%, -10%);
    transform: translate(0%, -10%);
}

.amountInfo {
    position: initial;
}

.amountInfoTooltip {
    width: 100%;
    left: 0;
    right: 0;
    bottom: 25px;
}


.amountInfo .amountInfoTooltip::after {
    content: "";
    position: absolute;
    bottom: -18px;
    left: 104px;
    border-width: 9px;
    border-style: solid;
    border-color: #27313d transparent transparent transparent;
    display: none
}


.card {
    box-shadow: 0 2px 13px 0 rgba(76, 90, 111, 0.24);
    background-color: #ffffff;
}
/*-------------------Form Section Css End-------------*/

/*--------------------Upgrade Plan Css Start---------------------*/
.skipToAddOn a {
    color: #0065ff;
    font-size: 11px;
    font-weight: 500;
}

.titleHeaderBackArrowBox {
    width: 65%;
}

.skipToAddOn {
    width: 35%;
}

.titleHeaderBackArrow {
    border: 1px solid #4c5a6f;
    padding: 4px;
    line-height: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    width: 20px;
    height: 20px;
}

    .titleHeaderBackArrow a {
        line-height: 14px;
    }

.productPlanMainTitle {
    background-color: #f5f5f5;
}

.productPlanMainTitle {
    background-color: #fff;
    position: relative;
    margin-bottom: -4px;
    z-index: 1;
    border-bottom: 1px solid #eee;
}

.titleHeading {
    font-size: 14px;
    font-weight: 600;
    color: #4c5a6f;
}

.subHeading {
    font-size: 16px;
    font-weight: 600;
    color: #27313d;
    line-height: 20px;
    padding-right: 83px;
}

.smallPara {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.7;
}

.planOptionBox {
    position: relative;
    margin-top: 6px;
}

.planOptions .active {
    border: 1px solid #225cff;
    border-radius: 4px;
}

.infoIcon {
    cursor: pointer;
    width: 19px;
    height: 19px;
}

.infoBoxClose {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background-color: #ff6c6c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.infoIconDetailBox {
    position: absolute;
    bottom: 58px;
    box-shadow: 0 0 27px 0 rgba(76, 90, 111, 0.33);
    border: solid 1px #cccccc;
    background-color: #ffffff;
    width: 80%;
    right: 10px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-out;
    -webkit-transform: translate(0%, 10%);
    transform: translate(0%, 10%);
}

    .infoIconDetailBox.clicked {
        visibility: visible;
        opacity: 1;
        -webkit-transform: translate(0%, 10%);
        transform: translate(0%, 0%);
    }

    .infoIconDetailBox:before {
        content: '';
        position: absolute;
        transform: rotate(45deg);
        width: 18px;
        height: 18px;
        bottom: -10px;
        right: 12px;
        /* z-index: -1; */
        /* box-shadow: 0 0 27px 0 rgba(76, 90, 111, 0.33); */
        border: solid 1px #cccccc;
        border-left: none;
        background: transparent;
        border-top: none;
    }

    .infoIconDetailBox:after {
        top: 100%;
        right: 9px;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-color: rgba(255, 255, 255, 0);
        border-top-color: #fff;
        border-width: 12px;
    }

.infoIconDetailBoxBtm {
    bottom: initial;
    top: 53px;
    z-index: 2;
    right: 10px;
}

    .infoIconDetailBoxBtm:before {
        transform: rotate(-135deg);
        top: -10px;
        right: 10px;
    }

    .infoIconDetailBoxBtm:after {
        top: initial;
        bottom: 100%;
        right: 7px;
        transform: rotate(-181deg);
        border-top-color: #f5f5f5;
    }

.infoBoxHeader {
    box-shadow: 0 1px 0 0 #eaeaea;
    background-color: #f5f5f5;
    font-size: 14px;
    line-height: 1.43;
    text-align: center;
    color: #4c5a6f;
}

.infoBoxLable {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.6;
    text-align: left;
    color: #4c5a6f;
}

.infoBoxValue {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.6;
    text-align: right;
    color: #2c3642;
}

.infoBoxRiderTitle {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.6;
    text-align: left;
    color: #4c5a6f;
}

.infoBoxRiderLable {
    font-size: 11px;
    line-height: 1.6;
    text-align: left;
    color: #4c5a6f;
    font-weight: normal;
}

.infoBoxBorder {
    border-bottom: solid 1px #f5f5f5;
    background-color: #ffffff;
}

.infoBoxRiderValue {
    font-size: 13px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    /* line-height: 2.33; */
    letter-spacing: normal;
    text-align: right;
    color: #2c3642;
}

.floatingLabelTextDullClr {
    color: #27313d;
}

.totalPrice {
    font-size: 12px;
    font-weight: 500;
}

.longtxtRadio {
    width: 80%;
}

.toolTipRight {
    background-color: #4b5b6e;
    color: #fff;
    padding: 2px 15px 2px 10px;
    position: relative;
    font-size: 8px;
    font-weight: 500;
    color: #fcfdff;
    display: inline-block;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
    top: -3px;
    line-height: 11px;
}

.leftArrow {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 53%;
    left: 87px;
    box-sizing: border-box;
    border: 6px solid black;
    border-color: transparent #ffffff #ffffff transparent;
    transform-origin: 0 0;
    transform: rotate(-225deg);
}

.alertText {
    font-size: 10px;
    font-weight: 400;
    color: #4c5a6f;
}

.smallLabel {
    font-size: 11px;
    color: #4c5a6f;
    font-weight: 500;
}

.warningText {
    font-size: 10px;
    font-weight: 400;
    color: rgba(76, 90, 111, 0.59);
    margin-top: 5px;
}

.benefitNominee .radio input[type="radio"] ~ .longtxtRadio {
    color: #4c5a6f;
    width: 90%;
}

.benefitNominee .radio input[type="radio"]:checked ~ .longtxtRadio {
    color: #27313d;
}

    .benefitNominee .radio input[type="radio"]:checked ~ .longtxtRadio span {
        color: #27313d;
    }

.optionSecond, .optionFirst, .optionThird {
    border-radius: 4px;
    background-color: rgba(250, 250, 250, 0.67);
    padding: 20px;
}

.additionalPremiumValues .moresavingOptions {
    color: #0065ff;
    font-weight: 500;
    font-size: 12px;
    cursor: pointer;
    margin: 0;
    width: 100%;
}

.moreOptionTable .radio .label {
    width: 18px;
    height: 18px;
}

    .moreOptionTable .radio .label:after {
        width: 8px;
        height: 8px;
    }

.moreOptionBlurBg {
    display: none;
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1031;
    -webkit-transition: all .5s ease-in;
    transition: all .5s ease-in;
    background: rgba(0, 0, 0, 0.5);
}

.moreOptionModal {
    border-radius: 4px;
    background: #fff;
    display: none;
    width: 90%;
    margin: 0 auto;
    position: fixed;
    z-index: 1032;
    /*height: 85vh;
    top: 50%;*/
    height: 90%;
    top: 53%;
    left: 50%;
    /* padding: 30px; */
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 1px -2px rgba(0,0,0,.2), 0 1px 17px 0 rgba(0,0,0,.14), 0 1px 2px 0 rgba(0,0,0,.12);
}

.moreOptionTable {
    /*max-height: 60vh;*/
    overflow-y: auto;
    height: 100%;
    padding: 30px 20px;
    background: #fff;
    border-radius: 5px;
}

.moreOptionModal table {
    width: 100%;
}

.colValue {
    padding: 20px 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
}

.moreOptionHeader .col1, .moreOptionBody .col1 {
    width: 10%;
}

.moreOptionHeader .col2, .moreOptionBody .col2 {
    width: 30%;
}

.moreOptionHeader .col3, .moreOptionBody .col3 {
    width: 30%;
    justify-content: center;
    text-align: center;
}

.moreOptionHeader .col4, .moreOptionBody .col4 {
    width: 30%;
}

.moreOptionHeader .colValue {
    padding: 15px 20px;
}

.moreOptionHeader {
    background: #f7f7f7;
    font-weight: 500;
    color: #27313d;
    border-bottom: 1px solid #e5e8eb;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.moreOptionBody .colValue {
    font-weight: 500;
    color: #27313d;
    border-bottom: 1px solid #e5e8eb;
}

    .moreOptionBody .colValue span {
        color: #27313d;
    }

.moreOptionBody.active {
    background: rgba(245, 249, 255, 0.65);
}

    .moreOptionBody.active .colValue {
        font-weight: 600;
    }

.moreOptionModal table tbody tr.active td {
    background: #f8fbff;
    /*cursor:pointer;*/
}

.effectiveSavingLink {
    color: #0065ff;
    text-decoration: underline;
}

    .effectiveSavingLink:hover {
        text-decoration: underline;
    }

.effectiveSavingNote {
    font-size: 10px;
    padding: 10px 10px;
    text-align: center;
    justify-content: center;
    color: #27313d;
    align-items: center;
}

.moreOptionCrossButton {
    width: 26px;
    height: 26px;
    position: absolute;
    top: -35px;
    right: 0;
    border: 2px solid #fff;
    border-radius: 4px;
    cursor: pointer;
}

.moreOptionTitle {
    color: #4c5a6f;
    line-height: 22px;
    font-size: 14px;
    font-weight: 500;
}

.linkDetailsDiv {
    box-shadow: 0 0 13px 0 rgba(202, 204, 205, 0.57);
    border-bottom: 1px solid #e5e8eb;
}

.linkDetails {
    width: 33%;
    padding: 15px 15px;
    font-size: 12px;
    color: #27313d;
}

.linkDetailsBg {
    background: #fafafa;
    color: #27313d;
}

.linkCol2 {
    color: #27313d;
    font-weight: 600;
}

.linkCol3 {
    color: #27313d;
    font-weight: 600;
}

.savingAmtDiv .savingAmt {
    border: 1px dotted #ffcdb9;
    color: #fd4704;
    width: 100%;
    border-radius: 4px;
    text-align: center;
    padding: 10px;
    font-weight: 600;
    font-size: 12px;
}

.savingAmtDiv .effectiveSaving {
    color: #20a067;
    border-color: rgba(0, 195, 109, 0.58);
}

.savingAmtDiv {
    width: 67%;
}

.savingDetails {
    padding: 15px 10px 10px;
}

.effectiveSavingDetails {
    padding: 0 10px 20px;
}

.savingButtonBox {
    position: fixed;
    width: 100%;
    bottom: 20px;
    background: #fff;
    left: 0;
    right: 0;
    padding: 0 20px;
}

.moreOptionDiv {
    height: 79%;
    overflow-y: auto;
}
/*.moreOptionCrossButton:after, .moreOptionCrossButton:before {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 18px;
    width: 2px;
    background-color: #333;
}
.moreOptionCrossButton:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.moreOptionCrossButton:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}*/

.savingAmount {
    background: transparent linear-gradient(283deg, #9922FF 0%, #225CFF 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 1px 1px #6119f426;
    letter-spacing: 0px;
    color: #fff;
    text-shadow: 0px 1px 1px #00000029;
    border-radius: 4px;
    padding: 1px 5px;
    font-weight: 500;
}

.boxShadowAnimate {
    -moz-animation-duration: 0.5s;
    -webkit-animation-duration: 0.5s;
    -moz-animation-name: changeShadow;
    -webkit-animation-name: changeShadow;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-direction: alternate;
    -webkit-animation-direction: alternate;
}

@-webkit-keyframes changeShadow {
    from {
        box-shadow: 0px 0px 10px #e0ecff;
    }

    to {
        box-shadow: 0px 0px 20px #dceaff;
    }
}


.discountMsg {
    color: #0065ff;
    text-align: left;
    font-size: 12px;
    margin-top: 30px;
}

.showGraph {
    background: transparent linear-gradient(283deg, #9922FF 0%, #225CFF 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 1px 1px #6119f426;
    letter-spacing: 0px;
    color: #fff !important;
    text-shadow: 0px 1px 1px #00000029;
    border-radius: 4px;
    padding: 1px 7px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
}


.aboutinsurer-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px;
    box-sizing: border-box;
}

    .aboutinsurer-row > * {
        padding: 0 8px;
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 16px;
    }

.aboutinsurer-content {
    height: 100%;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 24px #CCE1FF12;
    border: 1px solid #B2D1FF;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 12px;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}

.aboutinsurer-text {
    display: flex;
    align-items: flex-start;
    color: #27313D;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    box-sizing: border-box;
}

    .aboutinsurer-text span:not(.rupee) {
        display: block;
        color: #4C5A6F;
        font-size: 12px;
        font-weight: normal;
    }

    .aboutinsurer-text img {
        padding-top: 5px;
        padding-right: 8px;
    }

.aboutinsurer-smalltext {
    font-size: 11px;
    color: #768DAF;
    margin-top: 5px;
    display: block;
    text-align: right;
    width: 100%;
}

.aboutinsurer-fleximages {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 480px;
    margin: 13px auto 0 auto;
}

/*.clsOccupationProof {
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
    color: #f38e03;
    margin-top: 5px;
}*/

.spnNotifymsg {
    line-height: 15px;
    color: #0D537C;
    padding: 4px;
    display: flex;
    font-size: 12px;
    align-items: flex-start;
}

    .spnNotifymsg span {
        color: #0D537C;
    }

@media only screen and (max-width: 394px) {

    .linkDetails, .moreOptionHeader .colValue, .moreOptionBody .colValue {
        padding: 15px 10px;
    }

    .savingDetails {
        padding: 15px 10px 10px;
    }

    .effectiveSavingDetails {
        padding: 0 10px 20px;
    }
}

.peopleOptedBox {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.percentage {
    color: #0ea763;
    font-weight: 600;
    font-size: 11px;
}

.peopleOpted {
    color: #0ea763;
    font-weight: 500;
    font-size: 9px;
}

.forOption {
    color: #0ea763;
    font-weight: 500;
    font-size: 8px;
}

.moneyBackInfo {
    display: block;
    font-weight: 400;
    font-size: 13px;
    margin-top: 5px;
}

.benefitNominee .radio input[type="radio"]:checked ~ .longtxtRadio span.moneyBackInfo {
    font-weight: 400;
}

.customerLiking {
    /*position: absolute;
    left: 0;
    right: 0;
    bottom: 42px;*/
    text-align: center;
    margin-top: 10px;
    margin-bottom: -28px;
}

.customerLiking__Text {
    background: #FFFCED 0% 0% no-repeat padding-box;
    border: 1px dashed #F5E091;
    border-radius: 5px;
    text-align: center;
    letter-spacing: 0px;
    color: #AF7D10;
    padding: 1px 5px;
    font-size: 9px;
    font-weight: 400;
    display: inline-block;
    margin: 0px 0 10px;
}

/*--------------------Upgrade Plan Css End---------------------*/
/****Special Feature Css start***/
.special-feature-wrapper {
    padding: 0 10px;
    margin-top: 10px;
    gap: 5px;
}

.specialFeature {
    border-radius: 8px;
    border: 1px solid #EBEBEB;
    padding: 12px;
    background: #fff;
    box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.08), 0px 4px 8px -2px rgba(0, 0, 0, 0.04);
}

.specialFeatureIcons {
    width: 40px;
    height: 40px;
    border-radius: 32px;
    margin-bottom: 7px;
}

.specialFeatureHeading {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.71;
    letter-spacing: 0.2px;
    text-align: center;
    color: #27313d;
}

.specialFeatureInfo {
    font-size: 9px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: normal;
    text-align: center;
    color: #4c5a6f;
}

    .specialFeatureInfo span {
        color: #0065ff;
        cursor: pointer;
    }

.specialFeature:first-child .specialFeatureIcons img {
    filter: brightness(0) saturate(100%) invert(32%) sepia(21%) saturate(1280%) hue-rotate(294deg) brightness(94%) contrast(86%);
}

.specialFeature:nth-child(2) .specialFeatureIcons img {
    filter: brightness(0) saturate(100%) invert(53%) sepia(71%) saturate(235%) hue-rotate(102deg) brightness(92%) contrast(91%);
}

.specialFeature:last-child .specialFeatureIcons img {
    filter: brightness(0) saturate(100%) invert(40%) sepia(3%) saturate(6595%) hue-rotate(230deg) brightness(109%) contrast(80%);
}
/****Special Feature Css End***/
/*--------------------Rider Css Start---------------------*/
.recommendIcon {
    width: 33px;
    height: 33px;
    border-radius: 68px;
    background-color: #0065ff;
}

.recommendText {
    font-size: 10px;
    font-weight: 500;
    color: #225cff;
    line-height: 16px;
}

.cardFooterBackground {
    background-color: rgba(0, 101, 255, 0.05);
    border-color: rgb(242, 247, 255);
}

.additionalPremiumLabel {
    color: #4c5a6f;
    top: -12px;
    font-size: 11px;
    font-weight: 500;
    position: absolute;
    pointer-events: none;
    line-height: 12px;
}

.additionalPremiumValues {
    font-weight: 600;
    font-size: 14px;
    color: #27313d;
    margin-top: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.dobIcon {
    top: 4px;
}

.userTotalAge {
    position: absolute;
    top: 7px;
    background: #f5f6fa;
    right: 0px;
    text-align: center;
    display: block;
    padding: 4px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.17;
    color: #27313d;
    width: 69px;
    height: 22px;
    border-radius: 4px;
}

.annualIncomePostFixLabel {
    position: absolute;
    top: 9px;
    background: #f5f6fa;
    right: 0px;
    text-align: center;
    padding: 4px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.17;
    color: #27313d;
    width: auto;
    height: 22px;
    border-radius: 4px;
}

.valueLabelOverlap {
    position: absolute;
    left: 0;
    z-index: 1;
    width: 78%;
    background: #fff;
    font-weight: 600;
    font-size: 14px;
    color: #27313d;
    text-align: left;
}

.pageNumber5 .annualIncomePostFixLabel {
    width: auto;
    font-size: 10px;
}

    .pageNumber5 .annualIncomePostFixLabel.valueLabelOverlap {
        width: 78%;
        font-size: 14px;
    }

.editIcon ~ .floating-input {
    pointer-events: none;
    cursor: none;
}

    .editIcon ~ .floating-input.animateBorder ~ .border-bottom-animation.left {
        background: #0065ff;
        width: 100%;
        left: 0;
    }

    .editIcon ~ .floating-input.animateBorder {
        pointer-events: initial;
        cursor: pointer;
    }
/*--------------------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---------------*/
/*--------------------checkoutTermsCondition css start----------*/
.termsDetails {
    background-color: #FFF5DB;
}

.termsDetails {
    color: #27313D;
    font-size: 12px;
}

.termsPayDetail {
    color: #27313D;
}

.checkoutTermsCondition .checkboxLabel .CheckBoxTick ~ .radioBtnAnswerTxt {
    font-size: 12px;
    font-weight: 500;
    color: #4C5A6F;
}

.checkoutTermsCondition .checkBox input[type="checkbox"]:checked ~ .radioBtnAnswerTxt {
    font-weight: 500;
    color: #4C5A6F;
}

.checkoutTermsCondition input[type="checkbox"]:checked:disabled + .CheckBoxTick {
    opacity: 0.5;
    cursor: no-drop;
}

.checkoutTermsCondition .checkboxLabel {
    line-height: 20px;
}
/*--------------------checkoutTermsCondition css End----------*/
/*---------------------Know Your PopUp Css Start--------------*/
.knowYourPlanHeader {
    box-shadow: 0 1px 5px 0 #eaeaea;
    background-color: #fff;
    position: fixed;
    width: 100%;
    z-index: 2;
}

    .knowYourPlanHeader + .formprogressBar {
        margin-top: 80px;
    }

.knowYourPopUp {
    width: 100%;
    height: 100%;
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 200;
    background: #fff;
    transition: all .3s linear;
    z-index: 1031;
    text-align: center;
}

.progressbar {
    width: 96%;
    margin: 0 auto;
    display: flex;
}

    .progressbar li {
        list-style-type: none;
        width: 100%;
        float: left;
        font-size: 12px;
        position: relative;
        text-align: center;
        color: #7d7d7d;
    }

        .progressbar li.completed:after {
            background-color: #4c5a6f;
        }

        .progressbar li:before {
            position: relative;
            z-index: 1;
            width: 13px;
            height: 13px;
            content: "";
            counter-increment: step;
            line-height: 30px;
            border: none;
            display: block;
            text-align: center;
            margin: 0px auto 10px auto;
            border-radius: 50%;
            border: 1px solid #e5e8eb;
            background: #fff;
        }

        .progressbar li:after {
            width: 100%;
            height: 1px;
            content: '';
            position: absolute;
            background-color: #e1e1e1;
            top: 6px;
            left: 0%;
            z-index: -1;
        }
        /*.progressbar li:first-child:after{content: none;}*/
        .progressbar li.active:before {
            background: #fff;
            color: #fff;
            border: solid 1px #0065ff;
            animation: glowing 1s infinite;
            -webkit-box-shadow: 0 0 2px 3px #8db7f7;
            -moz-box-shadow: 0 0 2px 3px #8db7f7;
            -o-box-shadow: 0 0 2px 3px #8db7f7;
            box-shadow: 0 0 2px 3px #8db7f7;
        }

@keyframes glowing {
    0% {
        box-shadow: 0 0 0 0 #8db7f7;
    }


    100% {
        box-shadow: 0 0 0 7px rgba(141, 183, 247, 0.09)
    }
}

.progressbar li span {
    font-size: 10px;
    font-weight: 500;
    line-height: 1.1;
    color: #4c5a6f;
}

.progressbar li.active span {
    color: #0065ff;
    font-weight: 500;
}

.progressbar li.active em {
    content: "";
    width: 100%;
    background-color: #0065ff;
    height: 1px;
    display: inline-block;
    position: absolute;
    top: 15px;
    right: -48%;
    z-index: 1;
}

.progressbar li.active:last-child em {
    content: none;
    border: none;
}

.progressbar li.half em {
    content: "";
    width: 100%;
    display: inline-block;
    position: absolute;
    top: 6px;
    right: 0;
    z-index: 0;
}

.progressbar li.active.completed em {
    border-color: #4c5a6f;
}

.progressbar li.completed:before {
    background-color: #4c5a6f;
    box-shadow: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progressbar li:not(.completed) a {
    cursor: default;
}

.progressbar li.completed .tickIcon:before {
    content: '';
    position: absolute;
    transform: scale(0);
    transition: all 0.2s ease;
    z-index: 1;
    right: 0;
    left: 0;
    margin: auto;
    top: 3px;
    width: 3px;
    justify-content: center;
    height: 6px;
    align-items: center;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.progressbar li.active.completed span {
    color: #4c5a6f;
}

.knowYourPopUp.show {
    opacity: 1;
    visibility: visible;
}

.opaquerLayer {
    position: fixed;
    background: rgba(255,255,255,1);
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
    opacity: 0;
    transition: all .3s;
    height: 100%;
    visibility: hidden;
    z-index: -1;
}

    .opaquerLayer.show {
        opacity: 1;
        visibility: visible;
    }

.downloadBrochure {
    border: 2px solid #4c5a6f;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.33;
    height: 26px;
    color: #4c5a6f;
    display: flex;
    align-items: center;
    padding: 0 10px;
    width: 161px;
}

a.downloadBrochure:hover {
    color: #4c5a6f;
}

.downloadBrochure > img {
    margin-right: 5px;
    margin-top: 1px;
}

.knowYourPlanCloseBtn {
    border: 2px solid #4c5a6f;
    padding: 0px 6px;
    line-height: 23px;
    cursor: pointer;
    width: 26px;
}

.knowYourPlanBackArrow {
    border: 2px solid #4c5a6f;
    padding: 0px 6px;
    line-height: 23px;
    cursor: pointer;
}

.planInfoTitle {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.44;
    color: #27313d;
    margin: 0;
}

.planInfoSubTitle {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.86;
    color: #27313d;
    margin: 0;
    line-height: 21px;
}

.planInfoSublargeTitle {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.86;
    color: #27313d;
}

.planInfoPara {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.83;
    color: #4c5a6f;
    line-height: 22px;
    margin: 0;
}

.verticalScroll {
    height: 90%;
    overflow-y: scroll;
    overflow-x: hidden;
}

.bottomFixedHeight {
    height: 110px;
}

.knowMoreToolTipRight {
    background-color: #4b5b6e;
    color: #fff;
    padding: 4px 18px;
    position: relative;
    font-size: 12px;
    font-weight: 500;
    color: #fafafc;
    display: inline-block;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

.knwoMoreRightArrow {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 13px;
    right: -4px;
    box-sizing: border-box;
    border: 9px solid black;
    border-color: transparent #4b5b6e #4b5b6e transparent;
    transform-origin: 0 0;
    transform: rotate(-45deg);
}

.stageText {
    font-size: 12px;
    font-weight: 500;
}

.paidBenefit {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.83;
}

.borderLine {
    background-color: #ccc;
    height: 1px;
    flex-grow: 1;
}

.stepsCount {
    font-size: 10px;
    font-weight: 500;
    line-height: 2.2;
}

    .stepsCount span {
        font-size: 14px;
        font-weight: 600;
        color: #27313d;
    }

.criticalList {
    font-size: 12px;
    font-weight: 500;
    color: #0065ff;
}

.demoVideo {
    cursor: pointer;
}

.twoMinVideoText {
    position: absolute;
    top: 5px;
    left: 10px;
    font-size: 12px;
    font-weight: 500;
    line-height: 2.17;
    text-align: left;
    color: #ffffff;
}

.autoPlayIcon {
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
}

.videoinPoPUp {
    position: fixed;
    width: 94%;
    top: 0;
    padding: 32px 10px 10px 10px;
    background-color: #fff;
    z-index: 1033;
    margin: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 1px 13px 0 rgba(76, 90, 111, 0.19);
}

.videoopaquerLayer {
    background-color: rgba(0, 0, 0, 0.87);
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    z-index: 1032;
}

.crossBtn {
    width: 26px;
    height: 26px;
    position: absolute;
    top: -35px;
    right: 0;
    border: 2px solid #fff;
    border-radius: 4px;
}

.planInfoTickSubPoints {
    width: 20px;
    height: 20px;
    border: 2px solid #cacccd;
    border-radius: 50%;
    margin-top: 2px;
    position: relative;
}

    .planInfoTickSubPoints:before {
        content: '';
        position: absolute;
        transform: scale(0);
        transition: all 0.2s ease;
        z-index: 1;
        right: 0px;
        left: 0;
        margin: auto;
        top: 3px;
        width: 5px;
        justify-content: center;
        height: 8px;
        align-items: center;
        border-right: 2px solid #cacccd;
        border-bottom: 2px solid #cacccd;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
/*--------------------Know Your PopUp Css End----------------------*/
/*--------------------19 Crtical Illness PopUp Css End----------------------*/
.criticalIllnessPopUp {
    position: fixed;
    z-index: 1050;
    width: 100%;
    height: 100%;
    top: 0;
    background: #fff;
    overflow: auto;
}

.criticalIllnessHeader {
    background-color: #fafafa;
}

.criticalList {
    background: #fff;
}

    .criticalList ul {
        counter-reset: list;
    }

        .criticalList ul li {
            font-size: 12px;
            font-weight: 500;
            line-height: 2.5;
            text-align: left;
            color: #27313d;
        }

    .criticalList li:before {
        counter-increment: list;
        content: counter(list);
        margin-right: 10px;
    }

.criticalillnessTitle {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.44;
    text-align: center;
    color: #27313d;
    margin: 0;
}

.criticalIllnesscloseBtn {
    position: absolute;
    right: 20px;
    top: 10px;
}
/*--------------------19 Crtical Illness  PopUp Css End----------------------*/
/*---------------------Fixed Header Css Start-------------------------------*/
.fixedHeader {
    position: sticky;
    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%;
    justify-content: center;
    padding-right: 6px !important;
    !i;
    !;
    !o;
    !;
}

.customSelectLabel {
    color: #4c5a6f;
    font-size: 11px;
    font-weight: 500;
    position: absolute;
    pointer-events: none;
    left: 0px;
    right: 0;
    top: -15px;
    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, .customDropDownOnPage {
    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, .customDropDownOnPage 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, .customDropDownOnPage.dropDownAnimation {
    opacity: 1;
    z-index: 1032;
    visibility: visible;
}

.customDropDown li, .customDropDownOnPage li {
    height: auto;
    cursor: pointer;
    padding: 15px 20px;
    font-weight: 500;
    border-bottom: 1px solid #e5e8eb;
    font-size: 16px;
    color: #4c5a6f;
    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 #e5e8eb;
    font-size: 16px;
    color: #4c5a6f;
    background: #fff;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    position: relative;
}

    .cityCustomDropDown li > a {
        font-weight: 500;
        font-size: 16px;
        color: #4c5a6f;
        padding: 15px 20px;
        display: block;
        position: relative;
        z-index: 1;
    }

    .customDropDown li.active, .cityCustomDropDown li.active a, .customDropDownOnPage li.active {
        font-weight: 600;
        color: #27313d;
    }


    .customDropDown li:before, .cityCustomDropDown li:before, .customDropDownOnPage li:before {
        content: "";
        position: absolute;
        right: 20px;
        top: 17px;
        display: block;
        width: 20px;
        height: 20px;
        margin-top: 0px;
        border: 2px solid #4c5a6f;
        border-radius: 100%;
        -webkit-tap-highlight-color: transparent;
    }

    .customDropDown li.active:before, .cityCustomDropDown li.active:before, .customDropDownOnPage li.active:before {
        border-color: #225cff;
    }

    .customDropDown li.active:after, .cityCustomDropDown li.active:after, .customDropDownOnPage li.active:after {
        content: '';
        position: absolute;
        top: 22px;
        right: 25px;
        width: 10px;
        height: 10px;
        border-radius: 100%;
        background: #225cff;
        opacity: 1;
        pointer-events: none;
    }

    .customDropDown li:last-child, .cityCustomDropDown li:last-child, .customDropDownOnPage li:last-child {
        border-bottom: none;
    }



.selectLabel, .selectLabelonPage {
    position: relative;
    font-size: 14px;
    padding: 0;
    display: block;
    width: 100%;
    height: 40px;
    background-color: transparent;
    border: none;
    font-weight: 600;
    color: #27313d;
    padding-right: 0px;
    cursor: pointer;
    justify-content: center;
}

    .selectLabel[disabled], .selectLabelonPage[disabled] {
        cursor: no-drop;
        opacity: 0.45;
    }

    .selectLabel > span, .selectLabelonPage > span {
        font-weight: 600;
        color: #27313d;
        padding-right: 3px;
    }

    .selectLabel:after, .selectLabelonPage: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);
        margin-left: auto;
    }

.selectLabelonPage {
    justify-content: flex-start;
}

    .selectLabelonPage:after {
        margin-left: auto;
    }
/*-----------------Custom Select Dropdown Css End---------------------*/
/*-------------------Process Validation Css Start-------------*/
.processValidationTitle {
    color: #27313d;
    font-weight: 600;
    font-size: 18px;
    border-bottom: 1px solid #e5e8eb;
}

.processValidationInfoBox {
}

.nameTitle {
    color: #27313d;
    font-weight: 600;
    font-size: 16px;
}

.infoPara {
    font-size: 12px;
    color: #27313d;
}


/****Sum Assured Popup Css start***/
.highSumAssured {
    cursor: pointer;
    background: #fef7dc;
}

.popUpTitle {
    font-size: 16px;
    font-weight: 600;
}

.popUpBody {
    padding: 30px 15px;
}

.popUpBlurBg {
    display: block;
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1031;
    -webkit-transition: all .5s ease-in;
    transition: all .5s ease-in;
    background: rgba(0, 0, 0, 0.5);
}

.popUpModal {
    border-radius: 4px;
    background: #fff;
    display: none;
    width: 50%;
    margin: 0 auto;
    position: fixed;
    z-index: 1032;
    /* height: 65%; */
    top: 53%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 1px -2px rgba(0,0,0,.2), 0 1px 17px 0 rgba(0,0,0,.14), 0 1px 2px 0 rgba(0,0,0,.12);
}

.popUpDiv img {
    width: 80%;
}

.popUpCrossButton {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
}

.popUpFooter {
    padding: 15px 15px;
    border-top: 1px solid #e3e3e3;
    display: flex;
    align-items: center;
}

.continueWithCurrentTxt {
    flex-grow: 1;
    color: #0065ff;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
}

.highSumAssuredModal {
    width: 95%;
    display: block;
    -webkit-animation-duration: .85s;
    animation-duration: .85s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
    left: 0;
    right: 0;
    margin-top: -79px;
}

.goWithUpgradeTxt .btn {
    padding: 10px 20px;
}

@keyframes bounceInUp {
    0%, 100%, 30%, 60%, 80% {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,200px,0);
        transform: translate3d(0,200px,0);
    }

    30% {
        opacity: 1;
        -webkit-transform: translate3d(0,-40px,0);
        transform: translate3d(0,-40px,0);
    }

    60% {
        -webkit-transform: translate3d(0,4px,0);
        transform: translate3d(0,4px,0);
    }

    80% {
        -webkit-transform: translate3d(0,-2px,0);
        transform: translate3d(0,-2px,0);
    }

    100% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

.basedProfile .popUpTitle, .basedProfile {
    font-size: 14px;
}

.basedProfile {
    padding-left: 10px;
}
/****Sum Assured Popup Css end***/
/*upgrade plan graph*/
.upgradePlanGraphModal {
    width: 98%;
}

.upgradePlanPopUpBody {
    padding: 20px 10px 30px 10px;
}

.popupHeader {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #f2f2f2;
}

.upgradePlanGraphTitle {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: rgb(40 48 60 / 51%);
    text-transform: uppercase;
}

.planGraphDiv {
    background: #FDF4ED;
    border-radius: 5px;
    padding: 20px 20px 70px 50px;
    position: relative;
}

    .planGraphDiv ul {
        background: #E6893E;
        border-radius: 5px;
        width: 100%;
        height: 5px;
        display: flex;
    }

        .planGraphDiv ul li {
            position: relative;
            display: flex;
            width: 100%;
        }

.ageNumericValue {
    background: #FFFFFF;
    border: 1px solid #E6893E;
    border-radius: 29px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -14px;
    font-size: 14px;
    font-weight: 600;
    color: #28303C;
    position: relative;
    z-index: 1;
}

.agePointedLine {
    content: "";
    height: 86px;
    background: #E6893E;
    width: 1px;
    position: absolute;
    right: 0;
    left: 14px;
    text-align: center;
    display: flex;
    top: 27px;
}

    .agePointedLine:after {
        content: "";
        background: #E6893E;
        border-radius: 5px;
        width: 10px;
        height: 10px;
        position: absolute;
        bottom: 0;
        left: -5px;
        text-align: center;
        display: inline-block;
    }

.ageVlaue {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: #28303C;
    top: -42px;
    position: absolute;
}

.lifeCoverStartAge {
    margin-left: -43px;
    margin-top: -9px;
    margin-right: 10px;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #28303C;
}

.planGraphDiv ul li:first-child {
    justify-content: flex-start;
}

.planGraphDiv ul li:nth-child(2) {
    justify-content: center;
}

.planGraphDiv ul li:nth-child(3) {
    justify-content: flex-start;
}

.planGraphDiv ul li:nth-child(4) {
    justify-content: center;
}

.planGraphDiv ul li:last-child {
    justify-content: flex-end;
}

.upgradePlanFooter {
    display: flex;
    /* justify-content: flex-end; */
    margin: 0 auto;
    padding: 0px 10px 20px;
    width: 100%;
}

    .upgradePlanFooter span {
        width: 345px;
        text-align: left;
        font-size: 10px;
        font-weight: 500;
        color: #28303C;
        /* flex-grow: 1; */
    }

    .upgradePlanFooter .footerLeft {
        text-align: left;
        font-size: 10px;
        font-weight: 400;
        color: #28303C;
        width: 270px;
        flex-grow: 1;
    }

.lifeCoverStartValue {
    margin: 0px 10px 75px 0px;
    font-size: 12px;
    font-weight: 600;
    color: #28303C;
    text-align: center;
}

.premiumStartValue {
    position: absolute;
    bottom: 30px;
    left: 20px;
    font-size: 12px;
    color: #28303C;
}

.upgradePlanPopUpBody .popUpDiv img {
    width: 8px;
}

.planGraphDiv ul li.maturityPremiumGet {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #28303C;
    display: block;
    margin-top: 10px;
    position: absolute;
    right: 130px;
    width: 120px;
}

.firstRadioBtn ul li:not(:first-child):not(:last-child) {
    display: none;
}

.firstRadioBtn .premiumStartValue {
    width: 100%;
    text-align: center;
    left: 0;
    bottom: 38px;
}

.firstRadioBtn .lifeCoverStartValue {
    text-align: center;
    margin: 30px auto 15px auto;
}

.secondRadioBtn ul li:not(:first-child):not(:last-child):not(:nth-child(3)):not(:nth-child(5)) {
    display: none;
}

.secondRadioBtn .planGraphDiv ul li:nth-child(3) {
    justify-content: center;
}

.secondRadioBtn .premiumStartValue {
    width: 80px;
    display: inline-block;
    margin: 0px auto 0;
    text-align: center;
    bottom: 6px;
    left: 73px;
}

.secondRadioBtn .planGraphDiv ul li.maturityPremiumGet {
    right: 50px;
    width: 100px;
    margin-top: 15px;
}

.secondRadioBtn .planGraphDiv ul li:nth-child(3) .agePointedLine, .secondRadioBtn .planGraphDiv ul li:last-child .agePointedLine {
    display: none;
}

.secondRadioBtn + .upgradePlanFooter {
    display: none;
}

.payout60 ul li:nth-child(4) {
    display: none;
}

.payout60 .premiumStartValue {
    width: 80px;
    display: inline-block;
    margin: 0px auto 0;
    text-align: center;
    bottom: 7px;
    left: 44px;
}

.payout60 .planGraphDiv ul li:last-child .agePointedLine {
    display: none;
}

.payout60 .planGraphDiv ul li.maturityPremiumGet {
    display: none;
}

.payout60 + .upgradePlanFooter .footerLeft {
    display: none;
}


.upgradePlanPopUpBody.payout60 .payout6070Graph img {
    position: absolute;
    bottom: 5px;
    height: auto;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    width: 100%;
}

.payout60 .planGraphDiv {
    padding: 90px 0px 0px;
}

    .payout60 .planGraphDiv ul li:nth-child(2) {
        justify-content: flex-end;
        position: relative;
        left: 12px;
    }

        .payout60 .planGraphDiv ul li:nth-child(2) .ageVlaue {
            top: -94px;
        }

    .payout60 .planGraphDiv ul li:nth-child(3) {
        position: relative;
        left: 16px;
    }

        .payout60 .planGraphDiv ul li:nth-child(3) .ageVlaue {
            top: -70px;
        }

    .payout60 .planGraphDiv ul li:last-child .ageVlaue {
        top: -70px;
    }

    .payout60 .planGraphDiv ul li:first-child .ageVlaue {
        top: -100px;
    }

.payout60 .lifeCoverStartValue {
    margin: 0px 10px 75px 10px;
    position: relative;
    top: -50px;
}

.payout60 .planGraphDiv ul li:nth-child(3) .agePointedLine {
    height: 36px;
}

.payout60 + .upgradePlanFooter {
    margin: 20px auto;
}


.payout70 + .upgradePlanFooter .footerLeft {
    display: none;
}

.payout70 .planGraphDiv ul li.maturityPremiumGet {
    display: none;
}

.payout70 .premiumStartValue {
    width: 70px;
    display: inline-block;
    margin: 0px auto 0;
    text-align: center;
    bottom: 7px;
    left: 44px;
}

.payout70 .planGraphDiv ul li:last-child .agePointedLine, .payout70 .planGraphDiv ul li:nth-child(3) .agePointedLine {
    display: none;
}

/*for graph*/
.upgradePlanPopUpBody.payout70 .payout6070Graph img {
    position: absolute;
    bottom: 5px;
    height: auto;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    width: 100%;
}

.payout70 .planGraphDiv {
    padding: 90px 0px 0px;
}

    .payout70 .planGraphDiv ul li:nth-child(2) {
        justify-content: flex-end;
        position: relative;
        left: 39px;
    }

        .payout70 .planGraphDiv ul li:nth-child(2) .ageVlaue {
            top: -100px;
        }

    .payout70 .planGraphDiv ul li:nth-child(3) {
        position: relative;
        left: 45px;
    }

        .payout70 .planGraphDiv ul li:nth-child(3) .ageVlaue {
            top: -62px;
        }

    .payout70 .planGraphDiv ul li:nth-child(4) .ageVlaue {
        top: -43px;
    }

    .payout70 .planGraphDiv ul li:last-child .ageVlaue {
        top: -60px;
    }

    .payout70 .planGraphDiv ul li:first-child .ageVlaue {
        top: -100px;
    }

.payout70 .lifeCoverStartValue {
    margin: 0px 10px 75px 10px;
    position: relative;
    top: -50px;
}

.payout70 .planGraphDiv ul li:nth-child(4) .agePointedLine {
    height: 36px;
}

.payout70 + .upgradePlanFooter {
    margin: 20px auto;
}

.payout70 .lifeCoverStartAge {
    position: absolute;
    margin-left: -29px;
    margin-top: -11px;
    transform: rotate(-91deg);
}
/*graph css end*/
.thirdRadioBtn + .upgradePlanFooter .footerLeft {
    visibility: hidden;
}

.thirdRadioBtn .planGraphDiv ul li:nth-child(4) {
    display: none;
}

.thirdRadioBtn .planGraphDiv ul li.maturityPremiumGet {
    display: none;
}

.thirdRadioBtn .premiumStartValue {
    width: 80px;
    display: inline-block;
    margin: 0px auto 0;
    text-align: center;
    bottom: 8px;
    left: 62px;
}

.thirdRadioBtn .planGraphDiv ul li:nth-child(3) .agePointedLine {
    display: none;
}

@media only screen and (max-width: 768px) {
    .upgradePlanPopUpBody {
        padding: 20px 20px 30px 20px;
    }

    .payout70 .lifeCoverStartAge {
        position: absolute;
        margin-left: -23px;
        margin-top: -13px;
        transform: rotate(-90deg);
    }

    .payout60 .lifeCoverStartAge {
        position: absolute;
        margin-left: -23px;
        margin-top: -13px;
        transform: rotate(-90deg);
    }
}

@media only screen and (max-width: 768px) and (min-width: 600px) {
    .upgradePlanGraphModal {
        width: 600px;
    }

    .payout60 .planGraphDiv ul li:nth-child(2) .ageVlaue {
        top: -138px;
    }

    .payout60 .planGraphDiv ul li:nth-child(3) .ageVlaue {
        top: -90px;
    }

    .payout60 .lifeCoverStartValue {
        top: -70px;
    }

    .payout60 .premiumStartValue {
        width: 40%;
    }
    /*for 70*/
    .payout70 .planGraphDiv ul li:nth-child(2) .ageVlaue {
        top: -138px;
    }

    .payout70 .planGraphDiv ul li:nth-child(3) .ageVlaue {
        top: -90px;
    }

    .payout70 .lifeCoverStartValue {
        top: -70px;
    }

    .payout70 .premiumStartValue {
        width: 40%;
    }

    .payout70 .planGraphDiv ul li:nth-child(2) {
        justify-content: flex-end;
        position: relative;
        left: 69px;
    }

    .payout70 .planGraphDiv ul li:nth-child(3) {
        position: relative;
        left: 85px;
    }

    .payout70 .planGraphDiv ul li:nth-child(4) .ageVlaue {
        top: -56px;
    }
}

@media only screen and (max-width: 600px) and (min-width: 500px) {
    .upgradePlanGraphModal {
        width: 500px;
    }

    .payout60 .planGraphDiv ul li:nth-child(2) .ageVlaue {
        top: -118px;
    }

    .payout60 .planGraphDiv ul li:nth-child(3) .ageVlaue {
        top: -90px;
    }

    .payout60 .lifeCoverStartValue {
        top: -70px;
    }

    .payout60 .premiumStartValue {
        width: 40%;
    }
    /*for 70*/
    .payout70 .planGraphDiv ul li:nth-child(2) .ageVlaue {
        top: -118px;
    }

    .payout70 .planGraphDiv ul li:nth-child(3) .ageVlaue {
        top: -80px;
    }

    .payout70 .lifeCoverStartValue {
        top: -70px;
    }

    .payout70 .premiumStartValue {
        width: 30%;
    }

    .payout70 .planGraphDiv ul li:nth-child(2) {
        justify-content: flex-end;
        position: relative;
        left: 59px;
    }

    .payout70 .planGraphDiv ul li:nth-child(3) {
        position: relative;
        left: 65px;
    }

    .payout70 .planGraphDiv ul li:nth-child(4) .ageVlaue {
        top: -53px;
    }
}

@media only screen and (max-width: 500px) and (min-width: 400px) {
    .upgradePlanGraphModal {
        width: 400px;
    }

    .payout60 .planGraphDiv ul li:nth-child(2) .ageVlaue {
        top: -98px;
    }

    .payout60 .planGraphDiv ul li:nth-child(3) .ageVlaue {
        top: -70px;
    }

    .payout60 .lifeCoverStartValue {
        top: -72px;
    }

    .payout60 .premiumStartValue {
        left: 24px;
        width: 119px;
    }
    /*for 70*/
    .payout70 .planGraphDiv ul li:nth-child(2) .ageVlaue {
        top: -98px;
    }

    .payout70 .planGraphDiv ul li:nth-child(3) .ageVlaue {
        top: -64px;
    }

    .payout70 .lifeCoverStartValue {
        top: -72px;
    }

    .payout70 .premiumStartValue {
        left: 24px;
        width: 119px;
    }

    .payout70 .planGraphDiv ul li:nth-child(4) .ageVlaue {
        top: -43px;
    }
}

@media only screen and (max-width: 400px) and (min-width: 350px) {
    .upgradePlanGraphModal {
        width: 340px;
    }

    .payout60 .planGraphDiv ul li:nth-child(2) .ageVlaue {
        top: -88px;
    }

    .payout60 .planGraphDiv ul li:nth-child(3) .ageVlaue {
        top: -60px;
    }

    .payout60 .lifeCoverStartValue {
        top: -72px;
    }

    .payout60 .premiumStartValue {
        left: 24px;
        width: 119px;
    }
    /*for 70*/
    .payout70 .planGraphDiv ul li:nth-child(2) .ageVlaue {
        top: -108px;
    }

    .payout70 .planGraphDiv ul li:nth-child(3) .ageVlaue {
        top: -60px;
    }

    .payout70 .lifeCoverStartValue {
        top: -72px;
    }

    .payout70 .premiumStartValue {
        left: 24px;
        width: 119px;
    }

    .payout70 .planGraphDiv ul li:nth-child(4) .ageVlaue {
        top: -38px;
    }

    .payout70 .planGraphDiv ul li:nth-child(3) {
        position: relative;
        left: 40px;
    }
}



/*--------- new css for graph--------- */


.popUpModal.upgradePlanGraphModal {
    width: 98%;
    top: 50%;
}

    .popUpModal.upgradePlanGraphModal .popUpCrossButton {
        top: 11px;
    }

.upgradePlanPopUpBody {
    /*    padding: 10px 0px 0px 20px;*/
}

.planGraphDivNew {
    position: relative;
    border-radius: 5px;
    position: relative;
    /*margin-bottom: 100px;*/
    overflow-y: scroll;
    height: 74vh;
    /*        width: 98%;
    margin: 0 auto;*/
    padding: 20px 10px 30px 10px;
}

    .planGraphDivNew ul {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-bottom: 60px;
        /* overflow-y: scroll;
        height: 74vh;*/
    }

        .planGraphDivNew ul:before {
            width: 19px;
            height: 21px;
            transform: matrix(0, 1, -1, 0, 0, 0);
            background: #B8BEC7 0% 0% no-repeat padding-box;
        }

        .planGraphDivNew ul li {
            position: relative;
            display: flex;
            flex-direction: row-reverse;
            justify-content: start;
            align-items: center;
        }


            .planGraphDivNew ul li .increasingAmt {
                display: flex;
                flex-direction: column;
                text-align: center;
                font-weight: 600;
                font-size: 10px;
                line-height: 10px;
                margin-bottom: 0px;
                margin-left: 8px;
            }

                .planGraphDivNew ul li .increasingAmt span {
                    color: #6F7783;
                    font-size: 8px;
                    font-weight: 400;
                }


            .planGraphDivNew ul li .increasingLine {
                height: 1px;
                width: 35px;
                border: dashed 0.009px #B8BEC7;
                display: flex;
                justify-content: end;
                /* margin: 0 auto;*/
            }


                .planGraphDivNew ul li .increasingLine.four1 {
                    width: 50px;
                }

                .planGraphDivNew ul li .increasingLine.four2 {
                    width: 65px;
                }

                .planGraphDivNew ul li .increasingLine.four3 {
                    width: 80px;
                }

                .planGraphDivNew ul li .increasingLine.four4 {
                    width: 95px;
                }

                .planGraphDivNew ul li .increasingLine.four5 {
                    width: 110px;
                }

                .planGraphDivNew ul li .increasingLine.four6 {
                    width: 125px;
                }

                .planGraphDivNew ul li .increasingLine.four7 {
                    width: 140px;
                }

                .planGraphDivNew ul li .increasingLine.four8 {
                    width: 155px;
                }

                .planGraphDivNew ul li .increasingLine.four9 {
                    width: 170px;
                }

                .planGraphDivNew ul li .increasingLine.five0 {
                    width: 185px;
                }

                .planGraphDivNew ul li .increasingLine.five1 {
                    width: 200px;
                }

                .planGraphDivNew ul li .increasingLine.five2 {
                    width: 215px;
                }

                .planGraphDivNew ul li .increasingLine.five3 {
                    width: 230px;
                }

                .planGraphDivNew ul li .increasingLine.five4 {
                    width: 245px;
                }

                .planGraphDivNew ul li .increasingLine.five5 {
                    width: 260px;
                }

                .planGraphDivNew ul li .increasingLine.six0 {
                    width: 260px;
                    border: dashed 0.009px #E6893E;
                }

                .planGraphDivNew ul li .increasingLine.six1 {
                    width: 180px;
                }
                /* .planGraphDivNew ul li .increasingLine.seven0 {
height: 260px;
} */
                .planGraphDivNew ul li .increasingLine.eight0 {
                    height: 1px;
                    margin: 0px 24px 0 0;
                }


.premiumStartValueTxt {
    position: absolute;
    z-index: 1;
    top: 21px;
    width: 240px;
    left: 160px;
    color: #28303C;
}

.ageStarts {
    /*    position: absolute;*/
    z-index: 1;
    /*    top: -50px;*/
    width: 88px;
    left: 0px;
    font-size: 10px;
    color: #666d78;
    padding-left: 10px;
}

.premiumStartValueTxt strong span {
    font-weight: 600;
    font-size: 14px;
}

.premiumStartValueTxt span {
    font-size: 12px;
    font-weight: 400;
}


.infoMessage {
    font-size: 10px;
    color: #666d78;
    position: absolute;
    bottom: -60px;
}

.percentageMessages {
    position: relative;
    bottom: 45px;
    left: 0;
    font-size: 10px;
    color: #28303c;
    width: 310px;
    text-align: left;
    padding-top: 14px;
}

    .percentageMessages:before {
        content: "";
        display: block;
        width: 220px;
        height: 1px;
        background: #b8bec7;
        transform: rotate(90deg);
        top: -130px;
        right: 138px;
        position: relative;
    }

    .percentageMessages:after {
        content: "";
        border: solid #b8bec7;
        border-width: 0 2px 2px 0;
        display: inline-block;
        position: absolute;
        top: 8px;
        left: -12px;
        padding: 3px;
        transform: rotate(404deg);
        -webkit-transform: rotate(404deg);
    }

.planGraphDivNew ul li .increasingLine:before {
    content: "";
    border: solid #0265FF;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    margin-left: -4px;
    margin-bottom: 10px;
    transform: rotate(316deg);
    -webkit-transform: rotate(316deg);
    position: relative;
    top: -4px;
}

.planGraphDivNew ul li .increasingLine.decreasingLine:before {
    content: "";
    border: solid #FF2929;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    margin-left: -4px;
    margin-bottom: 10px;
    transform: rotate(316deg);
    -webkit-transform: rotate(316deg);
    position: relative;
    top: -4px;
}

.planGraphDivNew ul li .increasingDot {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

    .planGraphDivNew ul li .increasingDot .dot {
        background: #B8BEC7;
        width: 10px;
        height: 9px;
        border-radius: 100%;
    }

        .planGraphDivNew ul li .increasingDot .dot.orange {
            background: #E6893E;
        }

    .planGraphDivNew ul li .increasingDot .bdrLineLeft, .planGraphDivNew ul li .increasingDot .bdrLineRight {
        height: 20px;
        width: 2px;
        background: #B8BEC7;
    }

.planGraphDivNew ul li .increasingYears {
    font-size: 10px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0;
    margin-right: 8px;
    line-height: 11px;
}

    .planGraphDivNew ul li .increasingYears span {
        color: #6F7783;
        font-size: 9px;
        text-transform: uppercase;
        font-weight: 400;
    }


.planGraphDivNew ul li.last {
    /*    width: 120px;
    margin-left: 0;
    align-items: end;*/
}

    .planGraphDivNew ul li.last:before {
        content: "";
        border: dashed #b8bec7 0.001px;
        width: 1px;
        height: 49px;
        margin-right: 0;
        position: absolute;
        bottom: 24px;
        left: 64px;
    }

    .planGraphDivNew ul li.last .increasingDot {
        justify-content: start;
    }

    .planGraphDivNew ul li.last .increasingAmt,
    .planGraphDivNew ul li.last .increasingYears {
        padding-right: 0px;
    }

    .planGraphDivNew ul li.last .bdrLineLeft {
        width: 2px;
    }

.showGraph {
    background: transparent linear-gradient(283deg, #9922FF 0%, #225CFF 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 1px 1px #6119f426;
    letter-spacing: 0px;
    color: #fff !important;
    text-shadow: 0px 1px 1px #00000029;
    border-radius: 4px;
    padding: 1px 7px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    display: inline-block;
}

    .showGraph:hover {
        color: #fff;
    }

.graph-backdrop {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(0,0,0,0.3);
    z-index: 99;
    display: none;
}

    .graph-backdrop.graph-active {
        display: block;
    }

.graph-wrap {
    position: fixed;
    z-index: 9999;
    right: -700px;
    top: 0;
    background: #fff;
    width: 100%;
    max-width: 700px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

    .graph-wrap.graph-active {
        right: 0;
    }

.graph-header {
    min-height: 47px;
    padding: 15px 20px;
    background: #fff;
    box-shadow: 0px 2px 6px #F0F0F0;
    position: relative;
}

    .graph-header h2 {
        font-size: 14px;
        color: #6F7783;
        margin: 0;
        text-align: center;
    }

.graph-footer {
    padding: 0 8px;
    background: #FCFCFC;
    height: 27px;
    display: flex;
    align-items: center;
}

    .graph-footer p {
        color: #909AAA;
        font-size: 10px;
        margin: 0;
    }

.graph-close {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}


.policystartsage-container {
    padding: 15px 15px 140px 15px;
    box-sizing: border-box;
    height: calc(100vh - 74px);
    overflow: auto;
    overflow-x: hidden;
}

.policystartsage-graph {
    list-style: none;
    position: relative;
    padding: 30px 0 0 0;
    margin: 0 0 0 7px;
    width: 100%;
    max-width: 600px;
}

    .policystartsage-graph:before {
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 20px 12px 0 12px;
        border-color: #b6bec9 transparent transparent transparent;
        position: absolute;
        left: 24px;
        top: 0;
    }

    .policystartsage-graph:after {
        content: '';
        width: 2px;
        position: absolute;
        left: 35px;
        bottom: 13px;
        background: #b6bec9;
        top: 0;
    }

.policystartsage-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    position: relative;
}

    .policystartsage-labels:last-child {
        margin-bottom: 0;
    }

    .policystartsage-labels:before {
        content: '';
        position: absolute;
        width: 12px;
        height: 12px;
        background: #b6bec9;
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
        left: 30px;
    }

.active-dot:before {
    background-color: #0281ff;
    z-index: 1;
}

.policystartsage-labels:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 40px;
    right: 52px;
    height: 2px;
    border-top: 1px dashed #b6bec9;
}

.active-line:after {
    border-color: #0281ff;
    z-index: 1;
}

.policystartsage-labels > * {
    font-weight: 600;
    font-size: 11px;
    color: #000;
    text-align: center;
}

    .policystartsage-labels > * span {
        font-size: 9px;
        color: #767676;
        display: block;
        text-transform: uppercase;
    }

.policyprimium-label:before {
    content: '';
    background: transparent url(../../images/web/angle-arrow-right.svg) no-repeat right center;
    position: absolute;
    width: 8px;
    height: 14px;
    transform: translateY(-50%);
    top: 50%;
    right: 46px;
}

.breakpointline .policyprimium-label:before {
    background-image: url(../../images/web/angle-arrow-left.svg);
    top: 10px;
    z-index: 1;
    transform: rotate(180deg);
}

.breakpointline {
    width: 31% !important;
}

@media(max-width:420px) {
    .breakpointline {
        width: 35% !important;
    }
}

.upperlink .policyprimium-label:after {
    content: '';
    position: absolute;
    bottom: 11px;
    height: 53px;
    border-left: 1px dashed #b6bec9;
    right: 52px;
}

.directto80 .policyprimium-label:after {
    height: 159px;
    right: 52px;
    bottom: 16px;
}

.directto80 {
    margin-top: 130px;
}
/* tooltip-start */
.policyprimium-label {
    position: relative;
}

.policystartsage-labels .policyprimium-tooltip, .policyprimium-tooltip-second {
    position: absolute;
    width: 165px;
    text-align: left;
    background: #F4F9FF;
    font-size: 11px;
    font-weight: normal;
    padding: 6px;
    box-sizing: border-box;
    color: #253858;
    line-height: 1.6;
    border: 1px solid #DDECFC;
    border-radius: 5px;
    z-index: 9;
}

.policyprimium-tooltip p {
    color: #253858;
    margin: 0;
    font-weight: normal;
    font-size: 11px;
}

.policyprimium-tooltip .smalltooltipbold {
    font-weight: 600;
    font-size: 11px;
}

.policyprimium-tooltip p span {
    color: #253858;
    display: inline;
}

.policyprimium-tooltip p .smalltooltiptext {
    font-size: 10px;
}

.policyprimium-tooltip:before {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px 10px;
}

.policyprimium-tooltip.left {
    top: -6px;
    left: 55px;
}

.policyprimium-tooltip.leftTop {
    top: auto;
    bottom: 0;
}

.policyprimium-tooltip.left:before {
    left: -10px;
    background-image: url(../../images/web/left.png);
    top: 17px;
}

.policyprimium-tooltip.leftTop:before {
    top: auto;
    bottom: 9px;
}

.policyprimium-tooltip-second {
    width: 160px;
    right: 20px;
    top: 270px;
}

@media(max-width:420px) {
    .policyprimium-tooltip-second {
        right: 6px;
    }
}
/*.policyprimium-tooltip.right { top: -6px; right: 39px; }
    .policyprimium-tooltip.right:before { right: -10px; background-image: url(./images/right.png); }
    .policyprimium-tooltip.top { bottom: 40px; left: -7px; }
    .policyprimium-tooltip.top:before { bottom: -10px; left: 12px; background-image: url(./images/top.png); }
    .policyprimium-tooltip.bottom { top: 40px; left: -7px; }
    .policyprimium-tooltip.bottom:before { top: -10px; left: 12px;  background-image: url(./images/down.png); }
    .policyprimium-tooltip-wrap .policyprimium-tooltip { bottom: 70px; left: 29px; }
    .policyprimium-tooltip-wrap .policyprimium-tooltip:before { display: none; }
    .policyprimium-tooltip-wrap:after { content: ''; width: 8px; height: 8px; background: #b6bec9; position: absolute; border-radius: 50%; top: 50%; transform: translateY(-50%); right: -20px; }
    .policyprimium-tooltipline:before { position: absolute; content: ''; width: 70px; height: auto; border-top: 1px solid #DDECFC; top: 50%; left: 40px; }
    .policyprimium-tooltipline:after { position: absolute; content: ''; width: 1px; height: 59px; border-left: 1px solid #DDECFC; bottom: 12px; left: 109px; }*/
/* tooltip-end */
/*-savingAmount-graph-end-*/



.genuine-claims-assurance {
    position: fixed;
    background: rgb(39, 49, 61, 0.75);
    transition: all 0.5s ease .2s;
    z-index: 999999;
    width: 10px;
    height: 10px;
    visibility: hidden;
    opacity: 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    left: calc(50% - 5px) !important;
    top: auto !important;
    gap: 16px;
    bottom: 70px !important;
}
/*.genuine-claims-assurance .spinnerDots { display:none; }*/
.genuine-claims-assurance-active { top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important; width: 100%; height: 100%; visibility: visible; opacity: 1; }
/*.genuine-claims-assurance-active:after {text-shadow: 0px 1px 1px rgb(81 108 141);animation: smoothScalebtn 1.1s infinite ease-in-out;content:"100% Genuine Claims Assurance by ICICI Pru Life";font-size: 18px;font-weight: 600;color: #fff;width: 305px;}*/
/*.genuine-claims-assurance-active:before {content: '';background: url(https://static.pbcdn.in/e2e-cdn/assets/images/img-loader-spinner.svg) no-repeat center / cover;width: 30px;height: 30px;animation: rotating 1.3s linear infinite;filter: brightness(0) invert(1);}*/
.genuine-claims-assurance-active .spinnerDots { display: block; }
.genuine-claims-assurance-active .spinnerDots > div { background-color: #fff; }
.claims-assurance-btn-wrap { margin: 5px 0; position: relative; width: 100%; }
.claims-assurance-btn {display: flex;justify-content: center;align-items: center;padding: 5px 12px;border-radius: 4px;font-size: 11px;font-weight: 600;text-transform: uppercase;transition: all 0.3s ease-in-out;position: relative;z-index: 1;width: 100%;top: 0;cursor: pointer;visibility: visible;opacity: 1;gap: 10px;border: 1px solid #D6ECFF;background: linear-gradient(90deg, #FBFDFF 0%, #EBF6FF 54%, #FBFDFF 100%);color: #013C86;}
.claims-assurance-btn-hide { transform: scale(0); }
.claims-assurance-btn-active { animation: smoothScalebtn 1.1s infinite ease-in-out; }
.claims-btn-content {display: flex;align-items: center;gap: 6px;}
.claims-btn-content > img {width: 15px;filter: brightness(0) saturate(100%) invert(14%) sepia(48%) saturate(3812%) hue-rotate(203deg) brightness(102%) contrast(99%);}
.claims-assurance-btn > img { width: 11px; }
.slide-wrap { display: flex; gap: 4px; overflow: auto; width: 100%; }
.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;}
.ceo-slide-content { display: flex; height: 100%; align-items: center; }
.ceo-slide-content span { display: block; line-height: 1.3; }
.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: 112px; }
.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%); }
.editUserDetails ul { padding: 5px; border-radius: 8px 8px 0px 0px; border-top: 1px solid #D3D7DE; background: #F4F5F6; }

.total-bar-discount .discount-btn { display: none; }
@keyframes smoothScalebtn {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.01);
    }

    100% {
        transform: scale(1);
    }
}
.boxShadowAnimate {
    -moz-animation-duration: 0.5s;
    -webkit-animation-duration: 0.5s;
    -moz-animation-name: changeShadow;
    -webkit-animation-name: changeShadow;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-direction: alternate;
    -webkit-animation-direction: alternate;
}

@-webkit-keyframes changeShadow {
    from {
        box-shadow: 0px 0px 10px #e0ecff;
    }

    to {
        box-shadow: 0px 0px 20px #dceaff;
    }
}
/*.total-bar-green { border-radius: 16px 16px 0 0; border-top: 1px solid #66D7A9; background: #fff linear-gradient(0deg, #FFF 0%, #DBF5EB 100%);; }
.total-bar-discount {display: flex;gap: 6px;margin-bottom: 16px;align-items: flex-end;}
.total-bar-content { width: 100%; display: flex; flex-direction: column; justify-content: flex-end; position: relative; min-height: 17px; }
.total-bar-discount .discountMsg {font-weight: 500;margin-bottom: 0;font-size: 11px;}
.total-bar-discount .discountMsg.discount-hidden { visibility: hidden; opacity: 0; }
.total-bar-discount .discountMsg, .total-bar-discount .discountMsg strong { color: #1B6E4D; }
.total-bar-discount .discount-btn {border: 1px solid #66D7A9;border-radius: 4px;white-space: nowrap;display: flex;padding: 3px 6px;font-size: 10px;color: #1B6E4D;font-weight: 500;background: #fff;margin-bottom: 4px;display:none;}
.discount-list ul li {font-size: 11px;color: #1B6E4D;font-weight: 500;background: url(https://static.pbcdn.in/e2e-cdn/assets/icons/icon-tick.svg) no-repeat 0 center / 14px auto;padding-left: 18px;margin-bottom: 2px;}
.discount-list ul li:last-child { margin-bottom: 0; }

@media(max-width: 385px){
    .total-bar-content { min-height: 33px; }
}*/
.description-text {
    font-size: 10px;
    margin: 12px 10px 0px 10px;
}

/*-lowest-price-guarantee-start-*/
    /*.lowest-price-wrap {display: flex;align-items: center;justify-content: space-between;width: 100%;position: fixed;bottom: 94px;z-index: 1030;font-size: 11px;border-radius: 24px 24px 0px 0px;border-top: 1px solid #E9C264;background: linear-gradient(0deg, #FFF7E7 27.78%, #FDCB50 126.67%);padding: 8px 24px;left: 0;}*/
    .lowest-price-wrap {position:relative;overflow:hidden;display: flex;align-items: center;justify-content: space-between;width: 100%;z-index: 1;font-size: 11px;padding: 2px 10px;margin: 8px 0;border-radius: 4px;border: 1px solid #FDDD8F;background: linear-gradient(0deg, #FFF3D6 27.78%, #FFFAF0 126.67%);}
    .lowest-price-wrap:after { content: ""; top: 0; left: -40%; width: 100%; height: 24px; position: absolute; z-index: 1; animation: slideing 2s infinite; background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%); transform: rotate(20deg); }
    .lowest-price-wrap span {color: #AD6201;}
    .lowest-price-heading {font-weight: 600;font-size: 13px;display: flex;align-items: center;background: linear-gradient(349deg, #714000 8.25%, #D77900 91.85%);background-clip: text;-webkit-background-clip: text;-webkit-text-fill-color: transparent;}
    .lowest-price-heading img {width: 30px;border-radius: 50%;margin-right: 6px;border: 1px solid #efefef;}
    .lowest-price-heading span {font-weight:700;}
    .lowest-price-btn {font-style: normal;line-height: normal;color: #AD6201;font-size: 9px;font-weight: 500;min-width:10px;max-width:10px;filter: brightness(0) saturate(100%) invert(22%) sepia(16%) saturate(3181%) hue-rotate(19deg) brightness(97%) contrast(90%);}
    .lowest-price-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; }
    .lowest-price-module { transition: all 0.5s ease-in-out; position: fixed; z-index: 1030; bottom: -100%; background: linear-gradient(180deg, #FDEECB 0%, #FFF 100%); border-radius: 32px 32px 0 0; }
    .lowest-price-overlay.lowest-overlay-active { opacity: 1; visibility: visible; }
    .lowest-price-module.lowest-module-active { bottom: 0; }
    .lowest-price-body { padding: 16px; margin: 16px 16px 0 16px; border: 1px solid #0065ff; border-bottom: none; border-radius: 24px 24px 0 0; position: relative; background: url(https://static.pbcdn.in/e2e-cdn/assets/images/img-shape-bg.svg) no-repeat center / cover; }
    .lowest-price-content {padding: 0;border-radius: 8px;border: 1px solid #D9C8A4;background: #FFF;box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.08), 0px 4px 8px -2px rgba(0, 0, 0, 0.04);overflow: hidden;margin-bottom: 16px;}
    .lowest-price-content img { width: 100%; }
    .lowest-price-content h2 { margin: 0 0 6px 0; font-size: 16px; font-weight: 600; text-align: center; line-height: 1.4; color: #53441D; }
    .lowest-price-body p { margin: 0; font-size: 12px; text-align: center; color: #53441D; font-weight: 500; }
    .lowest-price-body p strong { font-weight: 700; }
    .lowest-price-term { display: block; text-align: right; margin-top: 12px; font-size: 9px; color: #212529; }
    .lowest-price-body:before, .lowest-price-body:after { background: linear-gradient(180deg, rgba(0,101,255,1) 0%, rgba(0,101,255,1) 47%, rgba(255,255,255,1) 100%); content: ''; position: absolute; top: 19px; bottom: 0; width: 1px; }
    .lowest-price-body:before { left: -1px;}
    .lowest-price-body:after { right: -1px; }
    .lowest-price-module .btn { border-radius: 0; }
    .lowest-price-img {display: flex;justify-content: center;margin-top: -67px;margin-bottom: 8px;}
    .btn-blue {color: #fff;background: #0065ff;}
/*-lowest-price-guarantee-end-*/

/*-lowest-price-loader-start-*/
    .lowest-price-loader-wrap {opacity: 0;visibility: hidden;transition: all 0.3s ease-in-out;width: 90%;max-width: 300px;padding:4px;border-radius: 28px; background-image: linear-gradient( 90deg, #AA7B03, #FFF5A8, #F57118, #FFF5A8, #EC670D );}
    .lowest-price-loader {width: 100%;padding: 32px 32px 16px 32px;border-radius: 28px;background: linear-gradient(0deg, #FFEEB4 49.86%, #FFF8C6 97.47%);}
    .lowest-price-loader-img { display: flex; align-items: center; justify-content: center; height: 110px; }
    .lowest-price-loader-img > img { width: 110px; }
    .lowest-price-loader .spinnerDots > div { background-color: #875822; }
    .lowest-price-loader h2 {font-size: 24px;line-height: 1.3;margin: 24px 0 0 0;background: linear-gradient(177deg, #DD820D 33.74%, #B36807 68.04%);background-clip: text;-webkit-background-clip: text;-webkit-text-fill-color: transparent;}
    .lowest-price-loader h2 span { display: block; }
    .lowest-price-loader h2 span.lowest-bold-text {font-weight: 700;font-size: 32px;background: linear-gradient(177deg, #DD820D 29.77%, #B36807 67.88%);background-clip: text;-webkit-background-clip: text;-webkit-text-fill-color: transparent;/* -webkit-text-stroke-width: 1px; *//* -webkit-text-stroke-color: rgba(255, 255, 255, 0.40); */text-transform: uppercase;}
    .lowest-price-loader h2 span.lowest-sembold-text {font-weight: 600;font-size: 22px;background: linear-gradient(177deg, #DD820D 33.74%, #B36807 68.04%);background-clip: text;-webkit-background-clip: text;-webkit-text-fill-color: transparent;}
    .lowest-price-loader .spinnerDots { margin-top: 20px; }
    .genuine-claims-assurance-active .lowest-price-loader-wrap { opacity:1; visibility: visible; }
/*-lowest-price-loader-end-*/


/*-genuine-claims-assurance-start-*/
.genuine-claims-assurance-wrap {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    width: 90%;
    max-width: 256px;
    border-radius: 28px;
    /* background-image: linear-gradient( 90deg, #AA7B03, #FFF5A8, #F57118, #FFF5A8, #EC670D ); */
    box-shadow: 0px 0px 8px 0px rgba(18, 55, 114, 0.60);
    /* border: 2px solid rgba(255, 255, 255, 0.70); */
}

.genuine-claims-assurance-loader {
    width: 100%;
    border-radius: 28px;
    background: linear-gradient(0deg, #FFEEB4 49.86%, #FFF8C6 97.47%);
    position: relative;
    overflow: hidden;
    background: linear-gradient(0deg, #1C52A4 0%, #467ACA 50.06%, #4B92FF 81%, #3080E4 100%);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.genuine-claims-assurance-loader-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 40px 32px 0px 32px;
    position: relative;
    min-height: 155px;
}

.genuine-claims-wave {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 36px;
    overflow: hidden;
    z-index: 1;
}

    .genuine-claims-wave:before {
        content: '';
        background: repeating-conic-gradient(rgba(255, 255, 255, 0.01) 8deg 16deg, rgba(255, 255, 255, 0.03) 13deg 25deg);
        position: absolute;
        left: 0;
        right: 0;
        bottom: -110px;
        top: 0;
    }

.genuine-claims-assurance-loader-img > img {
    width: 70px;
    position: relative;
    z-index: 2;
}

.genuine-claims-assurance-loader .spinnerDots > div {
    background-color: #fff;
}

.genuine-claims-assurance-loader h2 {
    padding: 0 32px;
    color: #FFF;
    text-align: center;
    text-shadow: 0px 1px 0px rgba(1, 53, 132, 0.20);
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    margin: 16px 0 0 0;
    line-height: 1.5;
}

    .genuine-claims-assurance-loader h2 span {
        display: block;
    }

.genuine-claims-assurance-loader .spinnerDots {
    margin-top: 16px;
    padding-bottom: 16px;
}

.genuine-claims-assurance-active .genuine-claims-assurance-wrap {
    opacity: 1;
    visibility: visible;
}
/*-genuine-claims-assurance-end-*/