﻿@charset "utf-8";
/*----------- Reset css start here ------------------*/

* {
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    border: none;
    -webkit-border-radius: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    list-style: none;

}

/*------------- Color Scheme Changes Start ----------*/

:root {
    --brand-maroon: #97262A;
   --nippon-red: #EE1132;
   --nippon-grey: #58595B;
   --nippon-grey-light: #d0d2d3;
   --form-bg: #e6e7e8;
   --grey-very-light: #f1f1f2;

}

.bg-form { background-color: var(--form-bg) }
.bg-grey-very-light { background-color: var(--grey-very-light) }
.bg-nippon-grey-light { background-color: var(--nippon-grey-light);}

.text-brand-maroon { color: var(--brand-maroon) }

.box-shadow { box-shadow: 0 3px 4px 2px rgba(0, 0, 0, 0.1) }

.radius { border-radius: 1rem }

.border-maroon { border: 1px solid var(--brand-maroon) }

.form-check-input:checked {
    border-color: var(--brand-maroon);
    background-color: var(--brand-maroon);
}

.custom-control-input:checked~.custom-control-label::before {
    border-color: var(--brand-maroon);
    background-color: var(--brand-maroon);
}

.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.disabled,
.btn-primary:disabled,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
    background-color: var(--brand-maroon);
    border-color: var(--brand-maroon);
}

/*------------- Color Scheme Changes End -----------*/
html {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    font-family: 'VAGRoundedStdLight';
}

body {
    height: 100%;
    font-size: 1rem;
    line-height: 1.5;
    font-family: 'VAGRoundedStdLight';
}


header {
    position: fixed;
    width: 100%;
    z-index: 10;
}

.header-content {
    padding: 10px 0;
}

.header-content-left {
    padding-top: 10px
}

section {
    /* padding-top:85px; */
    padding-top: 50px;
    /* changed by Harsh */
}

.custom-container {
    padding: 0 1.5rem;
}

b,
strong {
    font-weight: bolder;
}

.dropdown1 {
    background: url('../images/drop-down.png') white no-repeat 96% scroll !important;
    border: none;
    border-bottom: solid 1px #CCCCCC;
    width: 100%;
    appearance: none;
    outline: none;
    padding: 11px 0;
    color: #616568;
}

/*a { text-decoration: none;  outline:none;transition: all .3s ease-out; -webkit-transition: all .3s ease-out; -moz-transition: all .3s ease-out; -ms-transition: all .3s ease-out; -o-transition: all .3s ease-out }
*/
a,
a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}

a.selected {
    cursor: default;
}

a:hover.selected {
    text-decoration: none;
}

img {
    border: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

table,
table tr td,
table tr th {
    border: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.clearfix:after,
.clearfix:before {
    content: " ";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
}

.clear {
    font-size: 1%;
    height: 0;
    width: 0;
    float: none;
    clear: both;
}

article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
section,
summary,
mark {
    float: left;
    width: 100%;
    clear: both;
}

input {
    outline: none;
}

::-webkit-input-placeholder {
    /* color: #333333; */
    color: black;
}

::-moz-placeholder {
    color: black;
}

:-ms-input-placeholder {
    color: black;
}

:-moz-placeholder {
    color: black;
}

input[type=submit],
input[type=button] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    cursor: pointer;
}

input::-ms-clear {
    display: none;
}

input[type="number"],
input[type="tel"],
input[type="email"] {
    color: black;
    -webkit-appearance: none;
    -moz-appearance: textfield;
    margin: 0;
}

h3 {
    font-family: 'VAGRoundedStdLight';
    font-weight: 300;
}

/*----------- Reset css end here ------------------*/

@font-face {
    font-family: 'geo';
    src: url('../fonts/geometos-webfont.woff2') format('woff2'),
        url('../fonts/geometos-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'rupee';
    src: url('../fonts/itf_rupee-webfont.woff2') format('woff2'),
        url('../fonts/itf_rupee-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'vag-bold';
    src: url('../fonts/vagroundedstd-bold-webfont.woff2') format('woff2'),
        url('../fonts/vagroundedstd-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'vag-light';
    src: url('../fonts/vagroundedstd-light-webfont.woff2') format('woff2'),
        url('../fonts/vagroundedstd-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/*global CSS starts here */

.global-mt-75 {
    margin-top: 75px !important;
}

h1 {
    color: #97262a;
    font-family: 'geo';
    font-size: 41px;
    margin-top: 20px;
    /* text-transform: uppercase; */
    position: relative;
    padding-left: 10px;
}

h1:after {
    content: "";
    /* background-color: #eb2726; */
    width: 5px;
    height: 33px;
    margin: 0px auto;
    position: absolute;
    left: 1px;
    top: 5px;
    transform: translateX(-50%);
}

h1>span {
    font-family: 'VAGRoundedStdLight';

    font-size: 23px;
    /*17022021*/
    color: #97262a;
    text-transform: capitalize;
    display: block;
}

h1>span:after {
    content: "";
    /*background-color: #eb2726;*/
    width: 1px;
    height: 40px;
    margin: 0px auto;
    position: absolute;
    left: -1px;
    top: 30px;
    transform: translateX(-50%);
}

h2 {
    color: #656565;
    font-family: 'VAGRoundedStdThin';
    font-size: 35px;
    text-align: center;
    position: relative;
}

.mt10050 {
    margin-top: 100px;
}

.mt40 {
    margin-top: 40px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb45-0 {
    margin-bottom: 45px;
}

.mt20 {
    margin-top: 20px;
}

.rupeeSymbol {
    font-family: 'rupee_foradian1-webfont';
}

/*global CSS ends here */



/* header CSS starts here */

.custom-container {
    width: 100%;
    max-width: 1620px;
    margin: 0 auto;
    padding: 0 15px;
}

.inner-container {
    width: 100%;
    max-width: 1370px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    width: 100%;
    /* background: #faa61a; */
    background: white;
    border-bottom: solid 2px #ed2324;
    position: fixed;
    left: 0;
    top: 0;
    padding: 10px 0px;
    z-index: 101;
    transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    -webkit-transition: all 500ms ease-in-out;
    display: flex;
    align-items: center;
}

.header-content {
    /* padding: 10px 0; */
    padding: 0;
}

.header-content-left {
    padding-top: 10px
}

.header-content {
    display: flex;
    align-items: center;
}

/* .header-content-left {
    margin-right: auto;
} */

.header-content-left>a>img {
    width: 176px;
    max-width: 176px;
}

.header-content-right>ul {
    margin: 0;
    padding: 0;
}

.header-content-right>ul>li {
    list-style: none;
    float: left;
    position: relative;
    font-family: 'VAGRoundedStdThin';
    font-size: 18px;
    color: #ffffff;
    padding: 0 20px 0 20px;
}

.header-content-right>ul>li>span {
    color: #ffffff;
    text-decoration: none;
}

.header-content-right>ul>li>span:hover {
    color: #034ea2;
}

.header-content-right>ul>li:last-child:after {
    content: "";
    position: absolute;
    background-color: #ffffff;
    width: 1px;
    height: 50px;
    margin-left: 20px;
    top: -8px;
}

.header-content-right>ul>li:last-child:after {
    content: "";
    background-color: transparent;
}

/* header CSS ends here */


/* footer CSS starts here */

footer {
    margin-top: 50px;
}

.footer-content {
    padding-top: 30px;
    border-top: solid 1px #d4d4d4;
    font-family: 'Times New Roman';
    font-size: 7pt;
    color: #505050;
}

.footer-content>p {
    margin-bottom: 10px;
}

.footer-content>p>span {
    font-family: 'Times New Roman';
    font-size: 7pt;
    color: #505050;
}

.footer-content>div {
    margin-bottom: 5px;
}

.footer-content>ul {
    margin: 0 0 25px 15px;
    padding: 0;
}

.footer-content>ul>li {
    list-style: disc;
}

/* footer CSS ends here */




/* form section CSS starts here */

.step-container {
    background: #fff url("../images/bg.jpg") repeat center center;
    float: right;
    padding: 20px 20px;
    margin-top: 35px;
    position: relative;
    border-bottom: solid 3px #bababa;
    min-width: 225px;
}

.step-container:before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px;
    border-color: #bababa transparent transparent transparent;
}

.step-container .step-copy {
    font-family: 'Geometos';
    font-size: 20px;
    color: #97262a;
    text-transform: uppercase;
    display: block;
    text-align: left;
}

.step-container .step-title {
    font-family: 'Geometos';
    font-size: 25px;
    color: #eb2726;
    text-transform: uppercase;
    display: block;
    text-align: left;
}

.form-col {
    position: relative;
    width: 90%;
    font-family: 'VAGRoundedStdLight';
    font-weight: 300;
}

/* necessary to give position: relative to parent. */
input[type="text"] {
    font-size: 14px;
    /*color:#b1b4b6;*/
    /* color: #333333; */
    color: black;
    width: 100%;
    box-sizing: border-box;
    letter-spacing: 1px;
    font-family: 'VAGRoundedStdLight';
    font-weight: 300;
}

input[type="number"],
input[type="tel"],
input[type="email"] {
    font-size: 14px;
    /*color:#b1b4b6;*/
    color: black;
    width: 100%;
    box-sizing: border-box;
    letter-spacing: 1px;
    font-family: 'VAGRoundedStdLight';
    font-weight: 300;
}

input::placeholder {
    /* color: #b1b4b6; */
    color: black;
}

input[type="tel"] {
    color: black;
    /* padding-left: 35px; */
}

.mobile-number abbr {
    font-size: 14px;
    /*color:#b1b4b6;*/
    /* color: #b1b4b6; */
    color: black;
    width: 100%;
    box-sizing: border-box;
    letter-spacing: 1px;
    width: 30px;
    position: absolute;
    left: 0px;
    bottom: 12px;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    /* color: #b1b4b6; */
    color: black;
}

.form-col>label {
    color: #97262a;
    font-size: 16px;
    display: block;
    font-family: 'VAGRoundedStdLight';
    font-weight: 300;
}

.form-col>span {
    color: #97262a;
    font-size: 18px;
    margin: 0 5px 0 0;
}

.form-col em {
    position: absolute;
    bottom: -15px;
    font-size: 10px;
    color: red;
    left: 0px;
}

.form-col.email-id em {
    position: absolute;
    bottom: -35px;
    font-size: 10px;
    color: red;
    left: 0px;
}

.effect-1 {
    border: 0;
    padding: 7px 0;
    border-bottom: 1px solid #ccc;
}

.effect-1~.focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #034ea2;
    transition: 0.4s;
}

.effect-1:focus~abbr {
    color: #333;
}

.effect-1:focus~.focus-border {
    width: 100%;
    transition: 0.4s;
}

.form-col.checkbox-error .effect-1 {
    border-bottom: 1px solid red;
}

.form-col.checkbox-error .effect-1:focus~.focus-border {
    background-color: red;
}

.copy-words {
    font-size: 13px;
    margin-top: 5px;
    color: #bababa;
}

.error {
    display: none;
    color: #faa61a;
    font-size: 13px;
    margin-top: 5px;
}

.note {
    color: #034ea2;
    font-size: 13px;
    margin-top: 5px;
    font-family: 'VAGRoundedStdLight';
    font-weight: 300;
}

.note>span {
    /* color: #b1b4b6; */
    color: black;
    font-size: 13px;
}

.radiobtn {
    display: inline-block;
    margin: 10px 40px 0 0;
}

.radiobtn>label {
    position: relative;
    cursor: pointer;
}

.radiobtn>label:before {
    content: "";
    background-color: #b1b4b6;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.radiobtn>input:checked+label:before {
    background-color: #faa61a;
    top: 0;
}

.radiobtn>label>span {
    /* color: #b1b4b6; */
    color: black;
    font-size: 16px;
    margin: 15px;
    font-family: 'VAGRoundedStdLight';
    font-weight: 300;
}

.radiobtn>input:checked+label>span {
    color: #97262a;
}

.radiobtn>input {
    /* HIDE RADIO */
    visibility: hidden;
    /*Makes input not-clickable */
    position: absolute;
    /* Remove input from document flow */
}

.radiobtn2 {
    display: inline-block;
}

.radiobtn2>label {
    position: relative;
    cursor: pointer;
    padding-left: 30px;
}

.radiobtn2>label:before {
    content: "";
    background-color: #FFF;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    border: 1px solid #b4b7b9;
}

.radiobtn2>label:after {
    content: "";
    background-color: #FFF;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    top: 7px;
    left: 7px;
    z-index: 1;
}

.radiobtn2>input:checked+label:after {
    background-color: #faa61a;
}

.radiobtn2>label>span {
    /* color: #b1b4b6; */
    color: black;
    font-size: 16px;
    font-family: 'VAGRoundedStdLight';
    font-weight: 300;
}

.radiobtn2>input:checked+label>span {
    color: #004ca8;
}

.radiobtn2>input {
    /* HIDE RADIO */
    visibility: hidden;
    /*Makes input not-clickable */
    position: absolute;
    /* Remove input from document flow */
}


.check-box {
    display: inline-block;
}

.check-box>label {
    position: relative;
    cursor: pointer;
    padding-left: 30px;
    margin-bottom: 0px;
}

.check-box>label:before {
    content: "";
    background-color: var(--brand-maroon);
    width: 20px;
    height: 20px;
    position: absolute;
    top: 2px;
    left: 0;
    z-index: 1;
    border: 1px solid var(--brand-maroon);
    border-radius: 3px;
}

.check-box>label:after {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 2px;
    left: 0;
    z-index: 1;
    opacity: 0;
}

.check-box>input:checked+label:after {
    opacity: 1;
}

.check-box>label>span {
    color: #656565;
    font-size: 20px;
    font-family: 'VAGRoundedStdLight';
    font-weight: 300;
}

/* .check-box>label>span abbr {
    color: #faa61a;
} */

.check-box>input {
    /* HIDE RADIO */
    visibility: hidden;
    /*Makes input not-clickable */
    position: absolute;
    /* Remove input from document flow */
}

.form-col>select {
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -ms-appearance: none;
    background: #fff url("../images/drop-down.png") no-repeat scroll 96% center;
    border-bottom: solid 1px #cccccc;
    padding: 5px 5px 5px 0;
    width: 100%;
    height: 40px;
    font-family: 'VAGRoundedStdLight';
    font-size: 18px;
    font-weight: 300;
    /* color: #b1b4b6; */
    color: #000;
}

.form-col>select:focus {
    outline: none;
}

.form-col select::-ms-expand {
    display: none;
}

/* for IE */


.custom_select {}

.select_opts {
    background-color: #FFF;
    border: 1px solid #ccc;
}

.option_title,
.option {
    padding: 12px 20px;
    border-bottom: 1px solid #ccc;
    font-family: 'VAGRoundedStdLight';
    font-size: 14px;
    font-weight: 300;
}

.option_title {
    padding-right: 30px;
    background-color: #FFF;
    padding-left: 0px;
}

.option {
    border-bottom: 1px solid #ccc;
}



.option.current,
.option:hover {
    color: #FFF;
    background-color: #faa61a;
}

.option_title::selection {
    background-color: transparent;
}

.option_title::-moz-selection {
    background-color: transparent;
}

/* pure CSS Arrow */

.arrow {
    width: 30px;
    height: 30px;
    background: #fff url("../images/drop-down.png") no-repeat scroll 96% center;
}

.custom_select.opened .arrow {
    background: #fff url("../images/drop-down.png") no-repeat scroll 96% center;
    border-top: none;
}

.form-col>select.active {
    color: #333333;
}

*/ .form-otp-container {
    display: none;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.form-otp-container>p {
    font-family: 'VAGRoundedStdThin';
    font-size: 16px;
    color: #97262a;
}

.form-otp-container>input[type="text"] {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.btn,
.focus.btn,
.btn:focus,
.btn:hover {
    margin: 0 auto;
    width: 100%;
    padding: 0;
    cursor: default;
    border: 0px;
    outline: none;
}

.focus.active.btn,
.active.btn:focus,
.focus.btn,
.focus.btn:active,
.btn:focus:active,
.btn:focus {
    outline: none;
}

.btn>a,
.btn>button {
    font-family: 'Geometos';
    font-size: 25px;
    color: #ffffff;
    padding: 15px 50px 15px 50px;
    display: inline-block;
    text-transform: uppercase;
    margin-top: 50px;
    position: relative;
    background-color: #97262a;
    /*font-family: 'Geometos';
	font-size: 28px;
	color: #ffffff;
	padding: 20px 100px 20px 100px;
	display: inline-block;
	text-transform: uppercase;
	margin-top: 30px;
	position: relative;
	background-color: #004ca8;*/
}

.btn>a:hover,
.btn>button:hover {
    background-color: #faa61a;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.btn.active,
.btn:active {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-row>div {
    margin-bottom: 0;
}

.option-clr {
    color: #333333;
}

/* form section CSS ends here ends here */

/* customized page */
.calculation-form-box {
    border: 1px solid #e9e9e9;
    text-align: center;
    position: relative;
    -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
    -moz-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    background-color: #FFF;
}

/* .calculation-form-box:hover {
    border: 1px solid #faa61a;
    -webkit-box-shadow: 0px 0px 20px -11px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 0px 20px -11px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 20px -11px rgba(0, 0, 0, 0.5);
} */

.premium-frequency::after {
    content: "";
    width: 100%;
    height: 50px;
    background: #f4f4f4;
    position: absolute;
    left: 0px;
    bottom: 0px;
}

.calculation-form-box>div {
    margin: 20px auto;
}

.calculation-form-box p {
    margin-bottom: 0px;
}

.calculation-form-box p {
    font-size: 13px;
    color: #FFF;
    position: relative;
    line-height: 16px;
}

.plan-details ul li p b {
    color: #004ca8;
}

.calculation-form-box p b {
    color: #FFF;
}

.range-value {
    background-color: var(--grey-very-light);
    font-size: 20px;
    color: #656565;
    padding: 10px 20px;
    font-family: 'Geometos';
}

.calculation-form-box .range-value {
    margin-bottom: 0px;
}

.rider-main .calculation-form-box .range-value {
    margin-bottom: 0px;
}

output.values,
input.values {
    background-color: transparent;
    display: inline-block;
    font-size: 20px;
    color: #656565;
    padding-top: 0px;
    font-family: 'Geometos';
}

/*hosanna*/
.sum-assure output.values,
.sum-assure input.values {
    width: 115px;
    text-align: center;
}

/*hosanna*/
.policy-term output.values,
.policy-term input.values {
    width: 20px;
    text-align: right;
}

/*hosanna*/
.add-rider output.values,
.add-rider input.values {
    width: auto;
    max-width: 130px;
    /*max-width: 150px; text-align: left;*/
    display: inline-block;
    text-align: center;
}

.calculation-form-box>div.range-slider-wrapper {
    width: 90%;
    margin: 35px auto;
}

.calculation-form-box>div.range-slider-wrapper.empty {
    height: 8px;
}

.calculation-form-box>div.range-premium {
    background-color: var(--grey-very-light);
    font-size: 20px;
    color: #656565;
    padding: 10px 20px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.calculation-form-box>div.detection {
    background-color: var(--brand-maroon);
    margin: 0px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 15px;
}

.calculation-form-box .box-heading {
    background-color: transparent;
    /* position: absolute; */
    padding: 5px;
    /* font-size: 16px; */
    /* color: #004ca8; */
    color: black;
    top: -20px;
    left: 20px;
    top: -12px;
    left: 30px;
    margin: 1px;
}

.range-value i {
    margin-right: 0px;
}

.calculation-form-box ul {
    padding: 25px;
    margin: 0px;
    text-align: left;
    margin-bottom: 38px;
}

.calculation-form-box ul li {
    width: 40%;
    text-align: left;
    display: inline-block;
    padding: 10px 0px;
}

/* range slider */
.rangeslider {
    background-color: #e0e0e0;
}

.rangeslider--horizontal {
    height: 5px;
    -moz-box-shadow: inset 0px 0px 0px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0px 0px 0px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0px 0px 0px rgba(0, 0, 0, 0.3);
}

.rangeslider__handle {
    width: 28px;
    height: 28px;
    background-color: var(--brand-maroon);
    border: 0px;
}

.rangeslider__fill {
    display: block;
    -moz-box-shadow: inset 0px 0px 0px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0px 0px 0px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0px 0px 0px rgba(0, 0, 0, 0.3);
    background: var(--brand-maroon);
    background: -moz-linear-gradient(left, var(--brand-maroon) 0%, var(--brand-maroon) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, var(--brand-maroon)), color-stop(100%, var(--brand-maroon)));
    background: -webkit-linear-gradient(left, var(--brand-maroon) 0%, var(--brand-maroon) 100%);
    background: -o-linear-gradient(left, var(--brand-maroon) 0%, var(--brand-maroon) 100%);
    background: -ms-linear-gradient(left, var(--brand-maroon) 0%, var(--brand-maroon) 100%);
    background: linear-gradient(to right, var(--brand-maroon) 0%, var(--brand-maroon) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#97262A', endColorstr='#97262A', GradientType=1);
}

.rangeslider__handle::after {
    background-image: url(../images/scroll-line.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
}

.section-heading {
    font-size: 24px;
    color: #034ea2;
    text-align: center;
    text-transform: uppercase;
    font-family: 'VAGRoundedStdLight';
    font-weight: 300;
}

.section-subheading {
    font-size: 18px;
    color: #034ea2;
    text-align: center;
    padding: 20px;
    line-height: 15px;
    background-color: #f4f4f4;
    font-family: 'VAGRoundedStdLight';
    font-weight: 300;
    margin-top: 10px;
}

.section-subheading-2 {
    font-size: 14px;
    color: #034ea2;
    text-align: center;
    padding: 20px;
    line-height: 15px;
    background-color: #f4f4f4;
    font-family: 'VAGRoundedStdLight';
    font-weight: 300;
    margin-top: 10px;
}

.plan-col {
    text-align: center;
    transition-delay: 0.1s;
    -webkit-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    -moz-transition-delay: 0.1s;
    -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
    -moz-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.plan-col:hover,
.plan-col.ctive {
    transition-delay: 0.4s;
    -webkit-transition-delay: 0.4s;
    -o-transition-delay: 0.4s;
    -moz-transition-delay: 0.4s;
    -webkit-box-shadow: 0px 0px 20px -11px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 0px 20px -11px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 20px -11px rgba(0, 0, 0, 0.5);
}

.plan-wrapper-inner>li {
    /*width: 25%;*/
    width: 33.33%;
    padding: 0 15px;
    float: left;
}

.plan-wrapper-inner {
    width: 100%;
    display: inline-block;
    margin-bottom: 40px;
}

.plan-wrapper-inner>li h3 {
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'Geometos';
    font-weight: 400;
    color: #656565;
    padding: 0 15px;
}

.img-wrapper {
    display: inline-block;
    padding-bottom: 20px;
    width: 100%;
    position: relative;
    padding-top: 20px;
}

.img-wrapper::after {
    content: "";
    width: 100%;
    height: calc(100% - 55px);
    bottom: 0px;
    left: 0px;
    background: #FFF;
    position: absolute;
    border: 1px solid #d3d3d3;
    z-index: -1;
    border-bottom: 0px;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.plan-name {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-content: center;
    text-align: center;
    font-size: 14px;
    color: #313131;
    font-family: 'VAGRoundedStdThin';
    text-align: left;
    min-height: 35px;
    margin-top: 15px;
}

.plan-name h3 {
    text-align: center;
    line-height: 15px;
    margin: 0px;
}

.plan-details {
    background: #ecf0f1;
    width: 100%;
    padding: 15px;
    font-size: 14px;
    color: #313131;
    font-family: 'VAGRoundedStdThin';
    text-align: left;
    min-height: 80px;
    height: auto;
    margin-right: 95px;
    align-self: center;
}

.plan-details ul li {
    margin-left: 0px;
    padding-left: 0px;
}

.plan-details p {
    margin-bottom: 0px;
    font-family: 'VAGRoundedStdLight';
    text-align: center;
}

.plan-details .radiobtn2>label>span {
    font-size: 12px;
}

.plan-details .other-options {
    margin-top: 10px;
    margin-left: 10px;
    height: 0px;
    display: block;
    overflow: hidden;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.plan-details .other-options>div {
    display: block;
}

.plan-details .radiobtn2>label::before {
    width: 16px;
    height: 16px;
    z-index: 1;
}

.terms-condition .terms .check-box {
    margin-bottom: 20px;
    display: inline-block;
}

.plan-details .radiobtn2>label::after {
    width: 6px;
    height: 6px;
    top: 5px;
    left: 5px;
    z-index: 1;
}

.plan-price {
    background-color: #e7e7e7;
    padding: 0px;
    line-height: 18px;
    color: #034ea1;
    font-size: 20px;
    font-family: 'Geometos';
    position: relative;
}

.plan-price abbr {
    font-size: 16px;
    margin-left: 0px;
    font-family: 'VAGRoundedStdThin';
}

.main-price {
    line-height: 18px;
    color: #034ea1;
    font-size: 16px;
    font-family: 'Geometos';
    position: relative;
}

.main-price abbr {
    font-size: 14px;
    margin-left: 0px;
    font-family: 'VAGRoundedStdThin';
}


.hover-price>div {
    position: relative;
    padding: 0px 0px;
}

.hover-price {
    background-color: #034ea1;
    color: #FFF;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: auto;
    max-height: 0px;
    overflow: hidden;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.hover-price h4 {
    font-size: 28px;
    margin-top: 00px;
    margin-bottom: 15px;
    font-family: 'Geometos';
}

/*.hover-price button{ 
	background-color: #faa61a; 
	font-size: 22px; 
	text-transform: uppercase;
	line-height: 18px;
	width: 100%; 
	padding: 20px 10px;
}*/
.plan-price button {
    /*background-color: #034ea1;*/
    background-color: #9b9d9e;
    /*Changed on 6-8-18*/
    font-size: 22px;
    text-transform: uppercase;
    line-height: 18px;
    width: 100%;
    padding: 20px 12px;
    color: #FFF;
    font-family: 'Geometos';
}

.plan-price button:hover {
    background-color: #034ea1;
}

/*Changed on 6-8-18*/
.plan-price button span {
    vertical-align: middle;
    display: inline-block;
    line-height: 18px;
}

.plan-price button i {
    font-size: 30px;
    line-height: 18px;
    vertical-align: middle;
    display: inline-block;
    margin-top: -4px;
}

.plan-col:hover .img-wrapper::after,
.plan-col.active .img-wrapper::after {
    height: 91%;
}

.plan-col:hover .hover-price,
.plan-col.active .hover-price {
    max-height: 350px;
    height: auto;
}

.plan-col:hover .plan-details .other-options,
.plan-col.active .plan-details .other-options {
    height: 45px;
}

.rider-adon {
    text-align: center;
    margin-bottom: 50px;
}

.rider-adon li {
    display: inline-block;
    padding: 25px 50px;
    font-size: 24px;
    position: relative;
    font-family: 'Geometos';
    color: #034ea1;
}

.rider-adon li:first-child::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0px;
    right: 0px;
    background-color: #034ea1;
}

.rider-adon li:first-child::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid #FFF;
    top: 50%;
    border-radius: 50%;
    transform: translateY(-50%);
    right: -5px;
    background-color: #034ea1;
    z-index: 2;
}

.critical {
    margin-top: 30px;
    width: 100%;
    display: inline-block;
}

.critical .range-slider-wrapper {
    width: 90%;
    max-width: 500px;
}




/*Added on 13-12-17*/
.pop-search p {
    font-family: 'VAGRoundedStdLight Bold';
    font-size: 13px;
    color: #505050;
    margin-top: 10px;
}

.pop-search span {
    font-family: 'VAGRoundedStdLight';
    font-size: 13px;
    /* color: #004ca8; */
}

/* changed here */

.radiobtn-clr>input[type=radio] {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    aspect-ratio: 1;
    background-color: var(--brand-maroon);
    border: 1px solid var(--brand-maroon);

}


.radiobtn-clr {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-inline-end: 24px;
}

.radiobtn-clr>label {
    position: relative;
    margin-bottom: 0px;

}

/* .radiobtn-clr>label:before {
    content: "";
    background-color: var(--brand-maroon);
    border: solid 1px #b1b4b6;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    position: absolute;
    top: -6px;
    left: -0px;
    z-index: -1;
}

.radiobtn-clr>label:after {
    content: "";
    background-color: var(--brand-maroon);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    top: 20%;
    left: 10px;
    z-index: -1;
} */

.radiobtn-clr>input[type=radio]:checked {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.radiobtn-clr>label>span {
    color: #b1b4b6;
    font-size: 16px;
    font-family: 'VAGRoundedStdLight';
    font-weight: 300;
}

.radiobtn-clr>input[type=radio]:checked+label>span {
    color: var(--nippon-grey);
}

.dropdown {
    margin-top: 5px;
    display: block;
    visibility: hidden;
}

.dropdown .arrow,
.dropdown .custom_select.opened .arrow {
    background-image: url("../images/drop-down-small.png");
}

/* .nri-container { display:inline-table; position: relative; max-width: 350px; width: 100%;} */
.nri-detail {
    display: none;
    position: absolute;
    top: 103%;
    left: 15px;
    margin-top: 5px;
    height: auto;
}

.nri-detail>.form-col>select {
    width: 80%;
    background: #fff url("../images/drop-down-small.png") no-repeat scroll 96% center;
    height: auto;
    font-size: 14px;
}

.terms .check-box {
    margin: 10px 0;
}

.terms .check-box>label::before,
.terms .check-box>label::after {
    width: 15px;
    height: 15px;
    top: 0px;
}

.terms .check-box>label::after {
    background-size: 70%;
}

.terms .check-box>label>span {
    font-size: 14px;
}

.terms .check-box>label {
    padding-left: 20px;
}

/* .terms { margin-top:15px;}
.terms > label > span { font-family: 'VAGRoundedStdLight'; font-size:14px; color:#b1b4b6; margin-left: 30px; font-weight:normal;}
.terms > p { font-family: 'VAGRoundedStdLight'; font-size:12px; color:#b1b4b6; margin-top: 10px;} */

/* .terms > input[type="checkbox"] {
  display: none;
}
.terms input[type="checkbox"] + label:before {
  position: absolute;
  left: 0;
  top: 33%;
  display: block;
  border: 2px solid #c4c4c4;
  content: "";
  display: block;
  height: 20px;
  text-align: center;
  width: 20px;
}
.terms input[type="checkbox"]:checked + label:before {
  content: "✓";
  color: #333;
  font-weight: bold;
} */


.form-col em {
    position: absolute;
    bottom: -15px;
    font-size: 10px;
    color: red;
    left: 0px;
}

.form-col.email-id em {
    position: absolute;
    bottom: -35px;
    font-size: 10px;
    color: red;
    left: 0px;
}

.effect-1 {
    border: 0;
    padding: 12px 0;
    border-bottom: 1px solid #ccc;
}

.effect-1~.focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #034ea2;
    transition: 0.4s;
}

.effect-1:focus~abbr {
    color: #333;
}

.effect-1:focus~.focus-border {
    width: 100%;
    transition: 0.4s;
}

.form-col.checkbox-error .effect-1 {
    border-bottom: 1px solid red;
}

.form-col.checkbox-error .effect-1:focus~.focus-border {
    background-color: red;
}

.copy-words {
    font-size: 13px;
    margin-top: 5px;
    color: #bababa;
}

.error {
    display: none;
    color: #faa61a;
    font-size: 13px;
    margin-top: 5px;
}

.note {
    color: var(--brand-maroon);
    font-size: 13px;
    margin-top: 5px;
    font-family: 'VAGRoundedStdLight';
    font-weight: 300;
}

.note>span {
    color: #b1b4b6;
    font-size: 13px;
}


.radiobtn {
    display: inline-block;
    margin: 10px 40px 0 0;
}

.radiobtn>label {
    position: relative;
    cursor: pointer;
    padding-left: 50px;
    line-height: 50px;
}

.radiobtn>label img {
    position: absolute;
    left: 0px;
    top: 0px;
    display: none;
}

.radiobtn>label.male:before {
    background-image: url(../images/male.png);
    background-position: center;
    background-repeat: no-repeat;
}

.radiobtn>label.female:before {
    background-image: url(../images/female.png);
    background-position: center;
    background-repeat: no-repeat;
}

.radiobtn>label.cigar:before {
    background-image: url(../images/cigar.png);
    background-position: center;
    background-repeat: no-repeat;
}

.radiobtn>label.no-cigar:before {
    background-image: url(../images/no-cigar.png);
    background-position: center;
    background-repeat: no-repeat;
}

.radiobtn>label:before {
    content: "";
    background-color: #b1b4b6;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.radiobtn>input:checked+label:before {
    background-color: #faa61a;
    top: 0;
}

.radiobtn>label>span {
    color: #b1b4b6;
    font-size: 16px;
    margin: 15px;
    font-family: 'VAGRoundedStdLight';
    font-weight: 300;
}

.radiobtn>input:checked+label>span {
    color: #004ca8;
}

.radiobtn>input {
    /* HIDE RADIO */
    visibility: hidden;
    /*Makes input not-clickable */
    position: absolute;
    /* Remove input from document flow */
}

/* 
.form-col > select {
	background: transparent; -webkit-appearance: none; 
	-moz-appearance: none;  
	appearance: none; 
	-ms-appearance:none;
    background: #fff url("../images/drop-down.png") no-repeat scroll 96% center;
    border-bottom: solid 1px #cccccc;
    padding: 5px 5px 5px 0;
    width: 100%;
	height:40px;
	font-family: 'VAGRoundedStdLight'; font-size:18px; font-weight: 300;
	color:#79bbe7;
}

.form-col > select option{outline: none; border: }

.form-col > select:focus { outline: none;}
.form-col select::-ms-expand { display: none; } for IE */

s-hidden {
    visibility: hidden;
    padding-right: 10px;
}

.select {
    cursor: pointer;
    display: inline-block;
    position: relative;
    font: normal 11px/22px Arial, Sans-Serif;
    color: black;
    border: 1px solid #ccc;
}

.styledSelect {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: white;
    padding: 0 10px;
    font-weight: bold;
}

.styledSelect:after {
    content: "";
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-color: black transparent transparent transparent;
    position: absolute;
    top: 9px;
    right: 6px;
}

.styledSelect:active,
.styledSelect.active {
    background-color: #eee;
}

.options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 0 0;
    padding: 0 0;
    list-style: none;
    border: 1px solid #ccc;
    background-color: white;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.options li {
    padding: 0 6px;
    margin: 0 0;
    padding: 0 10px;
}

.options li:hover {
    background-color: #39f;
    color: white;
}

.form-col>select.active {
    color: #333333;
}

.form-otp-container {
    display: block;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    margin-top: 30px;
}

.form-otp-container>p {
    font-family: 'VAGRoundedStdThin';
    font-size: 16px;
    color: #004ca8;
}

.form-otp-container>input[type="text"] {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.add-rider-sep {
    padding: 10px 0px;
    padding-top: 10px;
    background-color: #ececec;
    width: 100%;
}

.add-rider-sep-1 {
    padding: 10px 0px;
    padding-top: 10px;
    background-color: #f3d298;
}

.btn {
    margin: 0 auto;
    width: 100%;
    padding: 0;
    cursor: default;
}

.btn>a,
.btn>button {
    font-family: 'Geometos';
    font-size: 22px;
    color: #ffffff;
    padding: 15px 70px 15px 70px;
    display: inline-block;
    text-transform: uppercase;
    margin-top: 50px;
    position: relative;
    background-color: #004ca8;
}

.homepagebtn.btn>button {
    margin-top: 0px;
}

.btn>button:after {
    content: "\f105";
    font-size: 28px;
    margin-left: 10px;
    font-family: 'FontAwesome';
}

.btn>a:hover,
.btn>button:hover {
    background-color: #faa61a;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.btn>a:after {
    content: "\f105";
    font-size: 28px;
    margin-left: 10px;
    font-family: 'FontAwesome';
}

.btn>a:hover:before {
    border: 2px solid #ffffff;
    border-left-width: 0;
    border-top-width: 0;
}

.btn.active,
.btn:active {
    -webkit-box-shadow: none;
    box-shadow: none;
}


.form-row>div {
    margin-bottom: 0;
}

.option-clr {
    color: #333333;
}


.btn>button.edit-btn {
    background-color: #faa61a;
    margin-right: 40px;
}


.form-summary-container {
    width: 100%;
    display: block;
}

.form-summary-container>ul {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.form-summary-container>ul>li {
    width: 18%;
}

.form-summary-container>ul>li>.form-summary-block {
    text-align: center;
}

.form-summary-container>ul>li>.form-summary-block p {
    font-family: 'VAGRoundedStdLight';
    font-size: 16px;
    color: #004ca8;
    padding-bottom: 15px;
    border-bottom: 1px solid #d2d2d2;
    margin: 0;
}

.form-summary-container>ul>li>.form-summary-block .form-summary-detail {
    font-family: 'Geometos';
    font-size: 20px;
    color: #656565;
    padding-top: 15px;
    /* max-width: 80%; margin: 0 auto;*/
}

.premium-detail-container {
    max-width: 85%;
    margin: 80px auto 0 auto;
    text-align: center;
}

.premium-detail-container>.premium-detail-title {
    font-family: 'Geometos';
    font-size: 26px;
    color: #034ea2;
    padding: 0 5% 5px 5%;
    border-bottom: 2px solid #ecebeb;
    display: inline-block;
    margin-bottom: 20px;
}

.premium-detail-container>p {
    font-family: 'VAGRoundedStdLight';
    font-size: 20px;
    line-height: 32px;
    color: #505050;
}

.premium-detail-container>.total-annual-premium {
    font-family: 'VAGRoundedStdLight';
    font-size: 30px;
    color: #231f20;
    margin: 40px 0;
    border-bottom: 2px solid #004ca8;
    display: inline-block;
    padding-bottom: 10px;
}

.premium-detail-container>.total-annual-premium>p {
    display: inline-block;
    margin: 0;
}

.premium-detail-container>.total-annual-premium>p.orange-copy {
    color: #faa61a;
    display: inline-block;
}

.premium-detail-container>.total-annual-premium>span {
    font-size: 22px;
    color: #808285;
}

.premium-detail-container>.form-col.pan-no {
    width: 18%;
    margin: 0 auto;
}

.range-value>p.range-value-note {
    color: #000;
    font-size: 12px;
    margin-top: 5px;
    font-family: 'VAGRoundedStdLight';
}

/*Changed on 6-8-18*/

.download {
    display: block;
    font-family: 'Geometos';
    font-size: 20px;
    color: var(--brand-maroon);
    text-decoration: underline;
    margin-bottom: 50px;
}

.download:hover {
    color: var(--brand-maroon);
    text-decoration: underline;
}

.download>.downld-img {
    padding-left: 20px;
}
.downld-img>img {
    max-width: 18px;
}

.terms-condition {
    position: relative;
    text-align: center;
    margin-top: 50px;
}

/* .terms-condition > .terms > input[type="checkbox"] { display: none;}
.terms-condition > .terms > label > span {font-family:'VAGRoundedStdLight Bold'; font-size:24px; color:#505050; margin-left: 10px;}
.terms-condition > .terms input[type="checkbox"] + label:before { position: absolute; left: 46%; top: 5px; display: block; border: 2px solid #c4c4c4; content: ""; display: block; height: 20px; text-align: center;  width: 20px;}
.terms-condition > .terms input[type="checkbox"]:checked + label:before { content: "✓"; color: #333; font-weight: bold;} */
.terms-condition>.terms>p {
    font-family: 'VAGRoundedStdThin';
    font-size: 20px;
    color: #505050;
    display: inline-block;
    line-height: 16px;
    width: calc(100% - 30px);
    vertical-align: top;
    text-align: left;
}

.terms-condition .terms.tems-step .check-box {
    margin: 0px 0;
    margin-bottom: 0px;
}

.step-5-btn .btn>button {
    margin-top: 25px;
}

/*Accordian CSS*/

.accordian-title {
    cursor: pointer;
    font-family: 'VAGRoundedStdLight';
    font-size: 24px;
    color: #004ca8;
    padding: 20px 20px 20px 40px;
    text-decoration: underline;
    display: block;
    margin-top: 10px;
}

.accordian-content {
    color: #333;
    padding: 5px 10px 0px 40px;
    line-height: 18px;
}

.accordian-content>p {
    font-size: 14px;
}

.accordian-content>span {
    font-size: 14px;
}

.accordian-content ul>li {
    list-style-type: decimal;
}

.openlanguage {
    color: #004ca8;
    background: url(../images/minus.png) no-repeat right 40px center #f4f4f4;
}

.closedlanguage {
    color: #004ca8;
    background: url(../images/plus.png) no-repeat right 40px center #f4f4f4;
}


.ui-corner-all {
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.ui-menu {
    border: 1px solid lightgray;
    font-family: 'VAGRoundedStdLight';
    font-size: 14px;
}

.ui-menu .ui-menu-item a {
    color: #888;
    line-height: 20px;
    padding: 5px;
}

.ui-menu .ui-menu-item:hover {
    display: block;
    text-decoration: none;
    color: #3D3D3D;
    cursor: pointer;
    background-image: none;
    border: 0px solid lightgray;
    line-height: 20px;
}

.ui-widget-content .ui-state-hover,
.ui-widget-content .ui-state-focus {
    border: 0px solid lightgray;
    background-image: none;
    background-color: lightgray;
    color: #3D3D3D;
    line-height: 20px;
}

.ui-menu .ui-menu-item {
    padding: 5px 0;
}

.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
    margin: 0px;
}

.medical-schedular h4 {
    font-size: 20px;
}

.medical-schedular h4~p {
    font-size: 16px;
    line-height: 18px;
    margin-top: 10px;
}

.medical-schedular ul {
    display: inline-block;
    width: 100%;
}

.medical-schedular ul li {
    width: 23%;
    margin: 0;
    float: left;
    font-size: 16px;
    padding-left: 10px;
    margin-left: 15px;
    /* list-style: url(../images/bullet.png); */
    list-style: disc;
}


/*css by atul*/
.wrapperA {
    width: 100%;
    float: left;
}

img {
    max-width: 100%;
}

/*aadhar card details css*/
.dearXYZ h5 {
    color: #505050;
    font-size: 20px;
    line-height: 35px;
    margin: 10px 0 0;
    max-width: 920px;
}

.medical-schedular h4.fbA26 {
    font-size: 26px;
    color: var(--brand-maroon);
    margin-bottom: 20px;
}

.lifeStage h5 {
    color: #505050;
    font-size: 20px;
    line-height: 35px;
    margin: 10px 0 0;
    max-width: 920px;
}

.lifeStage .check-box>label>span {
    color: #505050;
    font-size: 20px;
    font-weight: normal;
    font-family: unset;
}

.aadharInfo h4.fbA26 {
    display: inline-block;
    margin-right: 40px;
}

.aadharInfo .check-box>label>span {
    font-size: 12px;
    font-family: unset;
}

.aadharInfo .check-box>label:before {
    top: -4px;
}

.aadharInfo .check-box>label:after {
    top: -4px;
}

.aadharInfo .note {
    position: relative;
}

.aadharInfo .note .resendArrow {
    position: relative;
    width: 100px;
    display: inline-block;
}

.aadharInfo .note .resendArrow .arrowImg {
    position: absolute;
    top: 0;
    right: 0;
    width: 16px;
    height: 16px;
}

.aadharcardDetails .dearXYZ h5 {
    font-family: 'VAGRoundedStdLight';
}

/* additionalDetails css */
.navigationWrap {
    width: 100%;
    border-top: 1px solid #ccc;
    padding-top: 30px;
    float: left;
}

.navigationWrap ul {
    width: 100%;
    margin: 0;
    padding: 0;
    float: left;
}

.navigationWrap ul li {
    display: table-cell;
    width: 12.5%;
    margin: 0;
    padding: 0;
}

.navigationWrap ul li a {
    float: left;
    width: 80px;
    color: #b1b4b6;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    position: relative;
}

.navigationWrap ul li.active a {
    color: #004ca8;
    position: relative;
}

.navigationWrap ul li.active a:after {
    content: '';
    position: absolute;
    top: -35px;
    left: 0;
    width: 140%;
    height: 7px;
    background-color: #eb2726;
}

.navigationWrap ul li:nth-child(5) a {
    width: 100px;
}

.navigationWrap ul li a:after {
    content: '';
    position: absolute;
    top: -35px;
    left: 0;
    width: 0%;
    height: 7px;
    background-color: #eb2726;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.navigationWrap ul li:nth-child(5) a {
    width: 100px;
}

.navigationWrap ul li a:hover {
    color: #004ca8;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.navigationWrap ul li a:hover:after {
    width: 140%;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.additionalDetails .formWrapA .identificationProof {
    margin-top: 50px;
    width: 100%;
    float: left;
}

.additionalDetails .formWrapA .identificationProof .fbA26 {
    color: var(--brand-maroon);
    margin: 0 0 40px;
    padding: 0 15px;
}

/* applicationDetails css */
.applicationDetails .Politicallyexposed h4 {
    margin: 0;
}

.applicationDetails .Politicallyexposed p {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 24px;
    width: 100%;
    max-width: 810px;
    display: inline-block;
    color: #004ca8;
}

.applicationDetails .Politicallyexposed .radioWrapA {
    margin: 20px 0 0;
}

.applicationDetails .Politicallyexposed .checkboxWrap {
    margin: 0px 0 50px;
}

.applicationDetails .Politicallyexposed .checkboxWrap .check-box>label>span {
    font-family: unset;
    font-size: 18px;
    color: #b1b4b6;
    letter-spacing: 1px;
}

.applicationDetails .Politicallyexposed .checkboxWrap .check-box .note {
    color: #b1b4b6;
    padding: 10px 0 0 30px;
}

.applicationDetails .Politicallyexposed .checkboxWrap .check-box .note strong {
    color: #606060;
}

.applicationDetails .Politicallyexposed .questionWrap .fourOptionsW .radiobtn-clr {
    width: calc(50% - 25px);
    float: left;
}

.applicationDetails .Politicallyexposed .questionWrap .fourOptionsW .radiobtn-clr:nth-child(3),
.questionWrap .fourOptionsW .radiobtn-clr:nth-child(4) {
    margin-top: 40px;
}

.applicationDetails .Politicallyexposed .faqctaWrap {
    font-size: 14px;
    color: #606060;
    width: 80px;
    height: 33px;
    line-height: 30px;
    display: inline-block;
    border: 1px solid #b1b4b6;
    text-align: center;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    margin-left: 40px;
}

.applicationDetails .Politicallyexposed .faqctaWrap:hover {
    background-color: #faa61a;
    border: 1px solid #faa61a;
    color: #fff;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.applicationDetails .Politicallyexposed .acNumber .form-col {
    width: 400px;
    margin: 5px 0 0;
}

.applicationDetails .Politicallyexposed .acNumber .note {
    margin: 5px 0 0;
}

.applicationDetails .Politicallyexposed .acNumber .note.linkText {
    display: block;
    width: 100%;
    float: left;
    max-width: 100%;
}

.applicationDetails .Politicallyexposed .allfaqWrap h4 {
    text-transform: uppercase;
    color: #004ca8;
    margin-bottom: 45px;
}

.applicationDetails .Politicallyexposed .checkboxWrap.checkboxWrapCenter {
    margin: 0 0 50px;
}

.applicationDetails .Politicallyexposed .checkboxWrap.checkboxWrapCenter .check-box>label>span {
    color: #505050;
}

.applicationDetails .Politicallyexposed .checkboxWrap.checkboxWrapCenter .check-box {
    width: 100%;
    text-align: center;
}

.applicationDetails .Politicallyexposed .radioWrapA {
    margin-bottom: 20px;
}

.applicationDetails .Politicallyexposed .acNumber .form-col.max700 {
    width: 700px;
}

.applicationDetails .Politicallyexposed h4 abbr.yearWrap {
    color: #004ca8;
    font-weight: bold;
}

.applicationDetails .questionThreeBG {
    background-color: transparent;
}

.applicationDetails .makeSection {
    position: relative;
    padding: 25px;
}

.applicationDetails .makeSection:after {
    content: '';
    position: absolute;
    width: 102%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    background-color: #e1e1e1;
    z-index: -2;
    opacity: 0.6;
}

/*bankDetails css*/
.additionalDetails.bankDetails .formWrapA .identificationProof .fbA26 {
    font-family: 'Geometos';
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 20px;
}

.additionalDetails.bankDetails .formWrapA .identificationProof p {
    font-size: 16px;
    line-height: 26px;
    color: #004ca8;
    display: inline-block;
    width: 100%;
    max-width: 1000px;
}

.additionalDetails.bankDetails .check-box {
    margin: 10px 0 20px;
}

.additionalDetails.bankDetails .check-box>label>span {
    font-size: 14px;
}

.additionalDetails.bankDetails .check-box>label:before {
    top: -4px;
}

.additionalDetails.bankDetails .check-box>label:after {
    top: -4px;
}


/*documents css*/
.documents .pW0 {
    padding: 0;
    margin-bottom: 40px;
}

.documents .formWrapUploadD {
    width: 100%;
    float: left;
}

.colWrapA:nth-child(odd) {
    padding-right: 50px;
}

.colWrapA:nth-child(even) {
    padding-left: 50px;
}

.documents .formWrapUploadD .custom-file-upload {
    width: 100%;
    float: left;
    position: relative;
    padding: 10px 0 0;
}

.documents .formWrapUploadD .labelA {
    font-size: 16px;
    color: #004ca8;
}

.documents .formWrapUploadD .file-upload-input {
    width: calc(100% - 150px);
    float: left;
    border-bottom: 1px solid #d2d2d2;
    position: relative;
    top: 22px;
    font-size: 22px !important;
    /* changed here */
    border-radius: 0.5rem;
    box-shadow: 0 3px 4px 2px rgba(0, 0, 0, 0.1);
}

.documents .formWrapUploadD .file-upload-button {
    width: 100px;
    height: 40px;
    font-size: 16px;
    /* font-family: 'Geometos'; */
    background-color: var(--brand-maroon);
    color: #fff;
    margin: 18px;
    padding: 0;
    /* float: right; */
    cursor: pointer;
    border-radius: 0.5rem;
    box-shadow: 0 3px 4px 2px rgba(0, 0, 0, 0.1);
}

.documents .formWrapUploadD .check-box {
    width: 100%;
    float: left;
    margin: 0px;
}

.documents .formWrapUploadD .check-box>label>span {
    font-size: 14px;
}

.documents .formWrapUploadD .check-box>label:before {
    top: -4px;
}

.documents .formWrapUploadD .check-box>label:after {
    top: -4px;
}

.documents .formWrapUploadD .colWrapA {
    position: relative;
}

.documents .form-control.form-input.form-style-fake {
    background-color: transparent;
    border: none;
    padding: 0;
    position: relative;
}

.documents .form-control.form-input.form-style-fake:focus {
    outline: none;
    box-shadow: none;
    -webkit-box-shadow: none;
}

.documents .placeHolder {
    position: relative;
    top: 0px;
    width: calc(100% - 150px);
    visibility: hidden;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.documents .formWrapUploadD .colWrapA label {
    margin-bottom: 0;
    width: 100%;
}

.documents .incomeProof {
    width: calc(100% - 150px);
    float: left;
}

.documents .formWrapUploadD .incomeProofWrap .file-upload-button {
    position: absolute;
    top: 18px;
    right: 0;
}

.documents .formWrapUploadD .incomeProofWrap .file-upload-input {
    border: none;
}

.documents .formWrapUploadD .incomeProofWrap .check-box {
    width: auto;
}

.documents .formWrapUploadD .incomeProofWrap .placeHolder {
    color: #000;
}

.documents .formWrapUploadD .incomeProofWrap .file-upload-input {
    top: 0;
}

.documents .formWrapUploadD .incomeProofWrap .check-box {
    margin: 0;
}


/*familyHistory1 css*/
.familyHistory1 .form-row h4 {
    margin: 0;
}

.familyHistory1 .form-row p {
    font-size: 14px;
    color: #004ca8;
    display: inline-block;
}

.familyHistory1 .form-row .radiobtn-clr {
    margin: 10px 20px 0 0px;
}

.form-row-new {
    margin-top: 0px;
}

/*lifeCoverDetails css*/
.lifeCoverDetails .formWrapA {
    display: inline-block;
    width: 100%;
}

.lifeCoverDetails .formWrapA .form-row h4 {
    margin-bottom: 45px;
}

.lifeCoverDetails .formWrapA .insuranceDetail .additionalDetails {
    font-family: 'Geometos';
}

.lifeCoverDetails .formWrapA .addMoreA {
    font-size: 22px;
    cursor: pointer;
    color: #b1b4b6;
    display: inline-block;
    position: relative;
    width: 130px;
}

.lifeCoverDetails .formWrapA .addMoreA abbr {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #b1b4b6;
    color: #fff;
    padding: 2px 7px 5px;
    line-height: 22px;
}

/* mailingInformation css */
.mailingInformation .editWrapA {
    background-color: #b1b4b6;
    color: #fff;
    width: 40px;
    padding: 4px 0 2px;
    display: inline-block;
    text-align: center;
    font-size: 13px;
    cursor: pointer;
    font-family: 'VAGRoundedStdLight';
    text-transform: capitalize;
    margin-left: 40px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.mailingInformation .editWrapA:hover {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    background-color: #004ca8;
}

.mailingInformation .insuranceDetail h4 {
    color: var(--brand-maroon);
    margin: 0;
    display: inline-block;
}

.additionalDetails h4 {
    color: #eb2726;
    margin: 0;
    display: inline-block;
}

.mailingInformation .insuranceDetail .check-box {
    margin-left: 100px;
    width: 200px;
}

.mailingInformation .insuranceDetail .check-box>label>span {
    font-size: 14px;
}

.mailingInformation .insuranceDetail .check-box>label:before {
    top: -4px;
}

.mailingInformation .insuranceDetail .check-box>label:after {
    top: -4px;
}

.mailingInformation .width40 {
    width: 29%;
}


/*lifestyleDetails css*/
.lifestyleDetails .medical-schedular h4 {
    line-height: 30px;
}

.mb25 {
    margin-bottom: 20px !important;
}

.pl0 {
    padding: 0;
}

.lifestyleDetails .check-box>label>span {
    font-size: 18px;
}

.lifestyleDetails .check-box>label:before,
.lifestyleDetails .check-box>label:after {
    top: 0;
}

.lifestyleDetails .titleWrap {
    font-size: 16px;
    line-height: normal;
    color: #004ca8;
}

.lifestyleDetails .mTop10 {
    margin-top: 10px;
}


/*medicalDetails css*/
.medicalDetails .mb30 {
    margin-bottom: 30px !important;
}

.medicalDetails h4 {
    margin-top: 0;
}

/*.medicalDetails .questionEightixWrap{overflow-x: hidden !important;}*/

/*nomineeDetails cs*/
.nomineeDetails .form-row h4 {
    font-family: 'Geometos';
    text-transform: uppercase;
    color: #004ca8;
    margin-top: 0px;
}

.nomineeDetails .form-row h4 .check-box {
    margin-left: 100px;
}

.nomineeDetails .form-row h4 .check-box>label>span {
    font-size: 14px;
    text-transform: none;
}

.nomineeDetails .formWrapA .addMoreA {
    font-size: 20px;
    cursor: pointer;
    color: #004ca8;
    display: inline-block;
    position: relative;
    width: 160px;
    font-family: 'Geometos';
    text-transform: uppercase;
}

.nomineeDetails .formWrapA .addMoreA abbr {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #0097d6;
    color: #fff;
    padding: 2px 7px 1px;
    line-height: 22px;
}


/*otpWrap css*/
.otpWrap .titleWrap {
    font-size: 28px;
    text-transform: uppercase;
    text-align: center;
    font-family: 'Geometos';
    color: #004ca8;
    margin-top: 0;
}

.otpWrap .labelWrap {
    font-size: 16px;
    display: inline-block;
    width: 100%;
    text-align: center;
    color: #004ca8;
    padding: 0 0 15px;
    position: relative;
}

.otpWrap .labelWrap:after {
    content: '';
    width: 80%;
    height: 1px;
    background-color: #d2d2d2;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.otpWrap .contentWrap {
    width: 100%;
    font-size: 20px;
    font-family: 'Geometos';
    text-transform: none;
    display: inline-block;
    text-align: center;
    padding: 15px 0 0;
    max-width: 80%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.otpWrap .fiveColWrap .col-sm-2 {
    width: 20%;
}

.otpWrap .fiveColWrap .labelWrap:after {
    width: 98%;
}

.otpWrap .fiveColWrap .contentWrap {
    max-width: 98%;
}

.otpWrap .mbWrap100 {
    margin-bottom: 100px;
}

.otpWrap .mainplanWrap {
    width: 100%;
    max-width: 600px;
    float: left;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.otpWrap .planoptionWrap .labelWrap {
    font-size: 20px;
    display: inline-block;
    width: 100%;
    text-align: center;
    color: #004ca8;
    padding: 0 0 15px;
    position: relative;
}

.otpWrap .planoptionWrap .labelWrap:after {
    content: '';
    width: 400px;
    height: 1px;
    background-color: #d2d2d2;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.otpWrap .planoptionWrap .contentWrap {
    max-width: 280px;
    float: left;
    font-family: 'VAGRoundedStdLight';
    color: #333;
}

.otpWrap .annualPremium {
    margin: 0;
    padding: 0;
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 30px;
    position: relative;
    padding-bottom: 15px;
}

.otpWrap .annualPremium:after {
    content: '';
    width: 90%;
    height: 1px;
    background-color: #004ca8;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.otpWrap .annualPremium abbr {
    color: #faa61a;
}

.otpWrap .annualPremium span {
    font-size: 22px;
    color: #808285;
}

.otpWrap .captchaWrap {
    width: 100%;
    padding: 30px 20px 20px 30px;
    display: inline-block;
    background-color: #f8f8f8;
    margin: 30px 0 50px;
    border: 1px solid #f2f2f2;
    border-radius: 2px;
}

.otpWrap .captchaWrap .captchaImg {
    display: inline-block;
    width: 160px;
    vertical-align: middle;
}

.otpWrap .captchaWrap .form-col {
    width: calc(100% - 164px);
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    padding: 0 0 0 30px;
}

.otpWrap .captchaWrap .form-col input[type="text"] {
    background-color: transparent;
}

.otpWrap .captchaWrap .form-col .effect-1:focus~.focus-border {
    width: 92%;
    left: 30px;
}

.otpWrap .captchaWrap .form-col .effect-1~.focus-border {
    left: 30px;
}

.otpWrap .enterOTP .form-col {
    margin: 0 auto;
    display: block;
    width: 86%;
}

.otpWrap .enterOTP .form-col label {
    width: 100%;
    text-align: center;
    font-size: 20px;
    color: #505050;
}

.otpWrap .enterOTP p.note {
    width: 86%;
    margin: 10px auto 0;
    display: block;
}

/*paymentFailure css*/
.paymentFailure .innerWrap {
    padding: 50px 15px;
    text-align: center;
}

.paymentFailure .innerWrap abbr {
    color: #004ca8;
    font-size: 50px;
    text-align: center;
    font-family: 'Geometos';
    width: 100%;
    display: inline-block;
}

.paymentFailure .innerWrap h4 {
    color: #909090;
    font-size: 26px;
    text-align: center;
    width: 100%;
    display: inline-block;
    margin: 30px 0 10px;
}

.paymentFailure .innerWrap p {
    color: #909090;
    font-size: 22px;
    text-align: center;
    width: 100%;
    display: inline-block;
    margin: 0 0 50px;
    line-height: 36px;
    max-width: 580px;
}

.paymentFailure .innerWrap .btn>button:after {
    display: none;
}

.paymentFailure .innerWrap .btn>button:before {
    content: "\f104";
    font-size: 28px;
    margin-right: 10px;
    font-family: 'FontAwesome';
}

/*thankYou1 css*/
.thankYou1 .innerWrap p {
    max-width: 740px;
}

.paymentFailure.thankYou1 .innerWrap .btn>button:after {
    display: inline-block;
}

.paymentFailure.thankYou1 .innerWrap .btn>button:before {
    display: none;
}

/*thankYou2 css*/
.thankYou2 .innerWrap .mbWrap00 {
    margin: 0;
}

.thankYou2 .innerWrap span {
    display: block;
    font-size: 28px;
    color: #004ca8;
    margin: 10px 0 5px;
}

.thankYou2 .innerWrap a {
    display: block;
    font-size: 22px;
    color: #004ca8;
    margin: 50px 0 0;
    position: relative;
}

.thankYou2 .innerWrap a:after {
    content: '';
    width: 300px;
    height: 1px;
    background-color: #004ca8;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

/*retriveApplication css*/
.retriveApplication .welcomeContentW span {
    font-size: 26px;
    line-height: 34px;
    color: #909090;
    display: block;
    margin: 0 0 10px;
}

.retriveApplication .welcomeContentW abbr {
    font-size: 22px;
    line-height: 30px;
    color: #909090;
    display: block;
}

.retriveApplication .form-col p {
    font-size: 14px;
    padding: 11px 0;
    color: #004ca8;
    border-bottom: 2px solid #004ca8;
    margin: 0;
}

input[type="text"] {
    letter-spacing: 0;
}

.noneD {
    overflow: hidden;
    height: auto;
    max-height: 0;
}

.noneD1 {
    display: none;
}

.mt45-0 {
    margin-top: 45px;
}

.custom-container {
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.paddingLR0>div,
.paddingLR0 {
    padding: 0px !important;
}

.additionalDetails,
familyHistory1,
.lifeCoverDetails,
.lifestyleDetails,
.medicalDetails {
    z-index: 1;
    position: relative;
}

/*select css*/
.select-hidden {
    display: none;
    visibility: hidden;
    padding-right: 10px;
}

.select {
    cursor: pointer;
    display: inline-block;
    position: relative;
    font-size: 14px;
    color: #333;
    width: 100%;
    height: 45px;
    border: none;
    border-bottom: 1px solid #ccc;
    font-family: 'VAGRoundedStdLight';
}

.select-styled {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    padding: 8px 0px;
    -moz-transition: all 0.5s ease-in;
    -o-transition: all 0.5s ease-in;
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
}

.select-styled:after {
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0px;
    right: 0px;
    background-image: url('../images/drop-down.png');
}

.medical-schedular ul.select-options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: #fff;
    border: 1px solid #ccc;
}

.select-options li {
    margin: 0;
    padding: 12px 20px !important;
    font-size: 14px !important;
    border-top: 1px solid #ccc;
    -moz-transition: all 0.5s ease-in;
    -o-transition: all 0.5s ease-in;
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
    width: 100% !important;
    list-style: none !important;
    margin: 0 !important;
}

.select-options li:hover {
    color: #fff;
    background: #faa61a;
}

.select-options li[rel="hide"] {
    display: none;
}

.select-options li.current {
    color: #fff;
    background: #faa61a;
}

#duplicater {
    width: 100%;
    float: left;
    z-index: 1;
}

/*.additionalDetails.bankDetails .formWrapA .identificationProof p.noneD{display: none;}*/



/*responsive css*/
@media only screen and (max-width:1600px) {
    .step-container-1 {
        margin-top: 5px;
    }
}

/*21-03-2018 css start here*/
.nomineeDetails .formWrapA .addMoreA {
    width: 200px;
}

.nomineeaddAD .custom-container {
    padding: 0;
}

.nomineeaddAD .accordian-container .accordian-title {
    margin: 0 0 45px;
    font-family: 'Geometos';
    font-size: 20px;
    padding: 29px 0;
}

.nomineeaddAD .closedlanguage,
.nomineeaddAD .openlanguage {
    background-image: none;
    background-position: none;
}

.nomineeaddAD .closedlanguage .custom-container:after {
    content: '+';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    color: #fff;
    background-color: #0097d6;
    font-size: 30px;
    font-weight: normal;
    width: 38px;
    height: 38px;
    text-align: center;
    line-height: 38px;
}

.nomineeaddAD .openlanguage .custom-container:after {
    content: '-';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    color: #fff;
    background-color: #0097d6;
    font-size: 30px;
    font-weight: normal;
    width: 38px;
    height: 38px;
    text-align: center;
    line-height: 38px;
}

.nomineeaddAD .accordian-content {
    padding: 0;
}

.nomineeaddAD .accordian-content .custom-container>div.mlAD0 {
    margin-left: 0;
}

.nomineeaddAD .accordian-content .custom-container>div.mrAD0 {
    margin-right: 0;
}

.nomineeaddAD .accordian-content .custom-container>div {
    position: relative;
    width: auto;
    padding: 0;
    margin: 0 64px 45px;
    display: inline-block;
    float: none;
    vertical-align: top;
}

.nomineeaddAD .accordian-content .custom-container>div span {
    font-size: 16px;
    color: #b1b4b6;
    padding: 0 0 16px;
    margin: 0 0 16px;
    position: relative;
    display: block;
    text-align: center;
}

.nomineeaddAD .accordian-content .custom-container>div span:after {
    content: '';
    width: 105%;
    height: 1px;
    background-color: #a4a4a4;
    position: absolute;
    left: 0;
    bottom: 0;
}

.nomineeaddAD .accordian-content .custom-container>div abbr {
    color: #004ca8;
    font-size: 16px;
    display: block;
    text-align: center;
}

.nomineeaddAD .accordian-content .custom-container .maxWidthAD200 {
    width: 100%;
    max-width: 200px;
    text-align: center;
}

.nomineeaddAD .accordian-content .custom-container .maxWidthAD30 {
    width: 100%;
    max-width: 30px;
    text-align: center;
}

.nomineeaddAD .accordian-content .custom-container .maxWidthAD100 {
    width: 100%;
    max-width: 100px;
    text-align: center;
}

.nomineeaddAD .accordian-content .custom-container .maxWidthAD150 {
    width: 100%;
    max-width: 150px;
}

.nomineeaddAD .accordian-content .custom-container .maxWidthAD200.txtLeft {
    text-align: center;
}

.nomineeaddAD .accordian-content .custom-container h4 {
    font-size: 20px;
    color: #004ca8;
    font-family: 'Geometos';
}

.nomineeaddAD .accordian-content .custom-container.nomineeAddressAD>div {
    margin: 0 54px 45px;
}

.nomineeaddAD .accordian-content .custom-container.nomineeAddressAD>div.mlAD0 {
    margin-left: 0;
}

.nomineeaddAD .accordian-content .custom-container.nomineeAddressAD>div.mrAD0 {
    margin-right: 0;
}

.nomineeaddAD .accordian-content .custom-container.nomineeAddressAD .maxWidthAD400 {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.nomineeaddAD .accordian-content .custom-container.nomineeAddressAD .maxWidthAD300 {
    width: 100%;
    max-width: 300px;
    text-align: center;
}

.nomineeaddAD .accordian-content .custom-container.nomineeAddressAD .maxWidthAD400.txtLeft {
    text-align: center;
}

.nomineeaddAD .accordian-content .custom-container.nomineeAddressAD .maxWidthAD150.txtCenter {
    text-align: center;
}

.nomineeaddAD .accordian-content .custom-container.nomineeAddressAD>div span {
    display: block;
}

.nomineeaddAD .accordian-content .custom-container.nomineeAddressAD>div span:after {
    width: 100%;
}

.nomineeaddAD .accordian-content .custom-container.editButtonAD>div {
    margin: 0;
}

.nomineeaddAD .accordian-content .custom-container.editButtonAD>div button {
    background-color: #b1b4b6;
    color: #fff;
}

.insuranceAddAD .accordian-title .custom-container {
    padding: 0 15px;
}

.nomineeaddAD.insuranceAddAD .closedlanguage .custom-container:after,
.nomineeaddAD .openlanguage .custom-container:after {
    right: 15px;
}

.familyHistory1 .marginBottomAD45 {
    margin-bottom: 45px !important;
}

.overlayAD {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 102;
    display: none;
}

.overlayAD .innnerWrapAD {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    background-color: #fff;
    width: 100%;
    max-width: 500px;
    padding: 60px 30px;
    text-align: center;
}

.overlayAD .innnerWrapAD span {
    font-size: 16px;
}

.overlayAD .innnerWrapAD .btnWrapAD {
    width: 100%;
    margin: 20px 0 0;
    display: inline-block;
}

.overlayAD .innnerWrapAD .btnWrapAD abbr {
    font-size: 14px;
    background-color: #004ca8;
    padding: 10px 16px;
    cursor: pointer;
    color: #fff;
    font-family: 'Geometos';
    width: 100px;
    max-width: 100px;
    display: inline-block;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.overlayAD .innnerWrapAD .btnWrapAD abbr:hover {
    background-color: #faa61a;
}

.overlayAD .innnerWrapAD .closeAD {
    font-size: 16px;
    line-height: 10px;
    background-color: #004ca8;
    padding: 10px;
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.overlayAD .innnerWrapAD .closeAD:hover {
    background-color: #faa61a;
}

header .custom-container {
    left: 0;
    transform: none;
    -webkit-transform: none;
}

.nomineeaddAD.insuranceAddAD.insuranceAddADFI .custom-container.nomineeAddressAD {
    display: flex;
    justify-content: space-between;
}

.nomineeaddAD.insuranceAddAD.insuranceAddADFI .accordian-content .custom-container.nomineeAddressAD .maxWidthAD400.txtLeft {
    width: 30%;
    max-width: none;
    margin: 0 0 45px;
}

.nomineeaddAD.insuranceAddADFI .accordian-content .custom-container.nomineeAddressAD .maxWidthAD400 {
    width: 30%;
    max-width: none;
    margin: 0 0 45px;
}

/*21-03-2018 css end here*/


/**/

.check-box>input:checked~label:after {
    opacity: 1;
}

.check-box>label {
    color: #656565;
    font-size: 16px;
    font-family: 'VAGRoundedStdLight';
    font-weight: 300;
}

.customauthError.radioButtonError {
    position: relative !important;
    top: 5px !important;
    bottom: auto !important;
}

.select_opts {
    height: 200px !important;
}

/*26-04-2018 css Starts here*/
.select2-container {
    width: 100% !important;
}

.select2-container--open .select2-dropdown {
    left: 0;
    top: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    position: relative;
    border: none;
}

.select2-search--dropdown:before {
    content: "\f002";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    position: absolute;
    font-size: 14px;
    top: 9px;
    right: 16px;
    color: #808080;
    z-index: 10;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus,
.select2-container--default .select2-selection--single:focus {
    outline: none;
}

.select2-container--default .select2-selection--single {
    background: #fff url(../images/drop-down.png) no-repeat scroll 96% center !important;
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -ms-appearance: none;
    border: none;
    border-bottom: solid 1px #cccccc;
    padding: 5px 5px 5px 0;
    width: 100%;
    height: 40px;
    font-family: 'VAGRoundedStdLight';
    font-size: 14px;
    font-weight: 300;
    color: #b1b4b6;
    border-radius: 0;
}

.select2-selection__arrow {
    display: none;
}

.select2-dropdown .select2-search input {
    font-family: 'VAGRoundedStdLight';
    font-size: 14px;
    font-weight: 300;
    color: #000;
    padding: 0;
}

.select2-results>ul li {
    font-family: 'VAGRoundedStdLight';
    font-size: 14px;
    font-weight: 300;
    color: #000;
    padding: 0;
    margin-bottom: 3px;
}

/*margin-bottom - Css changed on 1-6-2018 */

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
}

/*26-04-2018 css end here*/



.btnWrapBackNextAD .backbtnAD::after {
    display: none;
}

.btnWrapBackNextAD .backbtnAD::before {
    content: "\f104";
    font-family: "FontAwesome";
    font-size: 22px;
    margin-right: 10px;
}

.btnWrapBackNextAD .backbtnAD:hover::before {
    border: 0;
}



/**/
.plan-wrapper-inner>li .plan-details .other-options>div .mobileMsgAD {
    display: none;
}

#progressBar p {
    position: fixed;
    top: 50% !important;
    left: 50% !important;
    color: White;
    transform: translate(-50%, -50%) !important;
    -webkit-transform: translate(-50%, -50%) !important;
}

#progressBar p img {
    width: 180px;
    height: 180px;
}

.terms .check-box>label::before,
.terms .check-box>label::after {
    top: -10px;
}

.terms-condition .terms.tems-step {
    width: 100%;
    /*float: left;*/
    max-width: 820px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.terms-condition>.terms>p span {
    display: block;
    margin: 0 0 6px;
}

.redNoteAD {
    width: 100%;
    float: left;
    padding: 0 20px;
    margin: 20px 0 0 !important;
    color: red;
    font-size: 13px;
    font-weight: 700;
}

.riderMsg {
    width: 100%;
    float: left;
    padding: 0 20px;
    margin: 20px 0 0 !important;
    color: red;
    font-size: 13px;
    font-weight: 700;
}


input[type="text"]::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: black;
    font-family: 'VAGRoundedStdLight';
}

input[type="text"]::-moz-placeholder {
    /* Firefox 19+ */
    color: black;
    font-family: 'VAGRoundedStdLight';
}

input[type="text"]:-ms-input-placeholder {
    /* IE 10+ */
    color: black;
    font-family: 'VAGRoundedStdLight';
}

input[type="text"]:-moz-placeholder {
    /* Firefox 18- */
    color: black;
    font-family: 'VAGRoundedStdLight';
}

input[type="email"]::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: black;
    font-family: 'VAGRoundedStdLight';
}

input[type="email"]::-moz-placeholder {
    /* Firefox 19+ */
    color: black;
    font-family: 'VAGRoundedStdLight';
}

input[type="email"]:-ms-input-placeholder {
    /* IE 10+ */
    color: black;
    font-family: 'VAGRoundedStdLight';
}

input[type="email"]:-moz-placeholder {
    /* Firefox 18- */
    color: black;
    font-family: 'VAGRoundedStdLight';
}

.plan-wrapper-inner>li .check-box>label {
    font-size: 14px;
}

.plan-wrapper-inner>li .redNoteAD {
    display: none;
}

.sum-assure output.values,
.sum-assure input.values,
.form-summary-container>ul>li>.form-summary-block .form-summary-detail {
    /* color: #656565 !important; */
    color: black !important;
}




/* 12-07-2018 css start here */
.btn>a,
.btn>button {
    line-height: 28px;
}

.btn>a {
    position: relative;
    bottom: 1px;
}

#progressBar p {
    position: fixed;
    top: 50% !important;
    left: 50% !important;
    color: White;
    transform: translate(-50%, -50%) !important;
    -webkit-transform: translate(-50%, -50%) !important;
}

#progressBar p img {
    width: 180px;
    height: 180px;
}

div#dvincomeProof .formWrapUploadD .file-upload-input {
    border: none !important;
}

.documents #dvincomeProof .formWrapUploadD .file-upload-input {
    border: none !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-right: 50px !important;
}

.accordian-content>span {
    color: #333;
}

/* 12-07-2018 css end here */



/*Summary pg application number 4-sep-2018*/
@media only screen and (max-width:1600px) {
    .step-container-1 {
        margin-top: 5px;
    }
}


@media only screen and (max-width:1600px) {
    .step-container-1 {
        margin-top: 5px;
    }
}

.step-container-1 {
    margin-right: 15px;
    float: right;
    padding: 20px 20px;
    margin-top: 35px;
}

.step-container-1 .step-copy {
    font-family: 'Geometos';
    font-size: 20px;
    color: #004ca8;
    text-transform: uppercase;
    display: block;
    text-align: left;
}

.step-container-1 .step-title {
    font-family: 'Geometos';
    font-size: 25px;
    color: #eb2726;
    text-transform: uppercase;
    display: block;
    text-align: left;
}

.step-container-1 {
    margin-right: 15px;
    float: right;
    padding: 20px 20px;
    margin-top: 35px;
}

.step-container-1 .step-copy {
    font-family: 'Geometos';
    font-size: 20px;
    color: #004ca8;
    text-transform: uppercase;
    display: block;
    text-align: left;
}

.step-container-1 .step-title {
    font-family: 'Geometos';
    font-size: 25px;
    color: #eb2726;
    text-transform: uppercase;
    display: block;
    text-align: left;
}


@media only screen and (max-width:1440px) {
    .step-container-1 {
        margin: 10px 10px 0 0;
        padding: 0;
    }

    .step-container-1 .step-copy,
    .step-container .step-copy {
        font-size: 16px;
    }

    .step-container-1 .step-title,
    .step-container .step-title {
        font-size: 20px;
    }
}

@media only screen and (max-width:1024px) {
    .step-container-1 .step-copy {
        font-size: 12px;
    }

    .step-container-1 .step-title {
        font-size: 16px;
    }
}

@media only screen and (max-width:767px) {
    .step-container-1 {
        margin: 15px 0 0;
        padding: 0;
    }

    .step-container-1 .step-copy,
    .step-container-1 .step-title,
    .step-container .step-copy,
    .step-container .step-title {
        font-size: 12px;
    }

    .digiterm.towColWrapper .col-xs-6 .step-container-1 {
        float: left;
    }
}

@media only screen and (max-width:520px) {}

@media only screen and (max-width:340px) {

    .step-container-1 .step-copy,
    .step-container-1 .step-title,
    .step-container .step-copy,
    .step-container .step-title {
        font-size: 11px;
        line-height: 18px;
    }

    .digiterm.towColWrapper .col-xs-6 .step-container-1 {
        margin-right: 10px;
    }
}

/*Summary pg application number 4-sep-2018*/


/*rider and SA highlight textbox Hosanna*/
.highlightText {
    /*background: #faa61a !important;*/
    /*text-decoration: underline;
    text-decoration-color: #034c9f;*/
    border-bottom: 1px solid #034c9f
}

/*rider and SA highlight textbox*/