﻿@-webkit-keyframes ticker {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible
    }
    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

@keyframes ticker {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible
    }
    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
    height: 4rem;
    background-color: rgba(#000, 0.9);
    padding-left: 100%;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

.tickerBox {
    overflow: hidden;
    border: 1px solid #235893;
    margin-bottom: 15px !important
}

.ticker {
    display: inline-block;
    height: 4rem;
    line-height: 4rem;
    white-space: nowrap;
    padding-right: 100%;
    box-sizing: content-box;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-name: ticker;
    animation-name: ticker;
    -webkit-animation-duration: 50s;
    animation-duration: 50s
}

.itemTxt {
    display: inline-block;
    padding: 0 2rem;
    font-size: 1.8rem;
    color: #235893
}

.oldWebsiteTxt {
    float: left;
    font-size: 1.4rem;
    margin-right: 10px;
    color: #fff;
    margin-top: 16px;
    line-height: 11px;
    text-align: center
}

.oldWebsiteTxt:hover {
    color: #fff
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 51px;
    height: 51px;
    margin: 6px;
    border: 6px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(360deg)
    }
}

.overlayLoader {
    background: rgba(0, 0, 0, .8);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 12;
    left: 0;
    top: 0
}

.owl-carousel .animated {
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.owl-carousel .owl-animated-in {
    z-index: 0
}

.owl-carousel .owl-animated-out {
    z-index: 1
}

.owl-carousel .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut
}

@keyframes fadeOutUp {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }
}

.owl-carousel .fadeOutUp {
    animation-name: fadeOutUp
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.owl-carousel .fadeInUp {
    animation-name: fadeInUp
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

.owl-height {
    -webkit-transition: height 500ms ease-in-out;
    -moz-transition: height 500ms ease-in-out;
    -ms-transition: height 500ms ease-in-out;
    -o-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out
}

.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0px, 0px, 0px)
}

.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-transform: capitalize;
    font-size: 20px
}

.owl-dots {
    float: none;
    text-align: center
}

.owl-dot {
    padding: 10px 5px;
    display: inline-block
}

.owl-dot:only-child {
    display: none
}

.owl-dot span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    display: block;
    float: left;
    cursor: pointer;
    -webkit-transition: .3s all;
    transition: .3s all
}

.owl-dot.active span {
    background-color: #333;
    cursor: default
}

.owl-carousel.owl-loaded {
    display: block
}

.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next {
    padding: 10px
}

.owl-carousel .owl-controls .owl-nav .owl-prev {
    float: left
}

.owl-carousel .owl-controls .owl-nav .owl-next {
    float: right
}

.owl-carousel .owl-controls .owl-nav *.disabled {
    opacity: .5;
    cursor: default
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block
}

.owl-carousel.owl-hidden {
    opacity: 0
}

.owl-carousel .owl-refresh .owl-item {
    display: none
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    -webkit-transform-style: preserve-3d
}

.owl-carousel.owl-text-select-on .owl-item {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto
}

.owl-carousel .owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab
}

.owl-carousel.owl-rtl {
    direction: rtl
}

.owl-carousel.owl-rtl .owl-item {
    float: right
}

.no-js .owl-carousel {
    display: block
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity 400ms ease;
    -moz-transition: opacity 400ms ease;
    -ms-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease
}

.owl-carousel .owl-item img {
    transform-style: preserve-3d
}

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url("owl.video.play.png") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -webkit-transition: scale 100ms ease;
    -moz-transition: scale 100ms ease;
    -ms-transition: scale 100ms ease;
    -o-transition: scale 100ms ease;
    transition: scale 100ms ease
}

.owl-carousel .owl-video-play-icon:hover {
    -webkit-transition: scale(1.3, 1.3);
    -moz-transition: scale(1.3, 1.3);
    -ms-transition: scale(1.3, 1.3);
    -o-transition: scale(1.3, 1.3);
    transition: scale(1.3, 1.3)
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    -webkit-transition: opacity 400ms ease;
    -moz-transition: opacity 400ms ease;
    -ms-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}

.owl-carousel .owl-dot span {
    background: transparent;
    border: 1px solid #969696
}

.owl-carousel .owl-dot.active span {
    background: transparent;
    border: 2px solid #235893;
    position: relative
}

.owl-carousel .owl-dot.active span:after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #235893;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    top: 50%;
    left: 50%
}

.skltbs-tab-group {
    margin: 0 auto;
    padding: 0;
    text-align: center;
    color: #7d7d7d
}

.skltbs-tab-group li {
    display: inline-block;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    text-align: left;
    vertical-align: top
}

.skldrop {
    padding: 12px 30px;
    cursor: pointer;
    position: relative
}

.skldrop:after {
    content: "";
    width: 0;
    height: 0;
    padding: 5px;
    border: solid #7a7a7a;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    position: absolute;
    top: 13px;
    right: 0;
    transition: all .2s ease-in
}

.skldrop:hover:after {
    transform: rotate(225deg);
    top: 18px
}

.skldropsub {
    padding: 7px 0 7px 10px!important;
    border-bottom: 1px solid #ccc
}

.is-active>.skldropsub {
    background: #cff5ff;
    color: #015898
}

.skldripdown {
    margin: 0!important;
    display: block!important
}

.skltbs-tab-group li ul {
    display: none;
    z-index: 2;
    margin: 10px 0 0;
    background: #eee
}

.skltbs-tab-group li:hover ul {
    display: block;
    position: absolute;
    width: 90%
}

.skltbs-tab-group li:hover ul li {
    display: block;
    font-size: 14px;
    text-transform: none
}

.skltbs-tab-group li:hover ul li a {
    color: #7d7d7d;
    display: block
}

.skltbs-tab-group li:hover ul li a:hover {
    background: #cff5ff;
    color: #015898
}

.skltbs-tab-group::after {
    clear: both;
    display: table;
    content: ""
}

.skltbs-tab-item {
    display: inline-block;
    float: none;
    font-family: 'roboto';
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase
}

.skltbs-tab {
    display: block;
    text-decoration: none;
    touch-action: manipulation
}

.is-active>.skltbs-tab {
    touch-action: none
}

.is-disabled>.skltbs-tab {
    cursor: default;
    pointer-events: none;
    touch-action: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.skltbs-panel-group {
    clear: both
}

.skltbs-panel-heading {
    margin: 0;
    font: inherit
}

.skltbs.has-animation .skltbs-tab {
    transition: background-color .3s ease-in-out, color .3s ease-in-out
}

.skltbs.has-animation .skltbs-panel-group {
    transition: height .3s ease-in-out;
    transition-delay: .3s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.skltbs.has-animation .skltbs-panel {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.skltbs.has-animation .skltbs-panel.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1
}

.skltbs.has-animation .skltbs-panel.is-getting-in,
.skltbs.has-animation .skltbs-panel.is-getting-out {
    visibility: visible
}

.skltbs.has-animation.fade .skltbs-panel.is-getting-out {
    -webkit-animation: fade .3s ease-in-out forwards;
    animation: fade .3s ease-in-out forwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse
}

.skltbs.has-animation.fade .skltbs-panel.is-getting-in {
    -webkit-animation: fade .3s ease-in-out forwards;
    animation: fade .3s ease-in-out forwards;
    -webkit-animation-delay: .3s;
    animation-delay: .3s
}

.skltbs.has-animation.fade-scale .skltbs-panel.is-getting-out {
    -webkit-animation: fade-scale-out .3s ease-in-out forwards;
    animation: fade-scale-out .3s ease-in-out forwards
}

.skltbs.has-animation.fade-scale .skltbs-panel.is-getting-in {
    -webkit-animation: fade-scale-in .3s ease-in-out forwards;
    animation: fade-scale-in .3s ease-in-out forwards;
    -webkit-animation-delay: .3s;
    animation-delay: .3s
}

.skltbs.has-animation.drop .skltbs-panel.is-getting-out {
    -webkit-animation: slide-down-out .4s ease-in-out forwards;
    animation: slide-down-out .4s ease-in-out forwards
}

.skltbs.has-animation.drop .skltbs-panel.is-getting-in {
    -webkit-animation: scale-up .4s ease-in-out forwards;
    animation: scale-up .4s ease-in-out forwards
}

.skltbs.has-animation.rotate .skltbs-panel-group {
    overflow: hidden
}

.skltbs.has-animation.rotate .skltbs-panel.is-getting-out {
    -webkit-animation: rotate-out .5s ease-in-out forwards;
    animation: rotate-out .5s ease-in-out forwards
}

.skltbs.has-animation.rotate .skltbs-panel.is-getting-in {
    -webkit-animation: rotate-in .5s ease-in-out forwards;
    animation: rotate-in .5s ease-in-out forwards
}

@-webkit-keyframes fade {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@keyframes fade {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@-webkit-keyframes fade-scale-in {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.95);
        -ms-transform: scale(0.95);
        transform: scale(0.95)
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes fade-scale-in {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.95);
        -ms-transform: scale(0.95);
        transform: scale(0.95)
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes fade-scale-out {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0.95);
        -ms-transform: scale(0.95);
        transform: scale(0.95)
    }
}

@keyframes fade-scale-out {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0.95);
        -ms-transform: scale(0.95);
        transform: scale(0.95)
    }
}

@-webkit-keyframes scale-up {
    from {
        -webkit-transform: scale(0.5);
        -ms-transform: scale(0.5);
        transform: scale(0.5)
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes scale-up {
    from {
        -webkit-transform: scale(0.5);
        -ms-transform: scale(0.5);
        transform: scale(0.5)
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes slide-down-out {
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 50%, 0);
        -ms-transform: translate3d(0, 50%, 0);
        transform: translate3d(0, 50%, 0)
    }
}

@keyframes slide-down-out {
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 50%, 0);
        -ms-transform: translate3d(0, 50%, 0);
        transform: translate3d(0, 50%, 0)
    }
}

@-webkit-keyframes rotate-in {
    from {
        -webkit-transform: translate3d(50%, 0, 0);
        -ms-transform: translate3d(50%, 0, 0);
        transform: translate3d(50%, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes rotate-in {
    from {
        -webkit-transform: translate3d(50%, 0, 0);
        -ms-transform: translate3d(50%, 0, 0);
        transform: translate3d(50%, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes rotate-out {
    to {
        opacity: 0;
        -webkit-transform: translate3d(-50%, 0, 0);
        -ms-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0)
    }
}

.skltbs {
    margin-top: 1.5em;
    margin-bottom: 1.5em
}

.skltbs-tab-item {
    margin: 0 3px 3px 0
}

.skltbs-tab-top {
    background: 0;
    color: #00589e;
    padding: 12px 40px
}

.is-active>.skltbs-tab-top {
    background: #00589e;
    color: white
}

.artvideo-tab {
    background: 0;
    color: #7d7d7d;
    padding: 12px 30px
}

.is-active>.artvideo-tab {
    background: #cff5ff;
    color: #015898
}

.is-disabled>.skltbs-tab {
    background: #f2f2f2;
    color: #c7c7c7
}

.skltbs-panel-group {
    background: #fff;
    margin-top: 30px
}

.skltbs-panel {
    background: #fff;
    padding: 1em 1.2em;
    box-sizing: border-box
}

.small-archive {
    display: none
}

.skltbs-tab-group ul li ul {
    visibility: hidden!important
}

@media only screen and (max-width:1255px) {
    .skltbs-tab-top,
    .artvideo-tab {
        padding: 12px 24px
    }
    .skltbs-tab-item {
        font-size: 15px
    }
}

@media only screen and (max-width:767px) {
    .skltbs-tab-top {
        background: #00589e;
        color: #fff;
        padding: 15px 20px;
        border-bottom: 1px solid #d6d6d6;
        text-align: left;
        font-size: 16px;
        position: relative
    }
    .skltbs-tab-top:after {
        content: '';
        position: absolute;
        right: 18px;
        top: 15px;
        width: 10px;
        height: 10px;
        border: solid #fff;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
        transition: all .2s ease-in
    }
    .is-active>.skltbs-tab-top {
        background: #00589e;
        color: #fff;
        position: relative
    }
    .is-active>.artvideo-tab {
        background: #cff5ff;
        color: #015898
    }
    .is-active>.skltbs-tab-top:after {
        content: ' ';
        position: absolute;
        transform: rotate(225deg);
        top: 22px
    }
    .skltbs-panel {
        padding: 2em 1.2em
    }
    .skltbs-tab-top,
    .artvideo-tab {
        font-size: 15px;
        padding: 12px 20px
    }
    .skldrop {
        font-size: 15px!important;
        padding: 12px 20px
    }
}

@media only screen and (max-width:599px) {
    .artvideo-tab {
        background: #cff5ff;
        color: #015898;
        padding: 15px 20px;
        border-bottom: 1px solid #00589e;
        text-align: left;
        font-size: 16px;
        position: relative
    }
    .artvideo-tab:after {
        content: '';
        position: absolute;
        right: 18px;
        top: 15px;
        width: 10px;
        height: 10px;
        border: solid #015898;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
        transition: all .2s ease-in
    }
    .is-active>.artvideo-tab {
        background: #cff5ff;
        color: #015898;
        position: relative
    }
    .is-active>.artvideo-tab:after {
        content: ' ';
        position: absolute;
        transform: rotate(225deg);
        top: 22px
    }
    .skltbs-panel {
        padding: 2em 1.2em
    }
    .skltbs-panel {
        padding: 2em 0
    }
    .skltbs-panel-group {
        margin-top: 0
    }
    .skltbs-tab-top,
    .artvideo-tab {
        padding: 10px 15px;
        font-size: 15px
    }
    .skltbs-tab-top:after,
    .artvideo-tab:after {
        top: 10px
    }
    .is-active>.skltbs-tab-top:after,
    .is-active>.artvideo-tab:after {
        top: 15px
    }
    .skldropsub {
        background: #cff5ff;
        color: #015898;
        padding: 10px 15px!important;
        border-bottom: 1px solid #00589e;
        text-align: left;
        font-size: 15px;
        position: relative
    }
    .skldropsub:after {
        content: '';
        position: absolute;
        right: 18px;
        top: 12px;
        width: 10px;
        height: 10px;
        border: solid #015898;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
        transition: all .2s ease-in
    }
    .is-active>.skldropsub:after {
        top: 17px;
        transform: rotate(225deg)
    }
    .small-archive {
        display: block;
        background: #a7dae8;
        color: #015898;
        padding: 12px 15px!important;
        border-bottom: 1px solid #00589e;
        text-align: left;
        font-size: 15px;
        position: relative
    }
    .skltbs-tab-group li ul {
        display: none!important
    }
}

table.dataTable {
    width: 100%;
    margin: 0 auto;
    clear: both;
    border-collapse: separate;
    border-spacing: 0
}

table.dataTable thead th,
table.dataTable tfoot th {
    font-weight: bold
}

table.dataTable thead th,
table.dataTable thead td {
    padding: 10px 18px;
    border-bottom: 1px solid #111
}

table.dataTable thead th:active,
table.dataTable thead td:active {
    outline: 0
}

table.dataTable tfoot th,
table.dataTable tfoot td {
    padding: 10px 18px 6px;
    border-top: 1px solid #111
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
    cursor: pointer;
    *cursor: hand;
    background-repeat: no-repeat;
    background-position: center right
}

table.dataTable thead .sorting {
    background-image: url("DataTables-1.10.18/images/sort_both.png")
}

table.dataTable thead .sorting_asc {
    background-image: url("DataTables-1.10.18/images/sort_asc.png")
}

table.dataTable thead .sorting_desc {
    background-image: url("DataTables-1.10.18/images/sort_desc.png")
}

table.dataTable thead .sorting_asc_disabled {
    background-image: url("DataTables-1.10.18/images/sort_asc_disabled.png")
}

table.dataTable thead .sorting_desc_disabled {
    background-image: url("DataTables-1.10.18/images/sort_desc_disabled.png")
}

table.dataTable tbody tr {
    background-color: #fff
}

table.dataTable tbody tr.selected {
    background-color: #b0bed9
}

table.dataTable tbody th,
table.dataTable tbody td {
    padding: 8px 10px
}

table.dataTable.row-border tbody th,
table.dataTable.row-border tbody td,
table.dataTable.display tbody th,
table.dataTable.display tbody td {
    border-top: 1px solid #ddd
}

table.dataTable.row-border tbody tr:first-child th,
table.dataTable.row-border tbody tr:first-child td,
table.dataTable.display tbody tr:first-child th,
table.dataTable.display tbody tr:first-child td {
    border-top: 0
}

table.dataTable.cell-border tbody th,
table.dataTable.cell-border tbody td {
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd
}

table.dataTable.cell-border tbody tr th:first-child,
table.dataTable.cell-border tbody tr td:first-child {
    border-left: 1px solid #ddd
}

table.dataTable.cell-border tbody tr:first-child th,
table.dataTable.cell-border tbody tr:first-child td {
    border-top: 0
}

table.dataTable.stripe tbody tr.odd,
table.dataTable.display tbody tr.odd {
    background-color: #f9f9f9
}

table.dataTable.stripe tbody tr.odd.selected,
table.dataTable.display tbody tr.odd.selected {
    background-color: #acbad4
}

table.dataTable.hover tbody tr:hover,
table.dataTable.display tbody tr:hover {
    background-color: #f6f6f6
}

table.dataTable.hover tbody tr:hover.selected,
table.dataTable.display tbody tr:hover.selected {
    background-color: #aab7d1
}

table.dataTable.order-column tbody tr>.sorting_1,
table.dataTable.order-column tbody tr>.sorting_2,
table.dataTable.order-column tbody tr>.sorting_3,
table.dataTable.display tbody tr>.sorting_1,
table.dataTable.display tbody tr>.sorting_2,
table.dataTable.display tbody tr>.sorting_3 {
    background-color: #fafafa
}

table.dataTable.order-column tbody tr.selected>.sorting_1,
table.dataTable.order-column tbody tr.selected>.sorting_2,
table.dataTable.order-column tbody tr.selected>.sorting_3,
table.dataTable.display tbody tr.selected>.sorting_1,
table.dataTable.display tbody tr.selected>.sorting_2,
table.dataTable.display tbody tr.selected>.sorting_3 {
    background-color: #acbad5
}

table.dataTable.display tbody tr.odd>.sorting_1,
table.dataTable.order-column.stripe tbody tr.odd>.sorting_1 {
    background-color: #f1f1f1
}

table.dataTable.display tbody tr.odd>.sorting_2,
table.dataTable.order-column.stripe tbody tr.odd>.sorting_2 {
    background-color: #f3f3f3
}

table.dataTable.display tbody tr.odd>.sorting_3,
table.dataTable.order-column.stripe tbody tr.odd>.sorting_3 {
    background-color: whitesmoke
}

table.dataTable.display tbody tr.odd.selected>.sorting_1,
table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_1 {
    background-color: #a6b4cd
}

table.dataTable.display tbody tr.odd.selected>.sorting_2,
table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_2 {
    background-color: #a8b5cf
}

table.dataTable.display tbody tr.odd.selected>.sorting_3,
table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_3 {
    background-color: #a9b7d1
}

table.dataTable.display tbody tr.even>.sorting_1,
table.dataTable.order-column.stripe tbody tr.even>.sorting_1 {
    background-color: #fafafa
}

table.dataTable.display tbody tr.even>.sorting_2,
table.dataTable.order-column.stripe tbody tr.even>.sorting_2 {
    background-color: #fcfcfc
}

table.dataTable.display tbody tr.even>.sorting_3,
table.dataTable.order-column.stripe tbody tr.even>.sorting_3 {
    background-color: #fefefe
}

table.dataTable.display tbody tr.even.selected>.sorting_1,
table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_1 {
    background-color: #acbad5
}

table.dataTable.display tbody tr.even.selected>.sorting_2,
table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_2 {
    background-color: #aebcd6
}

table.dataTable.display tbody tr.even.selected>.sorting_3,
table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_3 {
    background-color: #afbdd8
}

table.dataTable.display tbody tr:hover>.sorting_1,
table.dataTable.order-column.hover tbody tr:hover>.sorting_1 {
    background-color: #eaeaea
}

table.dataTable.display tbody tr:hover>.sorting_2,
table.dataTable.order-column.hover tbody tr:hover>.sorting_2 {
    background-color: #ececec
}

table.dataTable.display tbody tr:hover>.sorting_3,
table.dataTable.order-column.hover tbody tr:hover>.sorting_3 {
    background-color: #efefef
}

table.dataTable.display tbody tr:hover.selected>.sorting_1,
table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_1 {
    background-color: #a2aec7
}

table.dataTable.display tbody tr:hover.selected>.sorting_2,
table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_2 {
    background-color: #a3b0c9
}

table.dataTable.display tbody tr:hover.selected>.sorting_3,
table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_3 {
    background-color: #a5b2cb
}

table.dataTable.no-footer {
    border-bottom: 1px solid #111
}

table.dataTable.nowrap th,
table.dataTable.nowrap td {
    white-space: nowrap
}

table.dataTable.compact thead th,
table.dataTable.compact thead td {
    padding: 4px 17px 4px 4px
}

table.dataTable.compact tfoot th,
table.dataTable.compact tfoot td {
    padding: 4px
}

table.dataTable.compact tbody th,
table.dataTable.compact tbody td {
    padding: 4px
}

table.dataTable th.dt-left,
table.dataTable td.dt-left {
    text-align: left
}

table.dataTable th.dt-center,
table.dataTable td.dt-center,
table.dataTable td.dataTables_empty {
    text-align: center
}

table.dataTable th.dt-right,
table.dataTable td.dt-right {
    text-align: right
}

table.dataTable th.dt-justify,
table.dataTable td.dt-justify {
    text-align: justify
}

table.dataTable th.dt-nowrap,
table.dataTable td.dt-nowrap {
    white-space: nowrap
}

table.dataTable thead th.dt-head-left,
table.dataTable thead td.dt-head-left,
table.dataTable tfoot th.dt-head-left,
table.dataTable tfoot td.dt-head-left {
    text-align: left
}

table.dataTable thead th.dt-head-center,
table.dataTable thead td.dt-head-center,
table.dataTable tfoot th.dt-head-center,
table.dataTable tfoot td.dt-head-center {
    text-align: center
}

table.dataTable thead th.dt-head-right,
table.dataTable thead td.dt-head-right,
table.dataTable tfoot th.dt-head-right,
table.dataTable tfoot td.dt-head-right {
    text-align: right
}

table.dataTable thead th.dt-head-justify,
table.dataTable thead td.dt-head-justify,
table.dataTable tfoot th.dt-head-justify,
table.dataTable tfoot td.dt-head-justify {
    text-align: justify
}

table.dataTable thead th.dt-head-nowrap,
table.dataTable thead td.dt-head-nowrap,
table.dataTable tfoot th.dt-head-nowrap,
table.dataTable tfoot td.dt-head-nowrap {
    white-space: nowrap
}

table.dataTable tbody th.dt-body-left,
table.dataTable tbody td.dt-body-left {
    text-align: left
}

table.dataTable tbody th.dt-body-center,
table.dataTable tbody td.dt-body-center {
    text-align: center
}

table.dataTable tbody th.dt-body-right,
table.dataTable tbody td.dt-body-right {
    text-align: right
}

table.dataTable tbody th.dt-body-justify,
table.dataTable tbody td.dt-body-justify {
    text-align: justify
}

table.dataTable tbody th.dt-body-nowrap,
table.dataTable tbody td.dt-body-nowrap {
    white-space: nowrap
}

table.dataTable,
table.dataTable th,
table.dataTable td {
    box-sizing: content-box
}

.dataTables_wrapper {
    position: relative;
    clear: both;
    *zoom: 1;
    zoom: 1
}

.dataTables_wrapper .dataTables_length {
    float: left
}

.dataTables_wrapper .dataTables_filter {
    float: right;
    text-align: right
}

.dataTables_wrapper .dataTables_filter input {
    margin-left: .5em
}

.dataTables_wrapper .dataTables_info {
    clear: both;
    float: left;
    padding-top: .755em
}

.dataTables_wrapper .dataTables_paginate {
    float: right;
    text-align: right;
    padding-top: .25em
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    box-sizing: border-box;
    display: inline-block;
    min-width: 1.5em;
    padding: .5em 1em;
    margin-left: 2px;
    text-align: center;
    text-decoration: none!important;
    cursor: pointer;
    *cursor: hand;
    color: #333!important;
    border: 1px solid transparent;
    border-radius: 2px
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    color: #333!important;
    border: 1px solid #979797;
    background-color: #fff;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #dcdcdc));
    background: -webkit-linear-gradient(top, #fff 0, #dcdcdc 100%);
    background: -moz-linear-gradient(top, #fff 0, #dcdcdc 100%);
    background: -ms-linear-gradient(top, #fff 0, #dcdcdc 100%);
    background: -o-linear-gradient(top, #fff 0, #dcdcdc 100%);
    background: linear-gradient(to bottom, #fff 0, #dcdcdc 100%)
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
    cursor: default;
    color: #666!important;
    border: 1px solid transparent;
    background: transparent;
    box-shadow: none
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    color: white!important;
    border: 1px solid #111;
    background-color: #585858;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111));
    background: -webkit-linear-gradient(top, #585858 0, #111 100%);
    background: -moz-linear-gradient(top, #585858 0, #111 100%);
    background: -ms-linear-gradient(top, #585858 0, #111 100%);
    background: -o-linear-gradient(top, #585858 0, #111 100%);
    background: linear-gradient(to bottom, #585858 0, #111 100%)
}

.dataTables_wrapper .dataTables_paginate .paginate_button:active {
    outline: 0;
    background-color: #2b2b2b;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c));
    background: -webkit-linear-gradient(top, #2b2b2b 0, #0c0c0c 100%);
    background: -moz-linear-gradient(top, #2b2b2b 0, #0c0c0c 100%);
    background: -ms-linear-gradient(top, #2b2b2b 0, #0c0c0c 100%);
    background: -o-linear-gradient(top, #2b2b2b 0, #0c0c0c 100%);
    background: linear-gradient(to bottom, #2b2b2b 0, #0c0c0c 100%);
    box-shadow: inset 0 0 3px #111
}

.dataTables_wrapper .dataTables_paginate .ellipsis {
    padding: 0 1em
}

.dataTables_wrapper .dataTables_processing {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 40px;
    margin-left: -50%;
    margin-top: -25px;
    padding-top: 20px;
    text-align: center;
    font-size: 1.2em;
    background-color: #fff;
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, 0.9)), color-stop(75%, rgba(255, 255, 255, 0.9)), color-stop(100%, rgba(255, 255, 255, 0)));
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
    background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%)
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
    color: #333
}

.dataTables_wrapper .dataTables_scroll {
    clear: both
}

.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
    *margin-top: -1px;
    -webkit-overflow-scrolling: touch
}

.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td {
    vertical-align: middle
}

.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th>div.dataTables_sizing,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td>div.dataTables_sizing,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th>div.dataTables_sizing,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td>div.dataTables_sizing {
    height: 0;
    overflow: hidden;
    margin: 0!important;
    padding: 0!important
}

.dataTables_wrapper.no-footer .dataTables_scrollBody {
    border-bottom: 1px solid #111
}

.dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable,
.dataTables_wrapper.no-footer div.dataTables_scrollBody>table {
    border-bottom: 0
}

.dataTables_wrapper:after {
    visibility: hidden;
    display: block;
    content: "";
    clear: both;
    height: 0
}

@media screen and (max-width:767px) {
    .dataTables_wrapper .dataTables_info,
    .dataTables_wrapper .dataTables_paginate {
        float: none;
        text-align: center
    }
    .dataTables_wrapper .dataTables_paginate {
        margin-top: .5em
    }
}

@media screen and (max-width:640px) {
    .dataTables_wrapper .dataTables_length,
    .dataTables_wrapper .dataTables_filter {
        float: none;
        text-align: center
    }
    .dataTables_wrapper .dataTables_filter {
        margin-top: .5em
    }
}

.ui-helper-hidden {
    display: none
}

.ui-helper-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.ui-helper-reset {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    line-height: 1.3;
    text-decoration: none;
    font-size: 100%;
    list-style: none
}

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
    content: "";
    display: table;
    border-collapse: collapse
}

.ui-helper-clearfix:after {
    clear: both
}

.ui-helper-zfix {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    filter: Alpha(Opacity=0)
}

.ui-front {
    z-index: 100
}

.ui-state-disabled {
    cursor: default!important;
    pointer-events: none
}

.ui-icon {
    display: inline-block;
    vertical-align: middle;
    margin-top: -.25em;
    position: relative;
    text-indent: -99999px;
    overflow: hidden;
    background-repeat: no-repeat
}

.ui-widget-icon-block {
    left: 50%;
    margin-left: -8px;
    display: block
}

.ui-widget-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.ui-accordion .ui-accordion-header {
    display: block;
    cursor: pointer;
    position: relative;
    margin: 2px 0 0;
    padding: .5em .5em .5em .7em;
    font-size: 100%
}

.ui-accordion .ui-accordion-content {
    padding: 1em 2.2em;
    border-top: 0;
    overflow: auto
}

.ui-autocomplete {
    position: absolute;
    top: 0;
    left: 0;
    cursor: default
}

.ui-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
    outline: 0
}

.ui-menu .ui-menu {
    position: absolute
}

.ui-menu .ui-menu-item {
    margin: 0;
    cursor: pointer;
    list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")
}

.ui-menu .ui-menu-item-wrapper {
    position: relative;
    padding: 3px 1em 3px .4em
}

.ui-menu .ui-menu-divider {
    margin: 5px 0;
    height: 0;
    font-size: 0;
    line-height: 0;
    border-width: 1px 0 0 0
}

.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
    margin: -1px
}

.ui-menu-icons {
    position: relative
}

.ui-menu-icons .ui-menu-item-wrapper {
    padding-left: 2em
}

.ui-menu .ui-icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: .2em;
    margin: auto 0
}

.ui-menu .ui-menu-icon {
    left: auto;
    right: 0
}

.ui-button {
    padding: .4em 1em;
    display: inline-block;
    position: relative;
    line-height: normal;
    margin-right: .1em;
    cursor: pointer;
    vertical-align: middle;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: visible
}

.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
    text-decoration: none
}

.ui-button-icon-only {
    width: 2em;
    box-sizing: border-box;
    text-indent: -9999px;
    white-space: nowrap
}

input.ui-button.ui-button-icon-only {
    text-indent: 0
}

.ui-button-icon-only .ui-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -8px;
    margin-left: -8px
}

.ui-button.ui-icon-notext .ui-icon {
    padding: 0;
    width: 2.1em;
    height: 2.1em;
    text-indent: -9999px;
    white-space: nowrap
}

input.ui-button.ui-icon-notext .ui-icon {
    width: auto;
    height: auto;
    text-indent: 0;
    white-space: normal;
    padding: .4em 1em
}

input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
    border: 0;
    padding: 0
}

.ui-controlgroup {
    vertical-align: middle;
    display: inline-block
}

.ui-controlgroup>.ui-controlgroup-item {
    float: left;
    margin-left: 0;
    margin-right: 0
}

.ui-controlgroup>.ui-controlgroup-item:focus,
.ui-controlgroup>.ui-controlgroup-item.ui-visual-focus {
    z-index: 9999
}

.ui-controlgroup-vertical>.ui-controlgroup-item {
    display: block;
    float: none;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    text-align: left
}

.ui-controlgroup-vertical .ui-controlgroup-item {
    box-sizing: border-box
}

.ui-controlgroup .ui-controlgroup-label {
    padding: .4em 1em
}

.ui-controlgroup .ui-controlgroup-label span {
    font-size: 80%
}

.ui-controlgroup-horizontal .ui-controlgroup-label+.ui-controlgroup-item {
    border-left: none
}

.ui-controlgroup-vertical .ui-controlgroup-label+.ui-controlgroup-item {
    border-top: 0
}

.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
    border-right: 0
}

.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
    border-bottom: 0
}

.ui-controlgroup-vertical .ui-spinner-input {
    width: 75%;
    width: calc(100% - 2.4em)
}

.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
    border-top-style: solid
}

.ui-checkboxradio-label .ui-icon-background {
    box-shadow: inset 1px 1px 1px #ccc;
    border-radius: .12em;
    border: 0
}

.ui-checkboxradio-radio-label .ui-icon-background {
    width: 16px;
    height: 16px;
    border-radius: 1em;
    overflow: visible;
    border: 0
}

.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
    background-image: none;
    width: 8px;
    height: 8px;
    border-width: 4px;
    border-style: solid
}

.ui-checkboxradio-disabled {
    pointer-events: none
}

.ui-datepicker {
    width: 17em;
    padding: .2em .2em 0;
    display: none
}

.ui-datepicker .ui-datepicker-header {
    position: relative;
    padding: .2em 0
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    position: absolute;
    top: 2px;
    width: 1.8em;
    height: 1.8em
}

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
    top: 1px
}

.ui-datepicker .ui-datepicker-prev {
    left: 2px
}

.ui-datepicker .ui-datepicker-next {
    right: 2px
}

.ui-datepicker .ui-datepicker-prev-hover {
    left: 1px
}

.ui-datepicker .ui-datepicker-next-hover {
    right: 1px
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
    display: block;
    position: absolute;
    left: 50%;
    margin-left: -8px;
    top: 50%;
    margin-top: -8px
}

.ui-datepicker .ui-datepicker-title {
    margin: 0 2.3em;
    line-height: 1.8em;
    text-align: center
}

.ui-datepicker .ui-datepicker-title select {
    font-size: 1em;
    margin: 1px 0
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
    width: 45%
}

.ui-datepicker table {
    width: 100%;
    font-size: .9em;
    border-collapse: collapse;
    margin: 0 0 .4em
}

.ui-datepicker th {
    padding: .7em .3em;
    text-align: center;
    font-weight: bold;
    border: 0
}

.ui-datepicker td {
    border: 0;
    padding: 1px
}

.ui-datepicker td span,
.ui-datepicker td a {
    display: block;
    padding: .2em;
    text-align: right;
    text-decoration: none
}

.ui-datepicker .ui-datepicker-buttonpane {
    background-image: none;
    margin: .7em 0 0;
    padding: 0 .2em;
    border-left: 0;
    border-right: 0;
    border-bottom: 0
}

.ui-datepicker .ui-datepicker-buttonpane button {
    float: right;
    margin: .5em .2em .4em;
    cursor: pointer;
    padding: .2em .6em .3em;
    width: auto;
    overflow: visible
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
    float: left
}

.ui-datepicker.ui-datepicker-multi {
    width: auto
}

.ui-datepicker-multi .ui-datepicker-group {
    float: left
}

.ui-datepicker-multi .ui-datepicker-group table {
    width: 95%;
    margin: 0 auto .4em
}

.ui-datepicker-multi-2 .ui-datepicker-group {
    width: 50%
}

.ui-datepicker-multi-3 .ui-datepicker-group {
    width: 33.3%
}

.ui-datepicker-multi-4 .ui-datepicker-group {
    width: 25%
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
    border-left-width: 0
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
    clear: left
}

.ui-datepicker-row-break {
    clear: both;
    width: 100%;
    font-size: 0
}

.ui-datepicker-rtl {
    direction: rtl
}

.ui-datepicker-rtl .ui-datepicker-prev {
    right: 2px;
    left: auto
}

.ui-datepicker-rtl .ui-datepicker-next {
    left: 2px;
    right: auto
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
    right: 1px;
    left: auto
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
    left: 1px;
    right: auto
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
    clear: right
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
    float: left
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
    float: right
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
    border-right-width: 0;
    border-left-width: 1px
}

.ui-datepicker .ui-icon {
    display: block;
    text-indent: -99999px;
    overflow: hidden;
    background-repeat: no-repeat;
    left: .5em;
    top: .3em
}

.ui-dialog {
    position: absolute;
    top: 0;
    left: 0;
    padding: .2em;
    outline: 0
}

.ui-dialog .ui-dialog-titlebar {
    padding: .4em 1em;
    position: relative
}

.ui-dialog .ui-dialog-title {
    float: left;
    margin: .1em 0;
    white-space: nowrap;
    width: 90%;
    overflow: hidden;
    text-overflow: ellipsis
}

.ui-dialog .ui-dialog-titlebar-close {
    position: absolute;
    right: .3em;
    top: 50%;
    width: 20px;
    margin: -10px 0 0 0;
    padding: 1px;
    height: 20px
}

.ui-dialog .ui-dialog-content {
    position: relative;
    border: 0;
    padding: .5em 1em;
    background: 0;
    overflow: auto
}

.ui-dialog .ui-dialog-buttonpane {
    text-align: left;
    border-width: 1px 0 0;
    background-image: none;
    margin-top: .5em;
    padding: .3em 1em .5em .4em
}

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
    float: right
}

.ui-dialog .ui-dialog-buttonpane button {
    margin: .5em .4em .5em 0;
    cursor: pointer
}

.ui-dialog .ui-resizable-n {
    height: 2px;
    top: 0
}

.ui-dialog .ui-resizable-e {
    width: 2px;
    right: 0
}

.ui-dialog .ui-resizable-s {
    height: 2px;
    bottom: 0
}

.ui-dialog .ui-resizable-w {
    width: 2px;
    left: 0
}

.ui-dialog .ui-resizable-se,
.ui-dialog .ui-resizable-sw,
.ui-dialog .ui-resizable-ne,
.ui-dialog .ui-resizable-nw {
    width: 7px;
    height: 7px
}

.ui-dialog .ui-resizable-se {
    right: 0;
    bottom: 0
}

.ui-dialog .ui-resizable-sw {
    left: 0;
    bottom: 0
}

.ui-dialog .ui-resizable-ne {
    right: 0;
    top: 0
}

.ui-dialog .ui-resizable-nw {
    left: 0;
    top: 0
}

.ui-draggable .ui-dialog-titlebar {
    cursor: move
}

.ui-draggable-handle {
    -ms-touch-action: none;
    touch-action: none
}

.ui-resizable {
    position: relative
}

.ui-resizable-handle {
    position: absolute;
    font-size: .1px;
    display: block;
    -ms-touch-action: none;
    touch-action: none
}

.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
    display: none
}

.ui-resizable-n {
    cursor: n-resize;
    height: 7px;
    width: 100%;
    top: -5px;
    left: 0
}

.ui-resizable-s {
    cursor: s-resize;
    height: 7px;
    width: 100%;
    bottom: -5px;
    left: 0
}

.ui-resizable-e {
    cursor: e-resize;
    width: 7px;
    right: -5px;
    top: 0;
    height: 100%
}

.ui-resizable-w {
    cursor: w-resize;
    width: 7px;
    left: -5px;
    top: 0;
    height: 100%
}

.ui-resizable-se {
    cursor: se-resize;
    width: 12px;
    height: 12px;
    right: 1px;
    bottom: 1px
}

.ui-resizable-sw {
    cursor: sw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    bottom: -5px
}

.ui-resizable-nw {
    cursor: nw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    top: -5px
}

.ui-resizable-ne {
    cursor: ne-resize;
    width: 9px;
    height: 9px;
    right: -5px;
    top: -5px
}

.ui-progressbar {
    height: 2em;
    text-align: left;
    overflow: hidden
}

.ui-progressbar .ui-progressbar-value {
    margin: -1px;
    height: 100%
}

.ui-progressbar .ui-progressbar-overlay {
    background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
    height: 100%;
    filter: alpha(opacity=25);
    opacity: .25
}

.ui-progressbar-indeterminate .ui-progressbar-value {
    background-image: none
}

.ui-selectable {
    -ms-touch-action: none;
    touch-action: none
}

.ui-selectable-helper {
    position: absolute;
    z-index: 100;
    border: 1px dotted black
}

.ui-selectmenu-menu {
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    display: none
}

.ui-selectmenu-menu .ui-menu {
    overflow: auto;
    overflow-x: hidden;
    padding-bottom: 1px
}

.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
    font-size: 1em;
    font-weight: bold;
    line-height: 1.5;
    padding: 2px .4em;
    margin: .5em 0 0;
    height: auto;
    border: 0
}

.ui-selectmenu-open {
    display: block
}

.ui-selectmenu-text {
    display: block;
    margin-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis
}

.ui-selectmenu-button.ui-button {
    text-align: left;
    white-space: nowrap;
    width: 14em
}

.ui-selectmenu-icon.ui-icon {
    float: right;
    margin-top: 0
}

.ui-slider {
    position: relative;
    text-align: left
}

.ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 1.2em;
    height: 1.2em;
    cursor: default;
    -ms-touch-action: none;
    touch-action: none
}

.ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    font-size: .7em;
    display: block;
    border: 0;
    background-position: 0 0
}

.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
    filter: inherit
}

.ui-slider-horizontal {
    height: .8em
}

.ui-slider-horizontal .ui-slider-handle {
    top: -.3em;
    margin-left: -.6em
}

.ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%
}

.ui-slider-horizontal .ui-slider-range-min {
    left: 0
}

.ui-slider-horizontal .ui-slider-range-max {
    right: 0
}

.ui-slider-vertical {
    width: .8em;
    height: 100px
}

.ui-slider-vertical .ui-slider-handle {
    left: -.3em;
    margin-left: 0;
    margin-bottom: -.6em
}

.ui-slider-vertical .ui-slider-range {
    left: 0;
    width: 100%
}

.ui-slider-vertical .ui-slider-range-min {
    bottom: 0
}

.ui-slider-vertical .ui-slider-range-max {
    top: 0
}

.ui-sortable-handle {
    -ms-touch-action: none;
    touch-action: none
}

.ui-spinner {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding: 0;
    vertical-align: middle
}

.ui-spinner-input {
    border: 0;
    background: 0;
    color: inherit;
    padding: .222em 0;
    margin: .2em 0;
    vertical-align: middle;
    margin-left: .4em;
    margin-right: 2em
}

.ui-spinner-button {
    width: 1.6em;
    height: 50%;
    font-size: .5em;
    padding: 0;
    margin: 0;
    text-align: center;
    position: absolute;
    cursor: default;
    display: block;
    overflow: hidden;
    right: 0
}

.ui-spinner a.ui-spinner-button {
    border-top-style: none;
    border-bottom-style: none;
    border-right-style: none
}

.ui-spinner-up {
    top: 0
}

.ui-spinner-down {
    bottom: 0
}

.ui-tabs {
    position: relative;
    padding: .2em
}

.ui-tabs .ui-tabs-nav {
    margin: 0;
    padding: .2em .2em 0
}

.ui-tabs .ui-tabs-nav li {
    list-style: none;
    float: left;
    position: relative;
    top: 0;
    margin: 1px .2em 0 0;
    border-bottom-width: 0;
    padding: 0;
    white-space: nowrap
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
    float: left;
    padding: .5em 1em;
    text-decoration: none
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
    margin-bottom: -1px;
    padding-bottom: 1px
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
    cursor: text
}

.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
    cursor: pointer
}

.ui-tabs .ui-tabs-panel {
    display: block;
    border-width: 0;
    padding: 1em 1.4em;
    background: 0
}

.ui-tooltip {
    padding: 8px;
    position: absolute;
    z-index: 9999;
    max-width: 300px
}

body .ui-tooltip {
    border-width: 2px
}

.ui-widget {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em
}

.ui-widget .ui-widget {
    font-size: 1em
}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em
}

.ui-widget.ui-widget-content {
    border: 1px solid #c5c5c5
}

.ui-widget-content {
    border: 1px solid #ddd;
    background: #fff;
    color: #333
}

.ui-widget-content a {
    color: #333
}

.ui-widget-header {
    border: 1px solid #ddd;
    background: #e9e9e9;
    color: #333;
    font-weight: bold
}

.ui-widget-header a {
    color: #333
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border: 1px solid #c5c5c5;
    background: #f6f6f6;
    font-weight: normal;
    color: #454545
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
    color: #454545;
    text-decoration: none
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
    border: 1px solid #ccc;
    background: #ededed;
    font-weight: normal;
    color: #2b2b2b
}

.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
    color: #2b2b2b;
    text-decoration: none
}

.ui-visual-focus {
    box-shadow: 0 0 3px 1px #5e9ed6
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    border: 1px solid #003eff;
    background: #007fff;
    font-weight: normal;
    color: #fff
}

.ui-icon-background,
.ui-state-active .ui-icon-background {
    border: #003eff;
    background-color: #fff
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
    color: #fff;
    text-decoration: none
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border: 1px solid #dad55e;
    background: #fffa90;
    color: #777620
}

.ui-state-checked {
    border: 1px solid #dad55e;
    background: #fffa90
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
    color: #777620
}

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
    border: 1px solid #f1a899;
    background: #fddfdf;
    color: #5f3f3f
}

.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
    color: #5f3f3f
}

.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
    color: #5f3f3f
}

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
    font-weight: bold
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
    opacity: .7;
    filter: Alpha(Opacity=70);
    font-weight: normal
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
    opacity: .35;
    filter: Alpha(Opacity=35);
    background-image: none
}

.ui-state-disabled .ui-icon {
    filter: Alpha(Opacity=35)
}

.ui-icon {
    width: 16px;
    height: 16px
}

.ui-icon,
.ui-widget-content .ui-icon {
    background-image: url("images/ui-icons_444444_256x240.png")
}

.ui-widget-header .ui-icon {
    background-image: url("images/ui-icons_444444_256x240.png")
}

.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
    background-image: url("images/ui-icons_555555_256x240.png")
}

.ui-state-active .ui-icon,
.ui-button:active .ui-icon {
    background-image: url("images/ui-icons_ffffff_256x240.png")
}

.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
    background-image: url("images/ui-icons_777620_256x240.png")
}

.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
    background-image: url("images/ui-icons_cc0000_256x240.png")
}

.ui-button .ui-icon {
    background-image: url("images/ui-icons_777777_256x240.png")
}

.ui-icon-blank {
    background-position: 16px 16px
}

.ui-icon-caret-1-n {
    background-position: 0 0
}

.ui-icon-caret-1-ne {
    background-position: -16px 0
}

.ui-icon-caret-1-e {
    background-position: -32px 0
}

.ui-icon-caret-1-se {
    background-position: -48px 0
}

.ui-icon-caret-1-s {
    background-position: -65px 0
}

.ui-icon-caret-1-sw {
    background-position: -80px 0
}

.ui-icon-caret-1-w {
    background-position: -96px 0
}

.ui-icon-caret-1-nw {
    background-position: -112px 0
}

.ui-icon-caret-2-n-s {
    background-position: -128px 0
}

.ui-icon-caret-2-e-w {
    background-position: -144px 0
}

.ui-icon-triangle-1-n {
    background-position: 0 -16px
}

.ui-icon-triangle-1-ne {
    background-position: -16px -16px
}

.ui-icon-triangle-1-e {
    background-position: -32px -16px
}

.ui-icon-triangle-1-se {
    background-position: -48px -16px
}

.ui-icon-triangle-1-s {
    background-position: -65px -16px
}

.ui-icon-triangle-1-sw {
    background-position: -80px -16px
}

.ui-icon-triangle-1-w {
    background-position: -96px -16px
}

.ui-icon-triangle-1-nw {
    background-position: -112px -16px
}

.ui-icon-triangle-2-n-s {
    background-position: -128px -16px
}

.ui-icon-triangle-2-e-w {
    background-position: -144px -16px
}

.ui-icon-arrow-1-n {
    background-position: 0 -32px
}

.ui-icon-arrow-1-ne {
    background-position: -16px -32px
}

.ui-icon-arrow-1-e {
    background-position: -32px -32px
}

.ui-icon-arrow-1-se {
    background-position: -48px -32px
}

.ui-icon-arrow-1-s {
    background-position: -65px -32px
}

.ui-icon-arrow-1-sw {
    background-position: -80px -32px
}

.ui-icon-arrow-1-w {
    background-position: -96px -32px
}

.ui-icon-arrow-1-nw {
    background-position: -112px -32px
}

.ui-icon-arrow-2-n-s {
    background-position: -128px -32px
}

.ui-icon-arrow-2-ne-sw {
    background-position: -144px -32px
}

.ui-icon-arrow-2-e-w {
    background-position: -160px -32px
}

.ui-icon-arrow-2-se-nw {
    background-position: -176px -32px
}

.ui-icon-arrowstop-1-n {
    background-position: -192px -32px
}

.ui-icon-arrowstop-1-e {
    background-position: -208px -32px
}

.ui-icon-arrowstop-1-s {
    background-position: -224px -32px
}

.ui-icon-arrowstop-1-w {
    background-position: -240px -32px
}

.ui-icon-arrowthick-1-n {
    background-position: 1px -48px
}

.ui-icon-arrowthick-1-ne {
    background-position: -16px -48px
}

.ui-icon-arrowthick-1-e {
    background-position: -32px -48px
}

.ui-icon-arrowthick-1-se {
    background-position: -48px -48px
}

.ui-icon-arrowthick-1-s {
    background-position: -64px -48px
}

.ui-icon-arrowthick-1-sw {
    background-position: -80px -48px
}

.ui-icon-arrowthick-1-w {
    background-position: -96px -48px
}

.ui-icon-arrowthick-1-nw {
    background-position: -112px -48px
}

.ui-icon-arrowthick-2-n-s {
    background-position: -128px -48px
}

.ui-icon-arrowthick-2-ne-sw {
    background-position: -144px -48px
}

.ui-icon-arrowthick-2-e-w {
    background-position: -160px -48px
}

.ui-icon-arrowthick-2-se-nw {
    background-position: -176px -48px
}

.ui-icon-arrowthickstop-1-n {
    background-position: -192px -48px
}

.ui-icon-arrowthickstop-1-e {
    background-position: -208px -48px
}

.ui-icon-arrowthickstop-1-s {
    background-position: -224px -48px
}

.ui-icon-arrowthickstop-1-w {
    background-position: -240px -48px
}

.ui-icon-arrowreturnthick-1-w {
    background-position: 0 -64px
}

.ui-icon-arrowreturnthick-1-n {
    background-position: -16px -64px
}

.ui-icon-arrowreturnthick-1-e {
    background-position: -32px -64px
}

.ui-icon-arrowreturnthick-1-s {
    background-position: -48px -64px
}

.ui-icon-arrowreturn-1-w {
    background-position: -64px -64px
}

.ui-icon-arrowreturn-1-n {
    background-position: -80px -64px
}

.ui-icon-arrowreturn-1-e {
    background-position: -96px -64px
}

.ui-icon-arrowreturn-1-s {
    background-position: -112px -64px
}

.ui-icon-arrowrefresh-1-w {
    background-position: -128px -64px
}

.ui-icon-arrowrefresh-1-n {
    background-position: -144px -64px
}

.ui-icon-arrowrefresh-1-e {
    background-position: -160px -64px
}

.ui-icon-arrowrefresh-1-s {
    background-position: -176px -64px
}

.ui-icon-arrow-4 {
    background-position: 0 -80px
}

.ui-icon-arrow-4-diag {
    background-position: -16px -80px
}

.ui-icon-extlink {
    background-position: -32px -80px
}

.ui-icon-newwin {
    background-position: -48px -80px
}

.ui-icon-refresh {
    background-position: -64px -80px
}

.ui-icon-shuffle {
    background-position: -80px -80px
}

.ui-icon-transfer-e-w {
    background-position: -96px -80px
}

.ui-icon-transferthick-e-w {
    background-position: -112px -80px
}

.ui-icon-folder-collapsed {
    background-position: 0 -96px
}

.ui-icon-folder-open {
    background-position: -16px -96px
}

.ui-icon-document {
    background-position: -32px -96px
}

.ui-icon-document-b {
    background-position: -48px -96px
}

.ui-icon-note {
    background-position: -64px -96px
}

.ui-icon-mail-closed {
    background-position: -80px -96px
}

.ui-icon-mail-open {
    background-position: -96px -96px
}

.ui-icon-suitcase {
    background-position: -112px -96px
}

.ui-icon-comment {
    background-position: -128px -96px
}

.ui-icon-person {
    background-position: -144px -96px
}

.ui-icon-print {
    background-position: -160px -96px
}

.ui-icon-trash {
    background-position: -176px -96px
}

.ui-icon-locked {
    background-position: -192px -96px
}

.ui-icon-unlocked {
    background-position: -208px -96px
}

.ui-icon-bookmark {
    background-position: -224px -96px
}

.ui-icon-tag {
    background-position: -240px -96px
}

.ui-icon-home {
    background-position: 0 -112px
}

.ui-icon-flag {
    background-position: -16px -112px
}

.ui-icon-calendar {
    background-position: -32px -112px
}

.ui-icon-cart {
    background-position: -48px -112px
}

.ui-icon-pencil {
    background-position: -64px -112px
}

.ui-icon-clock {
    background-position: -80px -112px
}

.ui-icon-disk {
    background-position: -96px -112px
}

.ui-icon-calculator {
    background-position: -112px -112px
}

.ui-icon-zoomin {
    background-position: -128px -112px
}

.ui-icon-zoomout {
    background-position: -144px -112px
}

.ui-icon-search {
    background-position: -160px -112px
}

.ui-icon-wrench {
    background-position: -176px -112px
}

.ui-icon-gear {
    background-position: -192px -112px
}

.ui-icon-heart {
    background-position: -208px -112px
}

.ui-icon-star {
    background-position: -224px -112px
}

.ui-icon-link {
    background-position: -240px -112px
}

.ui-icon-cancel {
    background-position: 0 -128px
}

.ui-icon-plus {
    background-position: -16px -128px
}

.ui-icon-plusthick {
    background-position: -32px -128px
}

.ui-icon-minus {
    background-position: -48px -128px
}

.ui-icon-minusthick {
    background-position: -64px -128px
}

.ui-icon-close {
    background-position: -80px -128px
}

.ui-icon-closethick {
    background-position: -96px -128px
}

.ui-icon-key {
    background-position: -112px -128px
}

.ui-icon-lightbulb {
    background-position: -128px -128px
}

.ui-icon-scissors {
    background-position: -144px -128px
}

.ui-icon-clipboard {
    background-position: -160px -128px
}

.ui-icon-copy {
    background-position: -176px -128px
}

.ui-icon-contact {
    background-position: -192px -128px
}

.ui-icon-image {
    background-position: -208px -128px
}

.ui-icon-video {
    background-position: -224px -128px
}

.ui-icon-script {
    background-position: -240px -128px
}

.ui-icon-alert {
    background-position: 0 -144px
}

.ui-icon-info {
    background-position: -16px -144px
}

.ui-icon-notice {
    background-position: -32px -144px
}

.ui-icon-help {
    background-position: -48px -144px
}

.ui-icon-check {
    background-position: -64px -144px
}

.ui-icon-bullet {
    background-position: -80px -144px
}

.ui-icon-radio-on {
    background-position: -96px -144px
}

.ui-icon-radio-off {
    background-position: -112px -144px
}

.ui-icon-pin-w {
    background-position: -128px -144px
}

.ui-icon-pin-s {
    background-position: -144px -144px
}

.ui-icon-play {
    background-position: 0 -160px
}

.ui-icon-pause {
    background-position: -16px -160px
}

.ui-icon-seek-next {
    background-position: -32px -160px
}

.ui-icon-seek-prev {
    background-position: -48px -160px
}

.ui-icon-seek-end {
    background-position: -64px -160px
}

.ui-icon-seek-start {
    background-position: -80px -160px
}

.ui-icon-seek-first {
    background-position: -80px -160px
}

.ui-icon-stop {
    background-position: -96px -160px
}

.ui-icon-eject {
    background-position: -112px -160px
}

.ui-icon-volume-off {
    background-position: -128px -160px
}

.ui-icon-volume-on {
    background-position: -144px -160px
}

.ui-icon-power {
    background-position: 0 -176px
}

.ui-icon-signal-diag {
    background-position: -16px -176px
}

.ui-icon-signal {
    background-position: -32px -176px
}

.ui-icon-battery-0 {
    background-position: -48px -176px
}

.ui-icon-battery-1 {
    background-position: -64px -176px
}

.ui-icon-battery-2 {
    background-position: -80px -176px
}

.ui-icon-battery-3 {
    background-position: -96px -176px
}

.ui-icon-circle-plus {
    background-position: 0 -192px
}

.ui-icon-circle-minus {
    background-position: -16px -192px
}

.ui-icon-circle-close {
    background-position: -32px -192px
}

.ui-icon-circle-triangle-e {
    background-position: -48px -192px
}

.ui-icon-circle-triangle-s {
    background-position: -64px -192px
}

.ui-icon-circle-triangle-w {
    background-position: -80px -192px
}

.ui-icon-circle-triangle-n {
    background-position: -96px -192px
}

.ui-icon-circle-arrow-e {
    background-position: -112px -192px
}

.ui-icon-circle-arrow-s {
    background-position: -128px -192px
}

.ui-icon-circle-arrow-w {
    background-position: -144px -192px
}

.ui-icon-circle-arrow-n {
    background-position: -160px -192px
}

.ui-icon-circle-zoomin {
    background-position: -176px -192px
}

.ui-icon-circle-zoomout {
    background-position: -192px -192px
}

.ui-icon-circle-check {
    background-position: -208px -192px
}

.ui-icon-circlesmall-plus {
    background-position: 0 -208px
}

.ui-icon-circlesmall-minus {
    background-position: -16px -208px
}

.ui-icon-circlesmall-close {
    background-position: -32px -208px
}

.ui-icon-squaresmall-plus {
    background-position: -48px -208px
}

.ui-icon-squaresmall-minus {
    background-position: -64px -208px
}

.ui-icon-squaresmall-close {
    background-position: -80px -208px
}

.ui-icon-grip-dotted-vertical {
    background-position: 0 -224px
}

.ui-icon-grip-dotted-horizontal {
    background-position: -16px -224px
}

.ui-icon-grip-solid-vertical {
    background-position: -32px -224px
}

.ui-icon-grip-solid-horizontal {
    background-position: -48px -224px
}

.ui-icon-gripsmall-diagonal-se {
    background-position: -64px -224px
}

.ui-icon-grip-diagonal-se {
    background-position: -80px -224px
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
    border-top-left-radius: 3px
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
    border-top-right-radius: 3px
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
    border-bottom-left-radius: 3px
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
    border-bottom-right-radius: 3px
}

.ui-widget-overlay {
    background: #aaa;
    opacity: .3;
    filter: Alpha(Opacity=30)
}

.ui-widget-shadow {
    -webkit-box-shadow: 0 0 5px #666;
    box-shadow: 0 0 5px #666
}

.slick-list,
.slick-slider,
.slick-track {
    position: relative;
    display: block
}

.slick-loading .slick-slide,
.slick-loading .slick-track {
    visibility: hidden
}

.slick-slider {
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list {
    overflow: hidden;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: 0
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-list,
.slick-slider .slick-track {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.slick-track {
    top: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto
}

.slick-track:after,
.slick-track:before {
    display: table;
    content: ''
}

.slick-track:after {
    clear: both
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.slick-arrow.slick-hidden {
    display: none
}

.slick-next,
.slick-next:focus,
.slick-next:hover,
.slick-prev,
.slick-prev:focus,
.slick-prev:hover {
    color: transparent;
    background: 0;
    outline: 0
}

.slick-dots,
.slick-next,
.slick-prev {
    position: absolute;
    display: block;
    padding: 0
}

.slick-next,
.slick-prev {
    font-size: 0;
    line-height: 0;
    top: 50%;
    width: 20px;
    height: 20px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    border: 0
}

.slick-next:focus:before,
.slick-next:hover:before,
.slick-prev:focus:before,
.slick-prev:hover:before {
    opacity: 1
}

.slick-next.slick-disabled:before,
.slick-prev.slick-disabled:before {
    opacity: .25
}

.slick-next:before,
.slick-prev:before {
    font-family: slick;
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.slick-prev {
    left: -25px
}

[dir=rtl] .slick-prev {
    right: -25px;
    left: auto
}

.slick-prev:before {
    content: '←'
}

.slick-next:before,
[dir=rtl] .slick-prev:before {
    content: '→'
}

.slick-next {
    right: -25px
}

[dir=rtl] .slick-next {
    right: auto;
    left: -25px
}

[dir=rtl] .slick-next:before {
    content: '←'
}

.slick-dotted.slick-slider {
    margin-bottom: 55px
}

.slick-dots {
    bottom: -55px;
    width: 100%;
    margin: 0;
    list-style: none;
    text-align: center
}

.slick-dots li,
.slick-dots li button {
    width: 20px;
    height: 20px;
    cursor: pointer
}

.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    padding: 0
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    padding: 5px;
    color: transparent;
    border: 0;
    outline: 0;
    background: 0
}

.slick-dots li button:focus,
.slick-dots li button:hover {
    outline: 0
}

.slick-dots li button:focus:before,
.slick-dots li button:hover:before {
    opacity: 1
}

.slick-dots li button:before {
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    content: '';
    text-align: center;
    opacity: 1;
    color: #000;
    background: url(../images/nonslide.png) no-repeat;
    border-radius: 50%
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: #000;
    background: url(../images/activeslide.png) no-repeat
}

.slider_wrap {
    position: relative;
    width: 100%;
    overflow: hidden
}

.slider_wrap .sliderboxleft {
    width: 49%;
    float: left;
    background: #007fca url(../images/slider-lbg.png) top right no-repeat
}

.slider_wrap .sliderboxleft .workleft {
    width: 500px;
    float: right;
    text-align: center;
    padding-top: 20px;
    min-height: 385px
}

.slider_wrap .sliderboxleft .workleft .imgbox {
    display: block;
    width: 200px;
    margin: 0 auto;
    border: 15px solid #04cdff;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 25px;
    box-sizing: border-box
}

.slider_wrap .sliderboxleft .workleft h2 {
    font-size: 20px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase
}

.slider_wrap .sliderboxright {
    width: 49%;
    float: right
}

.slider_wrap .sliderboxright .workright {
    width: 475px;
    float: left;
    text-align: left;
    padding-top: 40px
}

.slider_wrap .sliderboxright .workright p {
    line-height: 24px;
    padding: 0;
    margin: 0;
    font-size: 16px
}

.slider_wrap .sliderboxright .workright .read {
    border: 2px solid #015898;
    color: #015898;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 25px;
    padding: 8px 35px;
    font-weight: 600;
    margin-top: 25px;
    display: inline-block
}

.slider_wrap .sliderboxright .workright .read:hover {
    color: #fff;
    background-color: #015898
}

@media screen and (max-width:990px) {
    .slider_wrap .sliderboxleft,
    .slider_wrap .sliderboxright {
        width: 100%;
        text-align: center
    }
    .slider_wrap .sliderboxleft {
        background: #007fca url(../images/slider-lbg.png) top center no-repeat;
        background-size: 50%
    }
    .slider_wrap .sliderboxleft .workleft {
        float: none;
        margin: 0 auto;
        min-height: 290px
    }
    .slider_wrap .sliderboxright .workright {
        width: 500px;
        float: none;
        text-align: center;
        padding-top: 12px;
        margin: 0 auto
    }
    .accordionButton1 {
        position: relative;
        cursor: pointer
    }
    .accordionButton1:after {
        content: '';
        width: 10px;
        height: 10px;
        position: absolute;
        top: 15px;
        right: 10px;
        border: solid #235893;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
        transition: all .2s ease-in
    }
    .on1:after {
        transform: rotate(225deg);
        top: 22px;
        transition: all .2s ease-in
    }
}

@media screen and (max-width:767px) {
    .slider_wrap .sliderboxleft {
        background-size: 60%
    }
}

@media screen and (max-width:599px) {
    .slider_wrap .sliderboxleft {
        background-size: 70%
    }
    .slider_wrap .sliderboxleft .workleft,
    .slider_wrap .sliderboxright .workright {
        width: 100%;
        padding: 20px;
        box-sizing: border-box
    }
    .slick-dots {
        bottom: -20px!important
    }
}

@media screen and (max-width:479px) {
    .slider_wrap .sliderboxleft {
        background-size: 95%
    }
    .slider_wrap .sliderboxleft .workleft h2 {
        font-size: 18px
    }
    .slider_wrap .sliderboxleft .workleft,
    .slider_wrap .sliderboxright .workright {
        padding: 10px
    }
    .slider_wrap .sliderboxright .workright p {
        font-size: 14px;
        line-height: 20px;
        color: #333
    }
    .slider_wrap .sliderboxright .workright .read {
        font-size: 13px;
        padding: 7px 25px
    }
}

.pager {
    padding: 20px 0;
    text-align: center;
    margin: 30px 0 0 0
}

.holder {
    margin: 0
}

.holder a {
    font-family: 'roboto';
    font-size: 16px;
    cursor: pointer;
    margin: 0 2px;
    color: #333;
    padding: 6px 10px;
    text-decoration: none;
    font-weight: 500
}

.holder a:hover {
    background-color: #e0e0e0
}

.holder a.jp-previous {
    margin: 0 15px 0 0;
    background: 0;
    color: #015898;
    position: relative
}

.holder a.jp-next {
    margin: 0 0 0 15px;
    background: 0;
    position: relative;
    color: #015898
}

.holder a.jp-current {
    color: #333!important;
    background: #e0e0e0
}

.holder a.jp-current:hover {
    font-weight: bold
}

.holder a.jp-disabled {
    color: #999;
    background: #fff;
    position: relative
}

.holder a.jp-disabled1 {
    color: #999;
    background: #fff;
    position: relative
}

.holder a.jp-next:after {
    content: '';
    position: absolute;
    right: -10px;
    top: 5px;
    border: solid;
    border-width: 0 2px 2px 0;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    height: 17px;
    width: 17px
}

.holder a.jp-previous:before {
    content: '';
    position: absolute;
    left: -10px;
    top: 5px;
    border: solid;
    border-width: 0 2px 2px 0;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    height: 17px;
    width: 17px
}

.holder a.jp-disabled:before {
    content: '';
    position: absolute;
    left: -10px;
    top: 5px;
    border: solid;
    border-width: 0 2px 2px 0;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    height: 17px;
    width: 17px
}

.holder a.jp-disabled1:after {
    content: '';
    position: absolute;
    right: -10px;
    top: 5px;
    border: solid;
    border-width: 0 2px 2px 0;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    height: 17px;
    width: 17px
}

.holder2018.holder2018,
.holder2017,
.holder2016,
.holder2015,
.holder2014,
.holder2013,
.holder2012,
.holder2011,
.holder2010,
.holder2009,
.holder2008 {
    margin: 0
}

.holder2018 a,
.holder2017 a,
.holder2016 a,
.holder2015 a,
.holder2014 a,
.holder2013 a,
.holder2012 a,
.holder2011 a,
.holder2010 a,
.holder2009 a,
.holder2008 a {
    font-family: 'roboto';
    font-size: 16px;
    cursor: pointer;
    margin: 0 2px;
    color: #333;
    padding: 6px 10px;
    text-decoration: none;
    font-weight: 500
}

.holder2018 a:hover,
.holder2017 a:hover,
.holder2016 a:hover,
.holder2015 a:hover,
.holder2014 a:hover,
.holder2013 a:hover,
.holder2012 a:hover,
.holder2011 a:hover,
.holder2010 a:hover,
.holder2009 a:hover,
.holder2008 a:hover {
    background-color: #e0e0e0
}

.holder2018 a.jp-previous,
.holder2017 a.jp-previous,
.holder2016 a.jp-previous,
.holder2015 a.jp-previous,
.holder2014 a.jp-previous,
.holder2013 a.jp-previous,
.holder2012 a.jp-previous,
.holder2011 a.jp-previous,
.holder2010 a.jp-previous,
.holder2009 a.jp-previous,
.holder2008 a.jp-previous {
    margin: 0 15px 0 0;
    background: 0;
    color: #015898;
    position: relative
}

.holder2018 a.jp-next,
.holder2017 a.jp-next,
.holder2016 a.jp-next,
.holder2015 a.jp-next,
.holder2014 a.jp-next,
.holder2013 a.jp-next,
.holder2012 a.jp-next,
.holder2011 a.jp-next,
.holder2010 a.jp-next,
.holder2009 a.jp-next,
.holder2008 a.jp-next {
    margin: 0 0 0 15px;
    background: 0;
    position: relative;
    color: #015898
}

.holder2018 a.jp-current,
.holder2017 a.jp-current,
.holder2016 a.jp-current,
.holder2015 a.jp-current,
.holder2014 a.jp-current,
.holder2013 a.jp-current,
.holder2012 a.jp-current,
.holder2011 a.jp-current,
.holder2010 a.jp-current,
.holder2009 a.jp-current,
.holder2008 a.jp-current {
    color: #333!important;
    background: #e0e0e0
}

.holder2018 a.jp-current:hover,
.holder2017 a.jp-current:hover,
.holder2016 a.jp-current:hover,
.holder2015 a.jp-current:hover,
.holder2014 a.jp-current:hover,
.holder2013 a.jp-current:hover,
.holder2012 a.jp-current:hover,
.holder2011 a.jp-current:hover,
.holder2010 a.jp-current:hover,
.holder2009 a.jp-current:hover,
.holder2008 a.jp-current:hover {
    font-weight: bold
}

.holder2018 a.jp-disabled,
.holder2017 a.jp-disabled,
.holder2016 a.jp-disabled,
.holder2015 a.jp-disabled,
.holder2014 a.jp-disabled,
.holder2013 a.jp-disabled,
.holder2012 a.jp-disabled,
.holder2011 a.jp-disabled,
.holder2010 a.jp-disabled,
.holder2009 a.jp-disabled,
.holder2008 a.jp-disabled {
    color: #999;
    background: #fff;
    position: relative
}

.holder2018 a.jp-disabled1,
.holder2017 a.jp-disabled1,
.holder2016 a.jp-disabled1,
.holder2015 a.jp-disabled1,
.holder2014 a.jp-disabled1,
.holder2013 a.jp-disabled1,
.holder2012 a.jp-disabled1,
.holder2011 a.jp-disabled1,
.holder2010 a.jp-disabled1,
.holder2009 a.jp-disabled1,
.holder2008 a.jp-disabled1 {
    color: #999;
    background: #fff;
    position: relative
}

.holder2018 a.jp-previous:before,
.holder2017 a.jp-previous:before,
.holder2016 a.jp-previous:before,
.holder2015 a.jp-previous:before,
.holder2014 a.jp-previous:before,
.holder2013 a.jp-previous:before,
.holder2012 a.jp-previous:before,
.holder2011 a.jp-previous:before,
.holder2010 a.jp-previous:before,
.holder2009 a.jp-previous:before,
.holder2008 a.jp-previous:before {
    content: '';
    position: absolute;
    left: -10px;
    top: 5px;
    border: solid;
    border-width: 0 2px 2px 0;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    height: 17px;
    width: 17px
}

.holder2018 a.jp-next:after,
.holder2017 a.jp-next:after,
.holder2016 a.jp-next:after,
.holder2015 a.jp-next:after,
.holder2014 a.jp-next:after,
.holder2013 a.jp-next:after,
.holder2012 a.jp-next:after,
.holder2011 a.jp-next:after,
.holder2010 a.jp-next:after,
.holder2009 a.jp-next:after,
.holder2008 a.jp-next:after {
    content: '';
    position: absolute;
    right: -10px;
    top: 5px;
    border: solid;
    border-width: 0 2px 2px 0;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    height: 17px;
    width: 17px
}

.holder2018 a.jp-disabled:before,
.holder2017 a.jp-disabled:before,
.holder2016 a.jp-disabled:before,
.holder2015 a.jp-disabled:before,
.holder2014 a.jp-disabled:before,
.holder2013 a.jp-disabled:before,
.holder2012 a.jp-disabled:before,
.holder2011 a.jp-disabled:before,
.holder2010 a.jp-disabled:before,
.holder2009 a.jp-disabled:before,
.holder2008 a.jp-disabled:before {
    content: '';
    position: absolute;
    left: -10px;
    top: 5px;
    border: solid;
    border-width: 0 2px 2px 0;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    height: 17px;
    width: 17px
}

.holder2018 a.jp-disabled1:after,
.holder2017 a.jp-disabled1:after,
.holder2016 a.jp-disabled1:after,
.holder2015 a.jp-disabled1:after,
.holder2014 a.jp-disabled1:after,
.holder2013 a.jp-disabled1:after,
.holder2012 a.jp-disabled1:after,
.holder2011 a.jp-disabled1:after,
.holder2010 a.jp-disabled1:after,
.holder2009 a.jp-disabled1:after,
.holder2008 a.jp-disabled1:after {
    content: '';
    position: absolute;
    right: -10px;
    top: 5px;
    border: solid;
    border-width: 0 2px 2px 0;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    height: 17px;
    width: 17px
}

@keyframes modal-video {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes modal-video-inner {
    from {
        transform: translate(0, 100px)
    }
    to {
        transform: translate(0, 0)
    }
}

.modal-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000000;
    cursor: pointer;
    opacity: 1;
    animation-timing-function: ease-out;
    animation-duration: .3s;
    animation-name: modal-video;
    -webkit-transition: opacity .3s ease-out;
    -moz-transition: opacity .3s ease-out;
    -ms-transition: opacity .3s ease-out;
    -o-transition: opacity .3s ease-out;
    transition: opacity .3s ease-out
}

.modal-video-close {
    opacity: 0
}

.modal-video-close .modal-video-movie-wrap {
    -webkit-transform: translate(0, 100px);
    -moz-transform: translate(0, 100px);
    -ms-transform: translate(0, 100px);
    -o-transform: translate(0, 100px);
    transform: translate(0, 100px)
}

.modal-video-body {
    max-width: 940px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: table
}

.modal-video-inner {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%
}

.modal-video-movie-wrap {
    width: 100%;
    height: 0;
    position: relative;
    padding-bottom: 56.25%;
    background-color: #333;
    animation-timing-function: ease-out;
    animation-duration: .3s;
    animation-name: modal-video-inner;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition: -webkit-transform .3s ease-out;
    -moz-transition: -moz-transform .3s ease-out;
    -ms-transition: -ms-transform .3s ease-out;
    -o-transition: -o-transform .3s ease-out;
    transition: transform .3s ease-out
}

.modal-video-movie-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.modal-video-close-btn {
    cursor: pointer;
    position: absolute;
    z-index: 2;
    top: -35px;
    right: 0;
    display: inline-block;
    width: 35px;
    height: 35px;
    overflow: hidden;
    border: 0;
    background: transparent
}

.modal-video-close-btn:before {
    transform: rotate(45deg)
}

.modal-video-close-btn:after {
    transform: rotate(-45deg)
}

.modal-video-close-btn:before,
.modal-video-close-btn:after {
    content: '';
    position: absolute;
    height: 4px;
    width: 100%;
    top: 50%;
    left: 0;
    margin-top: -1px;
    background: #fff;
    border-radius: 5px;
    margin-top: -6px
}

.rangeslider__ruler {
    cursor: pointer;
    font-size: 18px;
    padding: 20px 0;
    position: relative;
    top: 100%;
    text-align: justify;
    font-family: 'roboto';
    font-weight: 600;
    color: #166aaa
}

.rangeslider__ruler:after {
    content: "";
    display: inline-block;
    width: 100%
}

.rangeslider,
.rangeslider__fill {
    display: block
}

.rangeslider {
    background: #c6dde5;
    position: relative
}

.rangeslider--horizontal {
    height: 8px;
    width: 100%;
    position: relative
}

.rangeslider--vertical {
    width: 20px;
    min-height: 150px;
    max-height: 100%
}

.rangeslider--disabled {
    filter: alpha(Opacity=40);
    opacity: .4
}

.rangeslider__fill {
    background: #005da4;
    position: absolute
}

.rangeslider--horizontal .rangeslider__fill {
    top: 0;
    height: 100%
}

.rangeslider--vertical .rangeslider__fill {
    bottom: 0;
    width: 100%
}

.rangeslider__handle {
    background: #166aaa;
    cursor: pointer;
    display: inline-block;
    width: 10px;
    height: 30px;
    position: absolute
}

.rangeslider--horizontal .rangeslider__handle {
    top: -10px;
    touch-action: pan-y;
    -ms-touch-action: pan-y
}

.rangeslider--vertical .rangeslider__handle {
    left: -10px;
    touch-action: pan-x;
    -ms-touch-action: pan-x
}

input[type=range]:focus+.rangeslider .rangeslider__handle {
    -moz-box-shadow: 0 0 8px rgba(255, 0, 255, .9);
    -webkit-box-shadow: 0 0 8px rgba(255, 0, 255, .9);
    box-shadow: 0 0 8px rgba(255, 0, 255, .9)
}

.lineruler {
    position: relative;
    height: 15px;
    width: 1px;
    background: #c6dde5;
    font-size: 10px;
    top: 12px;
    margin: 0 12.3px
}

.range-field .rangeslider__fill {
    display: none
}

.range-field .rangeslider--horizontal {
    height: 7px
}

.range-field .rangeslider__handle {
    width: 50px;
    height: 14px;
    top: -4px
}

.range-top .rangeslider__ruler {
    display: none
}

.table-result {
    margin: 0;
    width: 100%
}

.table-result th {
    display: none
}

.table-result td {
    display: block
}

.table-result td:first-child {
    padding-top: .5em
}

.table-result td:last-child {
    padding-bottom: .5em
}

.table-result td:before {
    content: attr(data-th) " ";
    font-weight: bold;
    width: 6.5em;
    display: inline-block
}

.smalldevice {
    float: none;
    width: auto
}

@media(max-width:599px) {
    .holder a.jp-next:after {
        right: -10px;
        top: 2px
    }
    .holder a.jp-previous:before {
        left: -10px;
        top: 2px
    }
    .holder a.jp-disabled:before {
        left: -10px;
        top: 2px
    }
    .holder a.jp-disabled1:after {
        right: -10px;
        top: 2px
    }
    .smalldevice {
        float: right;
        width: 60%;
        background: #fff;
        padding: 10px
    }
    .result-nav-wrap .tablewrap-resultnav .table-result td:nth-child(1) {
        padding-left: 0
    }
    .result-nav-wrap .tablewrap-resultnav .table-result td {
        padding: 0;
        background: #f7f4f4
    }
}

@media(min-width:600px) {
    .table-result td:before {
        display: none
    }
}

.table-result th,
.table-result td {
    text-align: left
}

@media(min-width:600px) {
    .table-result th,
    .table-result td {
        display: table-cell;
        padding: .25em .5em
    }
    .table-result th:first-child,
    .table-result td:first-child {
        padding-left: 0
    }
    .table-result th:last-child,
    .table-result td:last-child {
        padding-right: 0
    }
}

.table-result {
    color: #000;
    border-radius: .4em;
    overflow: hidden
}

.table-result tr {
    border-color: #1e71c1;
    border-top: 3px solid #eeecec
}

.table-result th,
.table-result td {
    margin: 2px
}

@media(min-width:600px) {
    .table-result th,
    .table-result td {
        padding: 1em!important
    }
}

.table-result th,
.table-result td:before {
    color: #015898;
    width: 105px;
    font-size: 13px;
    padding: 10px 0 10px 10px;
    font-weight: normal
}

.animated {
    -webkit-animation-duration: 150ms;
    animation-duration: 150ms
}

.tabs-wrapper select.tab-nav {
    display: none
}

.tabs-wrapper-process select.tab-nav {
    display: none
}

@media screen and (max-width:767px) {
    .tabs-wrapper ul.tab-nav {
        display: block
    }
    .tabs-wrapper select.tab-nav {
        width: 100%;
        padding: 15px;
        background: #FFF;
        border: 1px solid #dedede;
        border-radius: 2px 2px 0 0;
        display: none
    }
    .tabs-wrapper select.tab-nav:focus {
        outline: 0
    }
    .tabs-wrapper .target-tabs {
        border-radius: 0 0 2px 2px
    }
    .tabs-wrapper-process ul.tab-nav {
        display: none
    }
    .tabs-wrapper-process select.tab-nav {
        width: 100%;
        padding: 15px;
        background: #FFF;
        border: 1px solid #dedede;
        border-radius: 2px 2px 0 0;
        display: block
    }
    .tabs-wrapper-process select.tab-nav:focus {
        outline: 0
    }
    .tabs-wrapper-process .target-tabs {
        border-radius: 0 0 2px 2px
    }
    .select-tabs-year {
        display: block
    }
}

body {
    margin: 0;
    padding: 0;
    color: #454545;
    background: #fff url(../images/bg.png);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
    -webkit-font-smoothing: antialiased
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px
}

p,
.control-group {
    margin: 0 0 20px 0
}

.demo {
    border-bottom: 1px solid #e8e8e8;
    padding-top: 50px;
    padding-bottom: 50px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px
}

.demo:last-child {
    border-bottom: 0 none
}

.demo select,
.demo input,
.demo .selectize-control {
    width: 100%
}

.demo>*:first-child {
    margin-top: 0
}

.demo>*:last-child {
    margin-bottom: 0
}

.demo .value {
    margin: 0 0 10px;
    font-size: 12px
}

.demo .value span {
    font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace
}

.theme-selector {
    margin-top: 10px;
    font-size: 13px
}

.theme-selector:before {
    content: 'Themes: '
}

.theme-selector a {
    margin: 0 5px
}

.theme-selector a.active {
    color: #202020;
    font-weight: bold
}

#wrapper {
    margin: 0
}

#wrapper>* {
    padding-left: 100px;
    padding-right: 100px
}

pre {
    background: #f8f8f8;
    border: 1px solid #f2f2f2;
    padding: 10px;
    font-size: 12px;
    font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px
}

input[type=button] {
    margin: 0 10px 0 0;
    padding: 6px 10px;
    color: #606060;
    background: #e0e0e0;
    border: 0 none;
    width: auto;
    display: inline-block;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-font-smoothing: antialiased
}

.buttons {
    margin: 0 0 25px 0
}

input[type=button]:hover {
    background: #dadada
}

@media only screen and (max-width:320px) {
    body {
        margin: 20px 0
    }
    #wrapper {
        margin: 0
    }
    #wrapper>* {
        padding-left: 10px;
        padding-right: 10px
    }
    .demo {
        padding: 20px;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0
    }
}

ul.uc-list-dots {
    padding: 0;
    margin: 0 0 30px 0
}

ul.uc-list-dots>li {
    position: relative;
    padding-left: 25px;
    font-size: 16px;
    font-weight: normal;
    color: #333;
    margin-bottom: 8px
}

ul.uc-list-dots li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    background: url("../images/bullet.png") no-repeat
}

ul.uc-list-dots li span {
    color: #015898
}

ul.uc-list {
    padding: 15px;
    margin: 0 0 30px 0
}

ul.uc-list>li {
    list-style-type: decimal;
    padding-left: 5px;
    line-height: 23px;
    font-size: 16px;
    color: #333;
    margin-bottom: 8px
}

.details-list {
    background: #d4eff8;
    text-align: left;
    padding: 15px 15px 1px;
    font-size: 16px;
    margin-bottom: 15px
}

.detail-title {
    text-align: left;
    margin-bottom: 14px;
    font-size: 18px
}

input[type=button].btn-sbmit {
    padding: 15px 60px;
    margin: 0;
    font-weight: 600;
    background: #015898;
    font-size: 14px;
    text-transform: uppercase;
    border: 0;
    color: #fff;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    border-radius: 30px;
    -webkit-transition: all .4s ease-out 0s;
    -moz-transition: all .4s ease-out 0s;
    -ms-transition: all .4s ease-out 0s;
    -o-transition: all .4s ease-out 0s;
    transition: all .4s ease-out 0s;
    cursor: pointer
}

input.form-control {
    border: 0;
    border-bottom: 1px solid #a5a7a9;
    background: 0;
    font-size: 22px;
    color: #333;
    font-weight: 400;
    width: 100%;
    padding: 0 2% 12px 0;
    margin: 30px 0 0;
    letter-spacing: -0.5px
}

textarea.form-control {
    border: 0;
    background: #e7e7e7;
    resize: none;
    height: 190px;
    font-size: 22px;
    color: #333;
    font-weight: 400;
    width: 100%;
    padding: 12px;
    margin: 30px 0 0;
    font-family: "Roboto", sans-serif
}

select.valid,
select {
    position: relative;
    border-bottom: 1px solid #a5a7a9;
    padding: 8px 32px 8px 5px;
    background: 0;
    cursor: pointer
}

.contact-wrap .sf_1col_1_100 {
    display: inline-block;
    width: 100%
}

ul.pdf-list-style li:before {
    display: none
}

ul.pdf-list-style li a:hover {
    text-decoration: underline
}

ul.pdf-list-style li img {
    margin-right: 15px;
    display: none
}

ul.pdf-list-style li {
    padding: 10px 0
}

ul.pdf-list-style {
    margin: 0!important
}

ul.pdf-list-style li a {
    padding-left: 36px;
    display: inline-block;
    padding-top: 5px;
    padding-bottom: 5px;
    color: #1e5898;
    position: relative;
    font-weight: 400;
    font-size: 16px
}

ul.pdf-list-style li a:before {
    content: '\f1c1';
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    font-family: FontAwesome;
    font-size: 22px;
    color: #015898;
    font-weight: 100;
    text-align: center;
    line-height: 30px
}

ul.excel-list-style li:before {
    display: none
}

ul.excel-list-style li a:hover {
    text-decoration: underline
}

ul.excel-list-style li img {
    margin-right: 15px;
    display: none
}

ul.excel-list-style li {
    padding: 10px 0
}

ul.excel-list-style {
    margin: 0!important
}

ul.excel-list-style li a {
    padding-left: 36px;
    display: inline-block;
    padding-top: 5px;
    padding-bottom: 5px;
    color: #1e5898;
    position: relative;
    font-weight: 400;
    font-size: 16px
}

ul.excel-list-style li a:before {
    content: '\f1c3';
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    font-family: FontAwesome;
    font-size: 22px;
    color: #015898;
    font-weight: 100;
    text-align: center;
    line-height: 30px
}

.sip-swp-plans .sipplan-box .content th {
    background-color: #fafafa;
    padding: 12px;
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #595959
}

.sip-swp-plans .sipplan-box .content td {
    padding: 30px 20px;
    font-size: 18px;
    font-weight: 300;
    position: relative;
    border-bottom: 3px solid #fafafa
}

.sip-swp-plans .sipplan-box .content td .siprs .sip-rsicon {
    position: relative;
    top: 0;
    left: 0;
    font-size: 17px
}

.sipplan-box .monthly-quatab {
    display: none
}

@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700);
.steps_box,
.steps_box .steps,
.steps_box .steps li,
.steps_content,
.steps_content .step_head,
.steps_content .form_rows,
.steps_content .form_rows .cols_left label,
.steps_content .form_rows .cols_right label,
.steps_content .form_rows .cols_full_wd label,
.steps_content .form_rows .cols_full_wd .input_group {
    margin: 0;
    padding: 0;
    float: left;
    width: 100%
}

.innerContainer {
    float: left;
    width: 100%;
    position: relative
}

.innerContainer .selectText {
    position: absolute;
    top: 0;
    left: 0;
    padding: 11px 8px;
    border-bottom: 1px solid #a5a7a9;
    font-size: 1.5em;
    width: 100%
}

.innerContainer .selectText:after {
    content: "";
    width: 0;
    height: 0;
    padding: 5px;
    border: solid #7a7a7a;
    border-width: 0 1px 1px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 10px;
    right: 10px;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in
}

.innerContainer select {
    padding: 11px 8px;
    opacity: 0;
    width: 100%;
    height: 39px
}

.rotated {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.deviceTxt {
    display: none
}

.video-wrapper .owl-controls .owl-nav {
    top: 50%;
    position: absolute;
    width: 100%;
    left: 0;
    margin-top: -10px
}

input:-internal-autofill-selected {
    background-color: #fff
}

.steps_box .steps li span {
    padding: 0;
    display: block;
    margin: 0 auto;
    text-align: center
}

.img-fluid {
    width: 100%
}

.steps_box .steps li .line {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto
}

.steps_box .steps li span:before {
    width: 100%;
    height: 100%;
    border-radius: 100%
}

.steps_box .steps li .line {
    width: 100%;
    display: block
}

.steps_content .form_rows .cols_left,
.steps_content .form_rows .cols_right,
.steps_content .form_rows .cols_full_wd {
    float: left;
    display: block
}

.common-wrapper {
    width: 100%;
    float: left;
    margin-bottom: 52px
}

.fieldset {
    border: 1px solid;
    padding: 20px 20px 0;
    margin-bottom: 20px
}

.lds-ring {
    display: inline-block;
    position: fixed;
    top: 50%;
    z-index: 9999;
    left: 50%;
    margin-top: -32px;
    margin-left: -32px;
    width: 64px;
    height: 64px
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 51px;
    height: 51px;
    margin: 6px;
    border: 6px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(360deg)
    }
}

.common-wrapper .tools {
    width: 50%
}

.common-wrapper .tools h2 {
    font-family: "robotomedium";
    color: #5ccbfa;
    font-size: 3.6rem;
    font-weight: normal;
    position: relative;
    margin-bottom: 20px
}

.common-wrapper .tools h2:before {
    content: '';
    position: absolute;
    bottom: -18px;
    height: 5px;
    padding: 0 20px;
    background-color: #973d30
}

.common-wrapper .tools h2 span {
    color: #235893
}

.common-wrapper .tools .details-row {
    margin: 48px 0 20px;
    float: left
}

.common-wrapper .tools .details-row .rounded-icon,
.common-wrapper .tools .details-row .icon-details {
    float: left;
    width: 400px
}

.common-wrapper .tools .details-row .rounded-icon {
    width: 159px;
    height: 159px;
    border-radius: 50%;
    background-color: #ecf6fa;
    margin-right: 39px
}

.common-wrapper .tools .details-row .rounded-icon .icon {
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    position: relative;
    top: 50%;
    left: 50%
}

.common-wrapper .tools h3 {
    font-family: 'robotomedium';
    font-size: 3rem;
    color: #235893;
    font-weight: lighter;
    margin-bottom: 10px;
    text-align: left
}

.common-wrapper .tools h3:after {
    background: 0
}

.common-wrapper .tools p {
    font-family: 'robotoregular';
    font-size: 1.6rem;
    width: 75%;
    min-height: auto
}

.common-wrapper .investor {
    margin-right: 20px;
    max-width: 500px;
    width: 100%
}

.common-wrapper .investor h2 {
    font-family: "robotomedium";
    color: #5ccbfa;
    font-size: 3.6rem;
    font-weight: normal;
    position: relative;
    margin-bottom: 20px
}

.common-wrapper .investor h2:before {
    content: '';
    position: absolute;
    bottom: -18px;
    height: 5px;
    padding: 0 20px;
    background-color: #973d30
}

.common-wrapper .investor h2 span {
    color: #235893
}

.common-wrapper .investor .video-title,
.common-wrapper .investor .sub-info {
    font-family: 'robotoregular';
    text-align: center;
    color: #235893
}

.common-wrapper .investor .video-title {
    font-size: 2.4rem
}

.common-wrapper .investor .sub-info {
    font-size: 1.6rem
}

.common-wrapper .btn {
    margin-top: 25px
}

.common-wrapper .video-wrapper {
    margin-top: 58px;
    position: relative;
    padding: 0 50px
}

.common-wrapper .video-wrapper .video-info {
    max-width: 500px;
    width: 100%;
    display: inline-block
}

.common-wrapper .video-wrapper .video-info .video-icon {
    width: 100%;
    display: inline-block
}

.common-wrapper .video-wrapper .video-info .video-icon img {
    width: 100%;
    margin-bottom: 30px
}

.common-wrapper .video-wrapper.owl-carousel .owl-prev,
.common-wrapper .video-wrapper.owl-carousel .owl-next {
    position: absolute;
    top: 30%
}

.common-wrapper .video-wrapper.owl-carousel .owl-prev {
    left: 0;
    background: url("../images/prev-arrow.png") no-repeat;
    background-size: contain
}

.common-wrapper .video-wrapper.owl-carousel .owl-next {
    right: 0;
    background: url("../images/next-arrow.png") no-repeat;
    background-size: contain
}

.middle-wrapper {
    margin: 0 auto;
    padding: 58px 75px;
    float: left;
    width: 100%
}

#chartdiv {
    width: 100%!important
}

.middle-wrap {
    margin: 0 auto;
    padding: 58px 0 0;
    float: left;
    width: 100%
}

.middle-wrap h4 {
    font-family: 'robotobold';
    font-size: 24px;
    color: #235893;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 25px
}

.middle-wrap p {
    text-align: left;
    font-size: 16px;
    line-height: 23px
}

.middle-wrap .bold-text {
    font-family: 'robotomedium';
    font-size: 1.6rem;
    margin-top: 30px
}

.middle-wrap ul {
    width: 50%;
    margin-left: 15px
}

.middle-wrap ul li {
    float: left;
    width: 50%;
    text-align: left;
    position: relative;
    padding-left: 25px;
    font-size: 1.4rem;
    line-height: 23px
}

.middle-wrap ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    background: url("../images/bullet.png") no-repeat
}

.middle-wrap .imp-text {
    margin-top: 130px;
    display: block;
    width: 75%;
    float: left;
    font-family: 'robotoregular';
    font-size: 1.6rem;
    color: #0c5ca0;
    padding-bottom: 10px;
    border-bottom: 1px solid #dedede
}

.middle-wrap .imp-text .gray-text {
    color: #727272
}

.middle-wrap .imp-text .i-icon {
    position: relative;
    top: -3px;
    padding-left: 10px;
    width: auto
}

.middle-wrap .chart-title {
    margin-bottom: 20px
}

.middle-wrap .graph {
    margin-bottom: 20px
}

.middle-wrap .graph img {
    width: 100%
}

.middle-wrap .graph-link {
    color: #235893;
    text-align: right;
    text-decoration: none;
    border-bottom: 1px solid #235893
}

.middle-wrap .column2 {
    width: 50%;
    text-align: center
}

ul.listing-product {
    margin: 10px 0 5px
}

ul.listing-product li {
    list-style: disc;
    list-style-position: outside;
    font-size: 20px;
    font-weight: 400;
    color: #015898;
    margin: 0 0 6px 18px;
    padding: 0 0 0 5px;
    line-height: 22px
}

ul.listing-product li span {
    color: #333;
    font-size: 16px
}

ul.listing-product .headprod-listing {
    font-family: "Roboto", sans-serif;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 5px
}

.rem-disc-detail-wrap p.small {
    font-size: 12px;
    margin-bottom: 10px
}

@media only screen and (max-width:1280px) {
    .middle-wrap .column1 p,
    .middle-wrap .column1 ul,
    .middle-wrap .column1 .imp-text {
        width: 100%
    }
    .middle-wrap .column1 .imp-text {
        margin-top: 60px
    }
    .common-wrapper .tools h3 {
        margin-bottom: 6px
    }
    .common-wrapper .tools .details-row {
        margin-bottom: 0
    }
    .common-wrapper .tools .details-row .icon-details {
        width: 340px
    }
}

@media screen and (max-width:1255px) {
    .middle-wrapper {
        padding: 40px 40px 30px
    }
    .middle-wrap {
        padding: 20px
    }
    .common-wrapper {
        margin-bottom: 0
    }
    .common-wrapper .investor {
        margin: 0 auto;
        float: none
    }
    .common-wrapper .investor h2 {
        text-align: center
    }
    .common-wrapper .investor h2:before {
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 20px
    }
    .common-wrapper.tools-calculator {
        margin: 20px 0 30px
    }
    .common-wrapper .tools {
        width: 100%;
        margin-bottom: 25px
    }
    .common-wrapper .tools p {
        width: auto
    }
    .common-wrapper .tools h2 {
        text-align: center
    }
    .common-wrapper .tools h2:before {
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 20px
    }
    .common-wrapper .tools .details-row {
        width: 100%
    }
    .common-wrapper .tools .details-row {
        margin-bottom: 0
    }
    .common-wrapper .tools .details-row .icon-details {
        width: 75%
    }
}

@media only screen and (max-width:990px) {
    .btn.btn-secondary {
        margin-right: 20px
    }
    .middle-wrapper {
        padding: 30px 0
    }
    .middle-wrap .column1 {
        width: 100%;
        margin-bottom: 40px
    }
    .middle-wrap .column1 p,
    .middle-wrap .column1 ul,
    .middle-wrap .column1 .imp-text {
        width: 100%
    }
    .middle-wrap .column2 {
        float: left;
        width: 100%
    }
    .middle-wrap .column2 .graph img {
        width: 100%
    }
    .common-wrapper .tools {
        margin-bottom: 50px;
        width: 100%
    }
    .common-wrapper .tools p {
        text-align: center
    }
    .common-wrapper .tools .details-row {
        width: 100%
    }
    .common-wrapper .tools .details-row .rounded-icon {
        float: none;
        margin: 0 auto
    }
    .common-wrapper .tools .details-row .icon-details {
        width: 100%;
        text-align: center
    }
    .common-wrapper .tools .details-row .icon-details h3 {
        text-align: center;
        margin-top: 20px
    }
}

@media only screen and (max-width:767px) {
    .steps_content .form_rows .cols_full_wd {
        width: 100%;
        margin-bottom: 15px
    }
    .common-wrapper .investor .video-title {
        font-size: 1.9rem
    }
    .common-wrapper .investor .sub-info {
        font-size: 1.4rem
    }
    .common-wrapper .video-wrapper.owl-carousel .owl-prev,
    .common-wrapper .video-wrapper.owl-carousel .owl-next {
        top: auto;
        bottom: 20%
    }
    .common-wrapper .video-wrapper.owl-carousel .owl-prev {
        left: 50px;
        background: url("../images/prev-arrow.png") no-repeat;
        width: 40px;
        height: 40px
    }
    .common-wrapper .video-wrapper.owl-carousel .owl-next {
        right: 35px;
        background: url("../images/next-arrow.png") no-repeat;
        width: 40px;
        height: 40px
    }
    .mainWrapper section.footerSection .footermenu-line2 ul:nth-child(2),
    .mainWrapper section.footerSection .footermenu-line2 ul:nth-child(3),
    .mainWrapper section.footerSection .footermenu-line2 ul:nth-child(4) {
        margin-top: 0!important
    }
}

@media only screen and (max-width:599px) {
    .common-wrapper .tools {
        margin-bottom: 50px;
        width: 100%
    }
    .common-wrapper .tools .details-row {
        width: 100%;
        display: block
    }
    .common-wrapper .tools .details-row .icon-details {
        width: 100%
    }
    .common-wrapper .investor .video-title,
    .common-wrapper .investor .sub-info {
        text-align: center
    }
    .scheme-list .showing_results .scheme_plan label {
        font-size: 14px!important;
        margin-right: 16px!important
    }
}

@media only screen and (max-width:479px) {
    .middle-wrapper {
        padding: 20px 0
    }
    .middle-wrapper h4 {
        font-size: 22px;
        text-align: center;
        margin-bottom: 10px
    }
    .middle-wrapper p {
        text-align: center
    }
    .middle-wrapper .bold-text,
    .middle-wrapper ul {
        display: none
    }
    .middle-wrapper .imp-text {
        margin-top: 20px;
        text-align: center!important;
        font-size: 1.3rem
    }
    .btn.btn-secondary {
        margin-right: 0
    }
    .common-wrapper .tools .details-row {
        margin-top: 20px
    }
    .common-wrapper .tools .details-row .icon-details h3 {
        font-size: 2.3rem
    }
    .common-wrapper .tools p {
        font-size: 1.4rem;
        padding: 0 5%
    }
    .common-wrapper .tools h2 {
        font-size: 2.7rem
    }
    .common-wrapper .investor h2 {
        font-size: 2.7rem
    }
    .common-wrapper .investor .video-title {
        font-size: 1.65rem
    }
    .common-wrapper .video-wrapper {
        padding: 0 3%;
        margin-top: 30px
    }
    .common-wrapper .video-wrapper .video-info .video-icon img {
        margin-bottom: 10px
    }
    .common-wrapper .video-wrapper.owl-carousel .owl-prev,
    .common-wrapper .video-wrapper.owl-carousel .owl-next {
        bottom: 25%;
        background-size: contain
    }
    .common-wrapper .video-wrapper.owl-carousel .owl-prev {
        left: 10px;
        width: 30px;
        height: 30px
    }
    .common-wrapper .video-wrapper.owl-carousel .owl-next {
        right: -5px;
        width: 30px;
        height: 30px
    }
}

header {
    width: 100%;
    position: relative;
    z-index: 10
}

header .search-box {
    position: absolute;
    top: 6px;
    right: 60%;
    width: auto;
    display: none;
    z-index: 100;
    line-height: normal
}

header .search-box input[type="search"] {
    width: 280px;
    padding: 5px 10px;
    margin-left: 12px;
    border: 1px solid #235893;
    outline: 0;
    margin-right: 0;
    padding-right: 73px
}

header .search-box button[type="button"] {
    width: auto;
    height: 100%;
    padding: 4px 10px;
    background: #235893;
    color: #fff;
    margin-left: -6px;
    border: 1px solid #235893;
    outline: 0;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0
}

header .header-row1 {
    height: 48px;
    line-height: 48px;
    background-color: #2f68ae;
    padding: 4px 35px;
    width: 100%;
    font-family: "Roboto", sans-serif;
    font-size: 1.4rem;
    color: #fff;
    float: left;
    clear: both
}

header .header-row2 {
    height: 70px;
    width: 100%;
    background-color: #005899;
    padding: 0 15px;
    float: left;
    clear: both;
    -webkit-transition: .4s all;
    transition: .4s all
}

header .header-row2 .logo {
    position: relative;
    top: -25px;
    -webkit-transition: .4s all;
    transition: .4s all
}

header .header-row2 .logo img {
    width: 100%;
    height: auto
}

header .header-row2 .hamburgermenu {
    position: relative;
    display: none;
    top: 20px;
    left: 10px;
    -webkit-transition: .4s all;
    transition: .4s all
}

header .header-row2 .hamburgermenu span {
    -webkit-transition: .4s all;
    transition: .4s all;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    width: 29px;
    height: 3px;
    background-color: #fff;
    position: absolute
}

header .header-row2 .hamburgermenu span:first-child {
    top: -8px
}

header .header-row2 .hamburgermenu span:nth-child(2) {
    top: 0
}

header .header-row2 .hamburgermenu span:last-child {
    top: 8px
}

header .header-row2 .hamburgermenu.change span {
    width: 26px
}

header .header-row2 .hamburgermenu.change span:first-child {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-transform: translate(-4px, 3px) rotate(-51deg);
    transform: translate(-4px, 3px) rotate(-51deg)
}

header .header-row2 .hamburgermenu.change span:nth-child(2) {
    opacity: 0
}

header .header-row2 .hamburgermenu.change span:last-child {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-transform: translate(-4px, -13px) rotate(48deg);
    transform: translate(-4px, -13px) rotate(48deg)
}

header .header-row2 .main_menu ul .nav-dropdown li a {
    background-color: #005899;
    display: block;
    white-space: normal
}

header .header-row2 .main_menu ul .nav-dropdown li a:hover {
    background: #2068a9;
    color: #fff
}

header .header-row2 .main_menu ul .nav-dropdown .nav-dropdown {
    left: 100%;
    top: 0
}

header .header-row2 .main_menu ul ul {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    right: 0;
    width: 220px
}

header .header-row2 .main_menu ul ul li {
    float: none;
    padding: 0;
    font-size: 1.5rem
}

header .header-row2 .main_menu ul ul li a {
    padding: 7px 10px;
    line-height: normal
}

header .header-row2 .main_menu ul li:hover>ul {
    display: block
}

header .header-row2 nav ul li {
    float: left;
    font-family: 'robotoregular';
    font-size: 1.6rem;
    color: #fff;
    padding: 20px 25px 0;
    line-height: 50px;
    letter-spacing: .6px;
    position: relative
}

header .header-row2 nav ul li a {
    color: #fff
}

header .header-row2 .side-div {
    float: right;
    height: 58px;
    line-height: 58px;
    position: relative;
    top: 25px;
    z-index: 5
}

header .header-row2 .side-div .transact-online {
    width: 156px;
    background-color: #973d30;
    color: #fff;
    text-align: center;
    float: left;
    font-size: 17px
}

header .header-row2 .side-div .transact-online a {
    color: #fff!important
}

header .header-row2 .side-div .dropdown2 {
    width: 125px;
    background-color: #333;
    float: left
}

header .header-row2 .side-div .dropdown2 select {
    color: #fff;
    font-size: 15px;
    background: url(../images/white-down-arrow.png) no-repeat right 10px center #333;
    width: 125px;
    border-bottom: 0
}

header .header-row2 .side-div .ddTitleText .ddlabel {
    overflow: hidden;
    white-space: nowrap;
    color: #fff;
    text-overflow: ellipsis;
    width: 125px;
    display: block;
    padding: 0 25px 0 15px
}

header .header-row2 .side-div .arrow {
    background: url("../images/white-down-arrow.png") no-repeat right center #333;
    position: absolute;
    right: 10px;
    height: 15px;
    width: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

header .header-row2 .side-div #doc_select_child {
    left: 0;
    right: 0;
    background-color: #333;
    padding: 15px
}

header .header-row2 .side-div .enabled._msddli_ {
    line-height: normal;
    padding: 7px;
    color: #fff
}

header .header-row2 .side-div .ddlabel {
    cursor: pointer
}

header .call-search {
    display: block;
    padding-right: 35px;
    position: relative
}

header .call-search .call,
header .call-search .search {
    display: block;
    position: relative;
    display: inline-block;
    width: 25px;
    height: 25px
}

header .call-search .call:before,
header .call-search .search:before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 25px;
    height: 25px;
    display: inline-block
}

header .call-search .call {
    margin-right: 34px
}

header .call-search .call:before {
    background: url("../images/list1-sprite.png") no-repeat -15px -16px
}

header .call-search .search {
    cursor: pointer
}

header .call-search .search:before {
    background: url("../images/list1-sprite.png") no-repeat -127px -11px
}

header .call-search:after {
    content: '';
    position: absolute;
    height: 35px;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
    top: 4px;
    right: 0
}

header p {
    margin-right: 70px
}

.dropdown {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url("../images/down-arrow.png") no-repeat right center #2f68ae;
    color: #fff;
    padding: 0 20px 0 35px;
    margin: 0 70px 0 0;
    outline: 0;
    height: 45px;
    font-size: 14px;
    letter-spacing: 1px
}

.header_link a {
    padding: 0 5px 0 20px;
    margin: 0 10px 0 0;
    color: #fff
}

.align-right {
    float: right
}

.align-left {
    float: left
}

.fixedActice {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 3;
    -webkit-transition: .4s all;
    transition: .4s all
}

.logo-fixed {
    width: 85px;
    top: 4px!important;
    -webkit-transition: .4s all;
    transition: .4s all;
    -webkit-animation: slide-down .7s;
    animation: slide-down .7s
}

.side-div-fixed {
    top: 5px!important;
    -webkit-transition: .4s all;
    transition: .4s all
}

.hamburgermenu-fixed {
    top: 35px!important;
    right: 50px!important
}

.nav-fixed {
    -webkit-animation: slide-left .7s;
    animation: slide-left .7s
}

@-webkit-keyframes slide-down {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slide-down {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes slide-left {
    0% {
        opacity: 1;
        -webkit-transform: translateX(3%);
        transform: translateX(3%)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes slide-left {
    0% {
        opacity: 1;
        -webkit-transform: translateX(3%);
        transform: translateX(3%)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@-webkit-keyframes slide-fade {
    0% {
        opacity: 0;
        -webkit-transform: translateX(10%);
        transform: translateX(10%)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes slide-fade {
    0% {
        opacity: 0;
        -webkit-transform: translateX(10%);
        transform: translateX(10%)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@media only screen and (max-width:1340px) {
    header .header-row2 nav ul li {
        padding: 20px 18px 0;
        font-size: 1.5rem
    }
}

@media only screen and (max-width:1255px) {
    header .header-row1 {
        padding: 4px 15px
    }
    header .header-row2 .main_menu ul ul {
        width: auto;
        display: block;
        position: static
    }
    header .header-row2 .main_menu ul ul li a {
        padding: 10px 30px;
        line-height: normal
    }
    header .header-row2 .side-div {
        top: 70px
    }
    header .header-row2 .hamburgermenu {
        display: inline-block;
        position: absolute;
        right: 45px;
        top: 82px;
        left: auto;
        cursor: pointer
    }
    header .header-row2 nav {
        display: none;
        position: absolute;
        z-index: 10;
        background-color: #235893;
        top: 118px;
        width: 300px;
        right: 0;
        text-align: left;
        height: 100vh;
        overflow: scroll;
        padding-bottom: 70px
    }
    header .header-row2 nav ul {
        width: auto;
        z-index: 10
    }
    header .header-row2 nav ul li {
        display: block;
        width: 100%;
        padding: 0;
        line-height: 60px
    }
    header .header-row2 nav ul li a {
        display: block;
        padding: 0 25px;
        border-bottom: 1px solid #2b689d
    }
    header .header-row2 nav ul li a:hover {
        background: #1268b4
    }
    .side-div-fixed {
        top: 70px!important;
        -webkit-transition: .4s all;
        transition: .4s all
    }
    .call-search-fixed {
        top: 17px!important;
        right: 45px!important;
        position: fixed!important;
        z-index: 10;
        -webkit-animation: slide-fade .5s;
        animation: slide-fade .5s
    }
    .call-search-fixed:after {
        width: 0!important
    }
    .nav-fixed {
        top: 70px!important
    }
}

@media only screen and (max-width:650px) {
    header .call-search {
        padding-right: 20px
    }
    header p {
        margin-right: 30px
    }
    .drop1 {
        padding-left: 0px
    }
    .header_link a {
        font-size: 1rem;
        padding: 0 5px 0 0px
    }
    .oldWebsiteTxt {
        font-size: 1rem;
        width: 60px;
        margin-top: 2px
    }
}

@media only screen and (max-width:1024px) {
    .banner {
        margin-top: 40px!important
    }
    header p {
        display: none
    }
    header .header-row1 {
        height: 35px
    }
    header .header-row1 img {
        height: 25px
    }
    header .header-row2 {
        height: 50px;
        padding: 0
    }
    header .header-row2 nav {
        top: 85px;
        overflow: scroll;
        width: 100%;
        height: calc(100vh - 85px);
        left: 0;
        right: 0
    }
    header .header-row2 nav ul li a {
        padding: 0 15px
    }
    header .header-row2 .hamburgermenu {
        top: 60px
    }
    header .header-row2 .side-div {
        top: 85px;
        line-height: 48px;
        position: absolute;
        right: 0;
        width: 100%;
        z-index: -1
    }
    header .header-row2 .side-div .transact-online {
        width: 50%
    }
    header .header-row2 .side-div .dropdown2 {
        width: 50%
    }
    header .header-row2 .side-div .ddTitleText .ddlabel {
        width: 100%
    }
    header .header-row2 .side-div #doc_select_msdd {
        overflow: hidden;
        width: 100%!important
    }
    header .header-row2 .logo {
        top: -25px;
        width: 90px;
        z-index: 6;
        left: 15px
    }
    header .call-search {
        position: fixed;
        top: 40px;
        right: 60px;
        z-index: 100
    }
    header .call-search:after {
        width: 0
    }
    header .search-box {
        right: 0;
        top: 44px
    }
    header .search-box input[type="text"] {
        width: 190px
    }
    header .header-row1 {
        line-height: 28px
    }
    .logo-fixed {
        width: 60px!important;
        top: 4px!important
    }
    .side-div-fixed {
        top: 50px!important
    }
    .hamburgermenu-fixed {
        top: 25px!important;
        right: 40px!important
    }
    .call-search-fixed {
        top: 4px!important;
        right: 30px!important
    }
    .nav-fixed {
        top: 50px!important;
        height: calc(100vh - 50px)!important;
        -webkit-animation: none!important;
        animation: none!important
    }
    header .header-row2 .main_menu ul .nav-dropdown .nav-dropdown {
        margin-left: 20px
    }
}

@font-face {
    font-family: 'robotoblack';
    font-display: auto;
    src: url("../fonts/roboto-black-webfont.woff2") format("woff2"), url("../fonts/roboto-black-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal
}

@font-face {
    font-family: 'robotobold';
    font-display: auto;
    src: url("../fonts/roboto-bold-webfont.woff2") format("woff2"), url("../fonts/roboto-bold-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal
}

@font-face {
    font-family: 'robotolight';
    font-display: auto;
    src: url("../fonts/roboto-light-webfont.woff2") format("woff2"), url("../fonts/roboto-light-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal
}

@font-face {
    font-family: 'robotomedium';
    font-display: auto;
    src: url("../fonts/roboto-medium-webfont.woff2") format("woff2"), url("../fonts/roboto-medium-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal
}

@font-face {
    font-family: 'robotoregular';
    font-display: auto;
    src: url("../fonts/roboto-regular-webfont.woff2") format("woff2"), url("../fonts/roboto-regular-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal
}

@font-face {
    font-family: 'robotothin';
    font-display: auto;
    src: url("../fonts/roboto-thin-webfont.woff2") format("woff2"), url("../fonts/roboto-thin-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    border: 0;
    -webkit-border-radius: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

html {
    width: 100%;
    height: 100%;
    -webkit-text-size-adjust: 100%;
    font-size: 62.5%
}

.rs {
    font-family: 'rupee_foradian-webfont'
}

body {
    height: 100%;
    font-size: 1.4rem;
    overflow-x: hidden;
    font-family: "robotoregular"
}

a:not(.btn),
a:not(.btn):hover {
    text-decoration: none;
    outline: 0
}

a:not(.btn).selected {
    cursor: default
}

a:not(.btn):hover.selected {
    text-decoration: none
}

img {
    border: 0
}

table,
table tr td,
table tr th {
    border: 0
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

.clear {
    font-size: 1%;
    height: 0;
    line-height: 0;
    width: 0;
    float: none;
    clear: both
}

input {
    outline: 0
}

section {
    width: 100%;
    clear: left
}

input[type=submit],
input[type=button] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: 0;
    color: #fff;
    cursor: pointer
}

input::-ms-clear {
    display: none
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type="number"] {
    -moz-appearance: textfield
}

body,
article,
aside,
details,
figcaption,
figure,
footer,
div,
header,
menu,
nav,
section,
ul,
h1,
h2,
h3,
ul,
li,
h6,
form {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none
}

#step1 .steps_content .form_rows .cols_left.active .inputstyle-form,
#step1 .steps_content .form_rows .cols_right.active .inputstyle-form,
#step1 .steps_content .form_rows .cols_full_wd.active .inputstyle-form,
.steps_content .form_rows .cols_full_wd .input_group.monthalyExp.active .inputstyle-form,
.steps_content .form_rows .cols_full_wd .input_group.grossSave.active .inputstyle-form {
    border-bottom: 1px solid red
}

body {
    font-family: "Roboto", sans-serif
}

*:focus {
    outline: 0
}

a {
    text-decoration: none;
    border: 0;
    -webkit-transition: all .2s ease-out 0s;
    transition: all .2s ease-out 0s;
    color: #015898
}

a:hover {
    -webkit-transition: all .2s ease-out 0s;
    transition: all .2s ease-out 0s;
    color: #005899
}

.clr {
    clear: both
}

select::-ms-expand {
    display: none
}

form {
    margin: 0;
    padding: 0;
    height: 100%
}

img {
    border: 0;
    margin: 0;
    padding: 0
}

.scale {
    max-width: 100%;
    height: auto;
    width: auto9
}

#main-wrap {
    position: relative
}

#main-wrap .bodyinner {
    max-width: 1290px;
    margin: 0 auto
}

header {
    background: url(../images/bg-header.jpg) center top repeat-x
}

header .headerimg {
    text-align: center
}

.breadcrums {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: #7b7b7b;
    font-weight: 500;
    margin: 20px 0 45px
}

.breadcrums span {
    margin: 0 8px
}

.breadcrums a {
    color: #7b7b7b
}

small {
    font-size: 14px;
    color: #727272;
    line-height: 18px;
    font-weight: 400
}

.border-bottomall {
    border-bottom: 3px solid #fafafa
}

h1 {
    color: #015898;
    font-family: "Roboto", sans-serif;
    font-size: 38px;
    font-weight: 500;
    width: 510px
}

h1 span {
    font-size: 14px;
    color: #323232;
    display: block;
    margin-top: 10px;
    font-weight: 400
}

h4 {
    font-size: 24px;
    color: #015898;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    text-align: center;
    padding: 0;
    margin: 0
}

h3 {
    font-size: 36px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    color: #5ccbfa;
    position: relative;
    margin-bottom: 50px;
    text-align: center
}

h3 span {
    color: #015898;
    text-transform: capitalize
}

h3:after {
    content: '';
    position: absolute;
    height: 5px;
    background: #a3352a;
    width: 40px;
    bottom: -25px;
    left: 0;
    right: 0;
    margin: 0 auto
}

h1.seoTitle {
    font-size: 36px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    color: #5ccbfa;
    position: relative;
    margin-bottom: 50px;
    text-align: center;
    width: auto
}

h1.seoTitle span {
    color: #015898;
    text-transform: capitalize;
    font-size: 3.6rem;
    display: inline-block
}

h1.seoTitle:after {
    content: '';
    position: absolute;
    height: 5px;
    background: #a3352a;
    width: 40px;
    bottom: -25px;
    left: 0;
    right: 0;
    margin: 0 auto
}

.inputstyle-form {
    border: 0;
    border-bottom: 1px solid #a5a7a9;
    background: 0;
    font-size: 22px;
    color: #333;
    font-weight: 400;
    width: 100%;
    padding: 0 2% 12px 0;
    margin: 30px 0 0;
    letter-spacing: -0.5px
}

.txtareastyle-form {
    border: 1px solid #a5a7a9;
    background: 0;
    font-size: 22px;
    color: #333;
    font-weight: 400;
    width: 100%;
    padding: 12px;
    margin: 30px 0 0;
    font-family: "Roboto", sans-serif
}

.clr2-hide {
    clear: both
}

.redstar {
    color: #f10303
}

.redstar-txt {
    font-size: 12px;
    color: #7b7b7b;
    font-weight: 400;
    margin: 35px 0
}

.redstar-txt span {
    font-size: 22px!important
}

.btn-sbmit {
    padding: 15px 60px;
    margin: 0;
    font-weight: 600;
    background: #015898;
    font-size: 14px;
    text-transform: uppercase;
    border: 0;
    color: #fff;
    border-radius: 30px;
    -webkit-transition: all .4s ease-out 0s;
    transition: all .4s ease-out 0s;
    cursor: pointer
}

.btn-sbmit:hover {
    background: #033f6b;
    color: #fff
}

.btn-clear {
    padding: 15px 60px;
    margin: 0;
    font-weight: 600;
    border: 2px solid #015898;
    font-size: 14px;
    text-transform: uppercase;
    border: 0;
    color: #015898;
    border-radius: 30px;
    -webkit-transition: all .4s ease-out 0s;
    transition: all .4s ease-out 0s;
    cursor: pointer
}

.btn-clear:hover {
    background: #033f6b
}

.drop1 a:hover {
    color: #fff
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

@keyframes fadeOut {
    from {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut
}

.tophead-wrap {
    padding: 0 0 20px;
    margin: 0 0 70px;
    border-bottom: 1px solid #dedede;
    display: inline-block
}

.tophead-wrap h1 {
    color: #015898;
    font-family: "Roboto", sans-serif;
    font-size: 38px;
    font-weight: 500;
    float: left;
    width: 510px
}

.tophead-wrap h1 span.productTitle {
    color: #015898;
    font-family: "Roboto", sans-serif;
    font-size: 38px;
    font-weight: 500;
    float: left;
    width: 510px
}

.tophead-wrap h1 span {
    font-size: 14px;
    color: #323232;
    display: block;
    margin-top: 10px;
    font-weight: 400
}

.regular-growth {
    float: left;
    position: relative;
    margin: 0 1.5% 0
}

.regular-growth .select1 {
    cursor: pointer;
    display: inline-block;
    position: relative;
    font-size: 14px;
    color: #323232;
    height: 40px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    width: 240px
}

.regular-growth .select1 .select-hidden {
    display: none;
    visibility: hidden;
    padding-right: 10px
}

.regular-growth .select1 .select-styled1 {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #f5f5f5;
    padding: 3px 35px 5px 15px;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    background: #f5f5f5 url(../images/arrowslc.png) no-repeat scroll 100% 0;
    width: 100%
}

.select {
    cursor: pointer;
    display: inline-block;
    position: relative;
    font-size: 14px;
    color: #323232;
    width: 160px;
    height: 40px;
    font-family: "Roboto", sans-serif;
    font-weight: 400
}

.select .select-hidden {
    display: none;
    visibility: hidden;
    padding-right: 10px
}

.select .select-styled {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #f5f5f5;
    padding: 3px 35px 5px 15px;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in
}

.select .select-styled:after {
    content: "";
    width: 0;
    height: 0;
    padding: 5px;
    border: solid #7a7a7a;
    border-width: 0 1px 1px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 10px;
    right: 10px;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in
}

.select .select-styled.active {
    background-color: #e9e8e8
}

.select .select-styled.active:after {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
    top: 16px
}

.select .select-options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: #e9e8e8
}

.select .select-options li {
    margin: 0;
    padding: 6px 0;
    text-indent: 15px;
    border-top: 1px solid #f5f5f5;
    -webkit-transition: all .15s ease-in;
    transition: all .15s ease-in
}

.select .select-options li:hover {
    color: #000;
    background: #e9e8e8
}

.current-nav-box {
    float: left;
    width: auto
}

.current-nav-box .current-nav {
    color: #a3352a;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 22px;
    float: left;
    margin-right: 20px
}

.current-nav-box .current-nav small {
    color: #727272;
    font-size: 14px;
    font-weight: 400
}

.current-nav-box .current-nav-price {
    font-size: 24px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    line-height: 22px;
    color: #015898;
    float: left
}

.current-nav-box .current-nav-price small {
    font-size: 14px;
    font-weight: 400;
    position: relative;
    padding: 0 0 0 20px
}

.current-nav-box .current-nav-price small .blue-navcolor {
    color: #015898
}

.current-nav-box .current-nav-price small .arrow-green {
    color: #108961;
    font-size: 18px;
    -webkit-transform: rotate(132deg);
    transform: rotate(132deg);
    position: absolute;
    left: 0;
    top: -2px
}

.tipbox {
    position: relative;
    display: inline-block
}

.riskprofile .tipbox .showtip {
    left: 70px;
    top: 40px
}

.riskprofile .tipbox .showtip:after {
    left: 120px
}

.tipbox .showtip {
    display: none;
    width: 360px;
    background-color: #eaeaea;
    color: #010101;
    text-align: left;
    border-radius: 6px;
    padding: 20px 15px;
    position: absolute;
    z-index: 5;
    top: 30px;
    left: 0;
    margin-left: -200px;
    opacity: 0;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    -webkit-box-shadow: 4px -2px 5px 0 rgba(0, 0, 0, 0.1);
    -o-box-shadow: 4px -2px 5px 0 rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 4px -2px 5px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 4px -2px 5px 0 rgba(0, 0, 0, 0.1)
}

.tipbox .showtip .riskometer-head {
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    margin: 20px 0 20px
}

.tipbox .showtip .riskomtrimg {
    text-align: center;
    width: 90%;
    margin: 0 auto 20px
}

.tipbox .showtip .headline-tip {
    font-size: 14px
}

.tipbox .showtip ul {
    padding: 0;
    margin: 10px 0 20px;
    width: 100%
}

.tipbox .showtip ul li {
    list-style: none;
    font-size: 12px;
    position: relative;
    display: block;
    float: none;
    width: 100%;
    line-height: 17px;
    margin: 0 0 8px;
    padding: 0 0 0 17px
}

.tipbox .showtip ul li:before {
    content: '';
    width: 8px;
    height: 8px;
    background: #04cdff;
    position: absolute;
    left: 0;
    top: 4px;
    border-radius: 100%
}

.tipbox .showtip:after {
    content: "";
    position: absolute;
    top: -22px;
    left: 50%;
    margin-left: 14px;
    border-width: 12px;
    border-style: solid;
    border-color: transparent transparent #eaeaea transparent
}

.tipbox:hover .showtip {
    display: block;
    opacity: 1
}

.investnow {
    float: right;
    text-transform: uppercase;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 14px;
    margin: 0
}

.investnow a {
    background: #015898;
    color: #fff;
    padding: 13px 34px;
    border-radius: 30px;
    overflow: hidden
}

.investnow .addto-fav {
    padding: 0;
    margin: 22px 0 0
}

.investnow .addto-fav a {
    background: 0;
    color: #015898;
    padding: 3px 0 0 28px;
    border-radius: 0;
    position: relative;
    font-family: "robotomedium";
    font-size: 13px
}

.investnow .addto-fav a:before {
    content: '\f005';
    position: absolute;
    left: 0;
    top: 0;
    width: 19px;
    height: 19px;
    background: #015898;
    padding: 6px 0 0 6px;
    color: #ffed00;
    font-family: FontAwesome;
    margin: 0;
    border-radius: 100%;
    -webkit-transition: all .2s ease-out 0s;
    transition: all .2s ease-out 0s
}

.investnow .addto-fav a:hover {
    color: #000
}

.investnow .addto-fav a:hover:before {
    background: #000
}

.hvr-shutter-out-vertical {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    background: #e1e1e1;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: .3s;
    transition-duration: .3s
}

.hvr-shutter-out-vertical:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2098d1;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out
}

.hvr-shutter-out-vertical:hover,
.hvr-shutter-out-vertical:focus,
.hvr-shutter-out-vertical:active {
    color: #fff
}

.hvr-shutter-out-vertical:hover:before,
.hvr-shutter-out-vertical:focus:before,
.hvr-shutter-out-vertical:active:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1)
}

.funds-invest-border {
    padding-bottom: 40px;
    margin-bottom: 40px;
    clear: both
}

.funds-invest-wrap {
    max-width: 1250px
}

.funds-invest-wrap .fundleft,
.funds-invest-wrap .invest-right {
    width: 44%;
    float: left
}

.funds-invest-wrap .fundleft h2,
.funds-invest-wrap .invest-right h2 {
    font-size: 36px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    color: #5ccbfa;
    position: relative;
    margin-bottom: 65px
}

.funds-invest-wrap .fundleft h2 span,
.funds-invest-wrap .invest-right h2 span {
    color: #015898
}

.funds-invest-wrap .fundleft h2:after,
.funds-invest-wrap .invest-right h2:after {
    content: '';
    position: absolute;
    height: 5px;
    background: #a3352a;
    width: 40px;
    bottom: -25px;
    left: 0
}

.funds-invest-wrap .invest-right {
    float: right
}

.funds-invest-wrap .invest-right .heavy {
    font-weight: 600
}

.funds-invest-wrap .invest-right ul {
    padding: 0;
    margin: 15px 0 0 0
}

.funds-invest-wrap .invest-right ul li {
    list-style: disc;
    list-style-position: outside;
    font-size: 20px;
    font-weight: 400;
    color: #015898;
    margin: 0 0 10px 18px;
    padding: 0 0 0 5px;
    line-height: 22px
}

.funds-invest-wrap .invest-right ul li span {
    color: #333;
    font-size: 16px
}

.funds-invest-wrap .fundstxt {
    font-family: "Roboto", sans-serif;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px
}

.funds-invest-wrap .fundstxt .riskprofile {
    margin: 30px 0 0;
    color: #727272
}

.funds-invest-wrap .fundstxt .riskprofile span {
    color: #005ca5
}

.funds-invest-wrap .fundstxt .riskprofile .info-icon {
    background: #efefef;
    height: 28px;
    width: 28px;
    margin-left: 10px;
    display: inline-block;
    text-align: center;
    border-radius: 100%;
    font-style: italic;
    font-family: "Times New Roman", serif;
    font-size: 20px;
    font-weight: bold
}

.info-icon1 {
    background: #efefef;
    height: 28px;
    width: 28px;
    margin-left: 5px;
    display: inline-block;
    text-align: center;
    border-radius: 100%;
    font-style: italic;
    font-family: "Times New Roman", serif;
    font-size: 20px;
    font-weight: bold
}

.scheme-wrap {
    max-width: 1055px;
    margin: 0 auto 70px;
    font-family: "Roboto", sans-serif
}

.scheme-wrap .scheme-graph {
    background: #e4f4fb;
    border-radius: 20px;
    padding: 40px
}

.scheme-wrap .scheme-graph .graphimg {
    text-align: center
}

.scheme-wrap .scheme-graph .scheme-filter .returns,
.scheme-wrap .scheme-graph .scheme-filter .invested {
    color: #015898;
    font-size: 16px;
    font-weight: 600
}

.scheme-wrap .scheme-graph .scheme-filter .returns {
    float: left;
    width: 470px
}

.scheme-wrap .scheme-graph .scheme-filter .returns .returns-from,
.scheme-wrap .scheme-graph .scheme-filter .returns .momthlysip,
.scheme-wrap .scheme-graph .scheme-filter .returns .ofrs {
    float: left
}

.scheme-wrap .scheme-graph .scheme-filter .returns .returns-from,
.scheme-wrap .scheme-graph .scheme-filter .returns .ofrs {
    margin-top: 10px
}

.scheme-wrap .scheme-graph .scheme-filter .returns .ofrs {
    margin: 10px 20px 0
}

.scheme-wrap .scheme-graph .scheme-filter .invested {
    float: right;
    font-family: "Roboto", sans-serif
}

.scheme-wrap .scheme-graph .scheme-filter .invested .invested-txt,
.scheme-wrap .scheme-graph .scheme-filter .invested .invested-select {
    float: left
}

.scheme-wrap .scheme-graph .scheme-filter .invested .invested-txt {
    margin-top: 10px
}

.scheme-wrap .scheme-graph .scheme-filter .invested .applybtn {
    font-weight: 600;
    color: #015898;
    border: 2px solid #015898;
    padding: 0;
    margin: 0;
    text-align: center;
    width: 125px;
    float: right;
    border-radius: 20px;
    -webkit-transition: all .2s ease-out 0s;
    transition: all .2s ease-out 0s;
    height: 40px;
    text-transform: uppercase;
    background: 0;
    font-size: 14px;
    cursor: pointer
}

.scheme-wrap .scheme-graph .scheme-filter .invested .applybtn:hover {
    background-color: #015898;
    color: #fff
}

.scheme-wrap .scheme-graph .scheme-filter .monthlysip-amt {
    background: #aceafc;
    height: 40px;
    border: 0;
    color: #323232;
    float: left;
    width: 75px;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px
}

.scheme-wrap .scheme-graph .scheme-filter .select {
    cursor: pointer;
    display: inline-block;
    position: relative;
    font-size: 14px;
    color: #323232;
    width: 140px;
    height: 40px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    margin-left: 18px
}

.scheme-wrap .scheme-graph .scheme-filter .select .select-hidden {
    display: none;
    visibility: hidden;
    padding-right: 10px
}

.scheme-wrap .scheme-graph .scheme-filter .select .select-styled {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #aceafc;
    padding: 12px 15px 5px;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in
}

.scheme-wrap .scheme-graph .scheme-filter .select .select-styled:after {
    content: "";
    width: 0;
    height: 0;
    padding: 5px;
    border: solid #7a7a7a;
    border-width: 0 1px 1px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 12px;
    right: 14px;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in
}

.scheme-wrap .scheme-graph .scheme-filter .select .select-styled.active {
    background-color: #81d7f0
}

.scheme-wrap .scheme-graph .scheme-filter .select .select-styled.active:after {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
    top: 16px
}

.scheme-wrap .scheme-graph .scheme-filter .select .select-options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: #aceafc
}

.scheme-wrap .scheme-graph .scheme-filter .select .select-options li {
    margin: 0;
    padding: 6px 0;
    text-indent: 15px;
    border-top: 1px solid #7fd7f0;
    -webkit-transition: all .15s ease-in;
    transition: all .15s ease-in
}

.scheme-wrap .scheme-graph .scheme-filter .select .select-options li:hover {
    color: #000;
    background: #81d7f0
}

.scheme-wrap .scheme-graph .small {
    color: #727272;
    font-size: 14px;
    font-weight: 400;
    margin: 35px 0 0;
    text-align: center
}

.scheme-wrap a {
    display: block;
    margin: 30px 0 0;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    color: #015898;
    text-decoration: underline
}

.scheme-wrap a:hover {
    text-decoration: none
}

.mininvest-amt-wrap {
    background: #fafafa;
    padding: 55px 0 80px;
    margin-bottom: 65px
}

.mininvest-amt-wrap .mininvest-box {
    font-family: "Roboto", sans-serif
}

.mininvest-amt-wrap .mininvest-box h3 {
    margin-bottom: 70px
}

.mininvest-amt-wrap .mininvest-box .amtwrap {
    padding: 0;
    margin: 0;
    font-weight: 400
}

.mininvest-amt-wrap .mininvest-box .amtwrap ul {
    padding: 0;
    margin: 0;
    text-align: center
}

.mininvest-amt-wrap .mininvest-box .amtwrap ul li {
    list-style: none;
    width: 33%;
    display: inline-block;
    padding-top: 30px;
    font-family: "Roboto", sans-serif;
    border-right: 1px solid #e1e1e1;
    vertical-align: top;
    min-height: 190px
}

.mininvest-amt-wrap .mininvest-box .amtwrap ul li:nth-child(3) {
    border: 0
}

.mininvest-amt-wrap .mininvest-box .amtwrap ul li .amthead {
    font-weight: 600;
    color: #015898;
    font-size: 24px;
    margin-bottom: 25px
}

.mininvest-amt-wrap .mininvest-box .amtwrap ul li .amt {
    position: relative
}

.mininvest-amt-wrap .mininvest-box .amtwrap ul li .amt .rsamt {
    position: relative;
    font-size: 72px;
    font-weight: 100;
    padding: 0 0 0 30px
}

.mininvest-amt-wrap .mininvest-box .amtwrap ul li .amt .rsamt .rsicon {
    font-weight: 300;
    font-size: 60px;
    position: absolute;
    top: 3px;
    left: 0
}

.mininvest-amt-wrap .mininvest-box .amtwrap ul li .amt-sbtxt {
    color: #010101;
    font-weight: 400;
    font-size: 18px
}

.momthlysip,
.invested-select {
    position: relative
}

.momthlysip select,
.momthlysip select.valid,
.invested-select select,
.invested-select select.valid {
    width: 140px;
    height: 40px;
    margin-left: 15px;
    border-bottom: 0!important;
    background: url(../images/arrowslc1.png) no-repeat scroll 100% 0 #aceafc!important;
    padding: 6px 15px 5px!important;
    font-size: 14px
}

.plan-options-border {
    padding-bottom: 80px;
    margin-bottom: 80px
}

.plan-options-wrap {
    max-width: 880px;
    margin: 0 auto
}

.plan-options-wrap .plan-options-small {
    text-align: center;
    margin-top: 20px;
    font-weight: 400
}

.plan-options-wrap h3 {
    margin-bottom: 90px
}

.plan-options-wrap .regular-plan,
.plan-options-wrap .direct-plan {
    float: left;
    width: 335px;
    background: #eeecec;
    border-radius: 10px;
    overflow: hidden
}

.plan-options-wrap .regular-plan .left-bluebox,
.plan-options-wrap .direct-plan .left-bluebox {
    background: #007fca;
    width: 105px;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #fff;
    padding: 65px 0 55px 15px;
    text-transform: uppercase;
    margin-right: 30px;
    float: left;
    min-height: 180px
}

.plan-options-wrap .regular-plan .right-txt,
.plan-options-wrap .direct-plan .right-txt {
    width: 180px;
    float: left
}

.plan-options-wrap .regular-plan .right-txt ul,
.plan-options-wrap .direct-plan .right-txt ul {
    padding: 0;
    margin: 22px 0 0;
    list-style: none
}

.plan-options-wrap .regular-plan .right-txt ul li,
.plan-options-wrap .direct-plan .right-txt ul li {
    font-size: 16px;
    font-weight: 400;
    color: #032437;
    padding-bottom: 5px;
    margin-bottom: 5px
}

.plan-options-wrap .regular-plan .right-txt ul li:not(:last-child),
.plan-options-wrap .direct-plan .right-txt ul li:not(:last-child) {
    border-bottom: 1px solid #757d84
}

.plan-options-wrap .regular-plan .right-txt ul li:last-child,
.plan-options-wrap .direct-plan .right-txt ul li:last-child {
    border: 0
}

.plan-options-wrap .direct-plan {
    float: right
}

.sys-plans-wrap {
    max-width: 1190px;
    margin: 0 auto 75px
}

.sys-plans-wrap h3 {
    margin-bottom: 90px
}

.sys-plans-wrap .sip-swp-plans {
    padding: 0;
    margin: 0
}

.sys-plans-wrap .sip-swp-plans .sip-side,
.sys-plans-wrap .sip-swp-plans .swp-side {
    float: left;
    width: 47%
}

.sys-plans-wrap .sip-swp-plans .swp-side {
    float: right
}

.sys-plans-wrap .plans-table {
    margin-top: 40px;
    border-left: 3px solid #fafafa;
    border-right: 3px solid #fafafa
}

.sys-plans-wrap .plans-table .bluetxt-plan {
    color: #015898;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    padding-left: 25px
}

.sys-plans-wrap .plans-table tr:nth-child(odd) {
    background-color: #fafafa
}

.sys-plans-wrap .plans-table td {
    padding: 20px;
    font-size: 20px;
    font-weight: 300
}

.sys-plans-wrap .plansborder-bottom {
    border-bottom: 3px solid #fafafa;
    margin-top: 25px
}

.sys-plans-wrap .planstable-small {
    color: #727272;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    margin-top: 15px;
    padding: 10px
}

.sys-plans-wrap .stpmargin {
    margin: 40px 0 30px!important
}

.sys-plans-wrap .load-structure {
    max-width: 570px;
    margin: 110px auto 0
}

.sipplan-box .monthly-quatab {
    overflow: hidden;
    width: 324px;
    margin: 35px auto 0;
    padding: 0;
    list-style: none;
    font-family: "Roboto", sans-serif;
    border: 2px solid #dbdbdb;
    border-radius: 60px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.sipplan-box .monthly-quatab li {
    float: left;
    text-align: center;
    margin: 0
}

.sipplan-box .monthly-quatab a {
    position: relative;
    background: #fff;
    padding: 20px 0;
    float: left;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    width: 160px;
    display: block;
    border-radius: 60px;
    color: #9c9c9c
}

.sipplan-box .monthly-quatab .current a {
    background: #04cdff;
    z-index: 3;
    color: #fff;
    -webkit-transition: all .2s ease-out 0s;
    transition: all .2s ease-out 0s
}

.sipplan-box .content {
    background: #fff;
    padding: 0;
    position: relative;
    z-index: 2;
    margin-top: 35px;
    overflow: hidden
}

.sipplan-box .content table {
    border-left: 3px solid #fafafa;
    border-right: 3px solid #fafafa
}

.sipplan-box .content th {
    background-color: #fafafa;
    padding: 12px;
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #595959
}

.sipplan-box .content td {
    padding: 30px 20px;
    font-size: 48px;
    font-weight: 300;
    position: relative;
    border-bottom: 3px solid #fafafa
}

.sipplan-box .content td .siprs {
    position: relative
}

.sipplan-box .content td .siprs .sip-rsicon {
    position: absolute;
    top: 4px;
    left: -24px;
    font-size: 42px
}

.fund-mgr-wrap {
    padding-bottom: 0;
    margin-bottom: 50px
}

.fund-mgr-wrap h3 {
    margin-bottom: 90px
}

.download-wrap {
    max-width: 1010px;
    margin: 0 auto 40px
}

.download-wrap h3 {
    margin-bottom: 90px
}

.download-wrap .download-box {
    padding: 0;
    margin: 0
}

.download-wrap .download-box ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: justify;
    align-content: space-between
}

.download-wrap .download-box li {
    position: relative;
    margin: 0 0 30px;
    width: 33%;
    list-style: none
}

.download-wrap .download-box li a {
    color: #015898;
    padding: 10px 0 10px 20px;
    display: block
}

.download-wrap .download-box li a:hover,
.download-wrap .download-box li a:hover:before {
    color: #973d30
}

.download-wrap .download-box li a:before {
    content: '\f1c1';
    position: relative;
    left: 6px;
    top: 5px;
    width: 30px;
    height: 40px;
    font-family: FontAwesome;
    font-size: 22px;
    color: #015898;
    font-weight: 100;
    margin-right: 10px
}

.navsdivi-wrap {
    padding: 0;
    margin: 0 0 60px 0
}

.navs-divi-container {
    background: #fafafa;
    padding: 45px 0;
    margin-top: 20px
}

.navdivi-box .navs-tab {
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: "Roboto", sans-serif;
    border: 2px solid #dbdbdb;
    border-radius: 60px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.navdivi-box .navs-tab li {
    float: left;
    text-align: center;
    width: 50%;
    margin: 0;
    border-radius: 60px;
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.navdivi-box .navs-tab a {
    position: relative;
    padding: 16px 0;
    float: left;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    width: 100%;
    display: block;
    color: #9c9c9c
}

.navdivi-box .navs-tab .active {
    background: #04cdff
}

.navdivi-box .navs-tab .active a {
    color: #fff
}

.navdivi-box .content-navs {
    padding: 0;
    position: relative;
    z-index: 2;
    margin-top: 70px
}

.navdivi-box .content-navs.nri-corner-faq {
    margin-top: 30px
}

.navdivi-box .content-navs .select-cathead {
    font-family: "Roboto", sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #333;
    display: block;
    letter-spacing: -1px
}

.navdivi-box .content-navs .fund-catname-wrap {
    padding: 0;
    margin: 45px 0 10px;
    width: 900px
}

.navdivi-box .content-navs .fund-catname-wrap .fund-cat,
.navdivi-box .content-navs .fund-catname-wrap .fund-name {
    margin-bottom: 30px
}

.navdivi-box .content-navs .fund-catname-wrap .fund-cat .select,
.navdivi-box .content-navs .fund-catname-wrap .fund-name .select {
    width: 100%;
    font-size: 22px;
    color: #015898
}

.navdivi-box .content-navs .fund-catname-wrap .fund-cat .select .select-styled,
.navdivi-box .content-navs .fund-catname-wrap .fund-name .select .select-styled {
    border-bottom: 1px solid #a5a7a9;
    padding: 7px 35px 10px 10px;
    background: 0
}

.navdivi-box .content-navs .fund-catname-wrap .fund-cat .select .select-styled.active,
.navdivi-box .content-navs .fund-catname-wrap .fund-name .select .select-styled.active {
    background: #fff
}

.navdivi-box .content-navs .fund-catname-wrap .fund-cat .select .select-options,
.navdivi-box .content-navs .fund-catname-wrap .fund-name .select .select-options {
    font-size: 18px;
    background: #fafafa
}

.navdivi-box .content-navs .fund-catname-wrap .fund-cat .select .select-options li,
.navdivi-box .content-navs .fund-catname-wrap .fund-name .select .select-options li {
    text-indent: 10px;
    border-top: 1px solid #fff
}

.navdivi-box .content-navs .fund-catname-wrap .fund-cat .select .select-options li:hover,
.navdivi-box .content-navs .fund-catname-wrap .fund-name .select .select-options li:hover {
    background: #fff
}

.navdivi-box .content-navs .fund-catname-wrap .fund-cat .select-head-funds-divi,
.navdivi-box .content-navs .fund-catname-wrap .fund-name .select-head-funds-divi {
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    color: #333;
    margin: 20px 0;
    letter-spacing: -1px
}

.navdivi-box .content-navs .fund-catname-wrap .fund-cat {
    width: 45%;
    float: left
}

.navdivi-box .content-navs .fund-catname-wrap .fund-cat .datepicker-from,
.navdivi-box .content-navs .fund-catname-wrap .fund-cat .datepicker-to {
    width: 45%;
    text-align: right;
    position: relative
}

.navdivi-box .content-navs .fund-catname-wrap .fund-cat .datepicker-from input,
.navdivi-box .content-navs .fund-catname-wrap .fund-cat .datepicker-to input {
    border-bottom: 1px solid #a5a7a9;
    padding-bottom: 8px;
    width: 100%;
    position: relative;
    z-index: 1;
    background: transparent
}

.navdivi-box .content-navs .fund-catname-wrap .fund-cat .datepicker-from span,
.navdivi-box .content-navs .fund-catname-wrap .fund-cat .datepicker-to span {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: #333;
    font-size: 18px;
    display: block;
    text-align: left;
    margin-bottom: 10px
}

.navdivi-box .content-navs .fund-catname-wrap .fund-cat .datepicker-from .datepicker1,
.navdivi-box .content-navs .fund-catname-wrap .fund-cat .datepicker-to .datepicker1 {
    width: 100%;
    font-size: 18px;
    color: #015898;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    padding: 8px 0;
    margin: 0;
    background: transparent;
    border: 0;
    position: relative;
    z-index: 2
}

.navdivi-box .content-navs .fund-catname-wrap .fund-cat .datepicker-from .calicon,
.navdivi-box .content-navs .fund-catname-wrap .fund-cat .datepicker-to .calicon {
    position: absolute;
    right: 0;
    bottom: 6px;
    color: #015898;
    font-size: 22px;
    z-index: 1;
    cursor: pointer
}

.navdivi-box .content-navs .fund-catname-wrap .fund-cat .datepicker-from {
    text-align: left
}

.navdivi-box .content-navs .fund-catname-wrap .fund-cat .datepicker-from {
    float: left
}

.navdivi-box .content-navs .fund-catname-wrap .fund-cat .datepicker-to {
    float: right
}

.navdivi-box .content-navs .fund-catname-wrap .fund-type {
    float: right
}

.navdivi-box .content-navs .fund-catname-wrap .fund-name {
    width: 100%;
    float: left;
    font-family: "Roboto", sans-serif
}

.navdivi-box .content-navs .fund-catname-wrap .fund-name input[type=checkbox]:not(old) {
    width: 40px;
    margin: 45px 0 0;
    padding: 0;
    opacity: 0;
    cursor: pointer
}

.navdivi-box .content-navs .fund-catname-wrap .fund-name input[type=checkbox]:not(old)+label {
    display: inline-block;
    margin-left: -2em;
    line-height: 1.2em;
    color: #333;
    font-size: 22px;
    cursor: pointer;
    letter-spacing: -1px
}

.navdivi-box .content-navs .fund-catname-wrap .fund-name input[type=checkbox]:not(old)+label>span {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: .25em .5em .25em .25em;
    border: 2px solid #015898;
    border-radius: 5px;
    background: 0;
    vertical-align: bottom
}

.navdivi-box .content-navs .fund-catname-wrap .fund-name input[type=checkbox]:not(old):checked+label>span:before {
    content: '\2713';
    display: block;
    width: 1em;
    color: #015898;
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    font-weight: 700
}

.navdivi-box .content-navs .fund-catname-wrap .fund-name input[type=radio]:not(old):checked+label>span>span {
    display: block;
    width: .5em;
    height: .5em;
    margin: .125em;
    border: .0625em solid #73994d;
    border-radius: .125em;
    background: #9c6
}

.navdivi-box .content-navs .fund-catname-wrap .searchbtn {
    padding: 13px 60px;
    margin: 0;
    font-weight: 600;
    background: #015898;
    font-size: 14px;
    text-transform: uppercase;
    border: 0;
    color: #fff;
    border-radius: 30px;
    -webkit-transition: all .4s ease-out 0s;
    transition: all .4s ease-out 0s;
    cursor: pointer
}

.navdivi-box .content-navs .fund-catname-wrap .searchbtn:hover {
    background: #033f6b
}

.navdivi-box .content-navs .fund-catname-wrap .exportbtn-nav {
    padding: 11px 60px;
    margin: 00 0 0 20px;
    font-weight: 600;
    background: #fff;
    font-size: 14px;
    text-transform: uppercase;
    border: 2px solid #015898;
    color: #015898;
    border-radius: 30px;
    -webkit-transition: all .4s ease-out 0s;
    transition: all .4s ease-out 0s;
    cursor: pointer
}

.navdivi-box .content-navs .fund-catname-wrap .exportbtn-nav:hover {
    background: #015898;
    color: #fff
}

.result-nav-wrap {
    padding: 0;
    margin: 40px 0 50px 0
}

.result-nav-wrap .export-link {
    float: right;
    margin: 60px 0 40px;
    font-weight: 500
}

.result-nav-wrap .export-link a {
    color: #015898;
    font-size: 14px;
    text-transform: uppercase;
    border: 2px solid #015898;
    border-radius: 20px;
    padding: 10px 50px
}

.result-nav-wrap .export-link a:hover {
    background: #015898;
    color: #fff
}

.result-nav-wrap .tablewrap-resultnav {
    border: 3px solid #eeecec
}

.result-nav-wrap .tablewrap-resultnav .table-result {
    background: #eeecec;
    width: 100%
}

.result-nav-wrap .tablewrap-resultnav .table-result th {
    text-align: center;
    padding: 30px 0;
    font-size: 20px;
    font-weight: 400;
    color: #015898;
    vertical-align: top;
    letter-spacing: -1px
}

.result-nav-wrap .tablewrap-resultnav .table-result td {
    padding: 30px 0;
    text-align: center;
    background: #fff;
    font-size: 16px;
    color: #333;
    font-weight: 400;
    vertical-align: top;
    line-height: 45px;
    letter-spacing: -0.5px
}

.result-nav-wrap .tablewrap-resultnav .table-result td:nth-child(1) {
    padding-left: 15px;
    text-align: left
}

.result-nav-wrap .tablewrap-resultnav .table-result .tdhead {
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: -0.5px
}

.result-nav-wrap .tablewrap-resultnav .table-result .tdhead span {
    display: block;
    font-size: 16px;
    font-weight: 400
}

.bg-gray {
    background-color: #f5f5f5
}

.bg-white {
    background-color: #fff
}

.w-50 {
    width: 50%
}

.w-70 {
    width: 70%
}

.chart-title {
    font-family: 'robotobold';
    font-size: 16px;
    color: #235893;
    text-transform: uppercase
}

.tab-wrapper {
    margin: 0 auto;
    text-align: center
}

.tab-wrapper .tab {
    overflow: hidden;
    border: 1px solid #d8d8d8;
    border-radius: 100px;
    display: inline-block
}

.tab-wrapper .tab button {
    -webkit-transition: .3s;
    transition: .3s;
    background-color: inherit;
    font-family: 'robotobold';
    font-size: 16px;
    color: #9c9c9c;
    text-transform: uppercase;
    float: left;
    outline: 0;
    cursor: pointer;
    padding: 12px 0;
    border-radius: 100px;
    width: 198px
}

.tab-wrapper .tab button.active {
    background-color: #04cdff;
    color: #fff
}

.banner {
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-bottom: 25px;
}

.banner .bannerimg {
    position: relative
}

.banner .bannerimg .bannerimg-s {
    display: none
}

.banner .bannertxt-wrap {
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    font-family: "Roboto", sans-serif;
    margin: 33.5% 2% 0 0
}

.banner .bannertxt-wrap .banner-txt1,
.banner .bannertxt-wrap .banner-txt2 {
    font-weight: 300;
    font-size: 35px;
    color: #fff
}

.banner .bannertxt-wrap .banner-txt2 {
    font-size: 60px;
    line-height: 65px
}

.banner .bannertxt-wrap .applynow {
    margin: 0 10px 0 0;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    float: left
}

.banner .bannertxt-wrap .applynow a {
    color: #fff;
    background: #015898;
    border-radius: 30px;
    padding: 15px 50px;
    display: inline-block
}

.banner .bannertxt-wrap .applynow a:hover {
    background: #000
}

.banner img {
    width: 100%
}

.banner .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.banner .owl-dots span {
    width: 18px;
    height: 18px;
    border-width: 3px!important;
    border-radius: 50%
}

.banner .owl-dot {
    padding: 0 8px;
    height: 20px
}

.banner .owl-dot.active span:after {
    width: 5px!important;
    height: 5px!important
}

.banner-outer {
    position: relative
}

.banner-outer .down-scroll {
    position: absolute;
    left: 20px;
    bottom: 20%;
    z-index: 2
}

.banner-outer .down-scroll .down-scrollimg {
    position: relative;
    -webkit-animation: arrow 1s .5s infinite ease-out alternate;
    animation: arrow 1s .5s infinite ease-out alternate
}

.banner-outer .down-scroll .down-scrolltxt {
    font-family: "robotoregular";
    color: #fff;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    position: absolute;
    top: -23px;
    left: 0;
    right: 0;
    margin: 0 auto
}

@keyframes arrow {
    0% {
        bottom: 0
    }
    100% {
        bottom: -20px
    }
}

@-webkit-keyframes arrow {
    0% {
        bottom: 0
    }
    100% {
        bottom: -20px
    }
}

.wh100FL,
.mainWrapper,
.mainWrapper section,
.mainWrapper section.fundofferWrap,
.mainWrapper section.fundofferWrap .fundstab,
.mainWrapper section.fundofferWrap .innerfundWrap,
.mainWrapper section.fundofferWrap .innerfundWrap p,
.mainWrapper section.aboutusSection h2,
.mainWrapper section.aboutusSection p,
.mainWrapper section.aboutusSection ul,
.mainWrapper section.aboutusSection ul li div,
.mainWrapper section.footerSection .footermenu,
.mainWrapper section.footerSection .footermenu-line2,
.mainWrapper section.footerSection .footermenu ul li,
.mainWrapper section.footerSection .footermenu-line2 ul li,
.mainWrapper section.footerSection .subscribe,
.mainWrapper section.footerSection .showMore,
.mainWrapper .copyrightfooter {
    float: left;
    width: 100%;
    font-size: 13px;
    font-weight: 500
}

section {
    float: none!important
}

.mainWrapper section .container {
    max-width: 1291px;
    margin: 0 auto
}

.mainWrapper section.fundofferWrap {
    background: #fff
}

.mainWrapper section.fundofferWrap .fundstab {
    margin-bottom: 75px
}

.mainWrapper section.fundofferWrap .innerfundWrap h1 {
    color: #235893;
    text-transform: uppercase;
    font-family: "robotobold";
    font-size: 2.4rem
}

.mainWrapper section.fundofferWrap .innerfundWrap p {
    font-size: 1.6rem;
    color: #000;
    line-height: 23px;
    margin-top: 28px;
    padding-bottom: 45px
}

.mainWrapper section.fundofferWrap .innerfundWrap p.fundplansDiv {
    font-size: 1.6rem;
    font-family: "robotomedium";
    color: #000;
    padding-bottom: 15px
}

.mainWrapper section.fundofferWrap .innerfundWrap ul {
    width: 50%;
    float: left
}

.mainWrapper section.fundofferWrap .innerfundWrap ul li {
    font-size: 1.4rem
}

.mainWrapper section.fundofferWrap .innerfundWrap ul li:before {
    content: '';
    background: #000
}

.mainWrapper section.fundofferWrap .innerfundWrap .innerfundSec {
    width: 50%;
    float: left
}

.mainWrapper section.fundofferWrap.bg-gray {
    background-color: #f5f5f5
}

.mainWrapper section.aboutusSection h2 {
    text-align: center;
    font-family: "robotomedium";
    color: #5ccbfa;
    font-size: 3.6rem;
    font-weight: normal;
    position: relative;
    margin-bottom: 20px
}

.mainWrapper section.aboutusSection h2:before {
    content: '';
    position: absolute;
    bottom: -18px;
    height: 5px;
    padding: 0 20px;
    background-color: #973d30;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 20px
}

.mainWrapper section.aboutusSection h2 span {
    color: #235893
}

.mainWrapper section.aboutusSection p {
    text-align: center;
    margin: 40px 0;
    font-size: 1.6rem
}

.mainWrapper section.aboutusSection p.performance {
    margin: 15px 0 40px;
    font-family: "robotomedium";
    font-weight: normal
}

.mainWrapper section.aboutusSection ul li {
    width: 25%;
    float: left;
    padding: 0 20px;
    min-height: 110px
}

.mainWrapper section.aboutusSection ul li div {
    font-family: "robotomedium";
    font-weight: normal;
    font-size: 2rem;
    color: #235893;
    position: relative;
    padding-left: 110px;
    line-height: 75px;
    text-transform: uppercase
}

.mainWrapper section.aboutusSection ul li div span {
    position: absolute;
    top: 0;
    left: 0;
    height: 86px;
    width: 86px;
    z-index: 1;
    background: url(../images/aboutUs.png) 0 0 no-repeat
}

.mainWrapper section.aboutusSection ul li div:after {
    content: '';
    position: absolute;
    top: 0;
    z-index: -1;
    left: 0;
    height: 86px;
    width: 86px;
    border-radius: 50px;
    background-color: #f6f6f6
}

.mainWrapper section.aboutusSection ul li div.flexibility span {
    background-position: 0 -87px
}

.mainWrapper section.aboutusSection ul li div.stability span {
    background-position: 0 -173px
}

.mainWrapper section.aboutusSection ul li div.services span {
    background-position: 0 -260px
}

.mainWrapper section.aboutusSection .btn {
    margin: 60px 0
}

.mainWrapper section.needHelpSection {
    background-color: #235893;
    padding: 30px 0;
    display: inline-block
}

.mainWrapper section.needHelpSection h3 {
    font-family: "robotomedium";
    font-weight: normal;
    font-size: 4.2rem;
    color: #fff;
    float: left;
    line-height: 80px;
    margin: 0;
    margin-right: 50px
}

.mainWrapper section.needHelpSection h3:after {
    background: 0;
    height: 0
}

.mainWrapper section.needHelpSection ul {
    float: left;
    width: 70%
}

.mainWrapper section.needHelpSection ul li {
    float: left;
    position: relative;
    padding-left: 40px;
    line-height: 37px
}

.mainWrapper section.needHelpSection ul li div {
    font-family: "robotobold";
    font-size: 1.8rem;
    font-weight: normal;
    color: #fff;
    text-transform: uppercase
}

.mainWrapper section.needHelpSection ul li p {
    font-size: 2.4rem;
    font-family: "robotoregular";
    color: #fff;
    text-transform: none
}

.mainWrapper section.needHelpSection ul li span {
    float: left;
    height: 81px;
    width: 81px;
    border-radius: 50px;
    background-color: #fff;
    margin-right: 40px;
    line-height: 116px;
    text-align: center
}

.mainWrapper section.needHelpSection ul li span img {
    display: inline-block
}

.mainWrapper section.needHelpSection ul li.callUs {
    width: 40%
}

.mainWrapper section.needHelpSection ul li.email {
    width: 60%
}

.mainWrapper section.needHelpSection ul li.email div {
    width: 50%
}

.mainWrapper section.footerSection {
    background-color: #f5f5f5
}

.mainWrapper section.footerSection .container:after {
    content: "";
    position: relative;
    clear: both;
    display: block
}

.mainWrapper section.footerSection .footermenu,
.mainWrapper section.footerSection .footermenu-line2 {
    padding: 50px 0 20px
}

.mainWrapper section.footerSection .footermenu ul,
.mainWrapper section.footerSection .footermenu-line2 ul {
    float: left;
    width: 23%
}

.mainWrapper section.footerSection .footermenu ul ul,
.mainWrapper section.footerSection .footermenu-line2 ul ul {
    margin-top: 0;
    width: 100%
}

.mainWrapper section.footerSection .footermenu ul.quickLink,
.mainWrapper section.footerSection .footermenu-line2 ul.quickLink {
    width: 15%
}

.mainWrapper section.footerSection .footermenu ul.statutory,
.mainWrapper section.footerSection .footermenu-line2 ul.statutory {
    width: 28%
}

.mainWrapper section.footerSection .footermenu ul li a,
.mainWrapper section.footerSection .footermenu-line2 ul li a {
    color: #000;
    line-height: 25px;
    float: left;
    font-size: 1.4rem;
    padding: 0 10px 0 0
}

.mainWrapper section.footerSection .footermenu ul li a:hover,
.mainWrapper section.footerSection .footermenu-line2 ul li a:hover {
    color: #235893
}

.mainWrapper section.footerSection .footermenu ul li .title,
.mainWrapper section.footerSection .footermenu-line2 ul li .title {
    color: #235893;
    font-family: "robotoblack";
    font-size: 1.4rem;
    text-transform: uppercase;
    padding: 15px 0
}

.mainWrapper section.footerSection .footermenu>ul.accordionContent1:last-child {
    margin-top: 55px
}

.mainWrapper section.footerSection .footermenu ul:nth-child(5),
.mainWrapper section.footerSection .footermenu-line2 ul:nth-child(5) {
    margin-top: 55px;
    width: 11%
}

.mainWrapper section.footerSection .footermenu-line2 {
    padding: 0 0 50px;
    border-bottom: 1px solid #e1e1e1
}

.mainWrapper section.footerSection .footermenu-line2 ul ul.ourfunds-footer {
    margin-top: 0
}

.mainWrapper section.footerSection .footermenu-line2 ul:nth-child(2),
.mainWrapper section.footerSection .footermenu-line2 ul:nth-child(3),
.mainWrapper section.footerSection .footermenu-line2 ul:nth-child(4) {
    margin-top: 55px
}

.mainWrapper section.footerSection .footermenu-line2 ul:nth-child(5) {
    margin-top: 55px;
    width: 11%
}

.mainWrapper section.footerSection .subscribe {
    padding: 40px 0
}

.mainWrapper section.footerSection .subscribe .newsletterUpdate {
    float: left;
    font-size: 1.6rem;
    position: relative
}

.mainWrapper section.footerSection .subscribe .newsletterUpdate .subscribeEmailfield {
    margin: 0 30px;
    width: auto;
    display: inline-block;
    padding: 0 0 30px 0
}

.mainWrapper section.footerSection .subscribe .newsletterUpdate input {
    border-bottom: 1px solid #7b7b7b;
    background-color: transparent;
    color: #7b7b7b;
    height: 40px;
    padding: 0 10px 0 20px;
    margin-top: 0;
    width: auto;
    font-size: 13px
}

.has-error {
    position: absolute
}

.mainWrapper section.footerSection .subscribe .socialIcon {
    float: right;
    margin-left: 50px
}

.mainWrapper section.footerSection .subscribe .socialIcon ul {
    display: inline-block;
    vertical-align: middle
}

.mainWrapper section.footerSection .subscribe .socialIcon ul li {
    width: 37px;
    height: 37px;
    display: inline-block;
    background-color: #2f68ad;
    border-radius: 50px;
    overflow: hidden;
    margin: 0 6px;
    -webkit-transition: all ease .2s;
    transition: all ease .2s
}

.mainWrapper section.footerSection .subscribe {
    position: relative
}

.mainWrapper section.footerSection .subscribe .alert.alert-success {
    color: #05ab2b;
    background: rgba(100, 204, 113, 0.13);
    padding: 5px;
    margin-bottom: 15px;
    position: absolute;
    font-size: 14px;
    top: -40px;
    width: 100%
}

.mainWrapper section.footerSection .subscribe .has-error .field-validation-error>span {
    color: #c51111;
    padding: 0;
    position: absolute;
    font-size: 13px;
    left: 407px;
    bottom: -18px;
    right: 0
}

.mainWrapper section.footerSection .subscribe .socialIcon ul li:hover {
    background-color: #fff;
    border: 1px solid #235893
}

.mainWrapper section.footerSection .subscribe .socialIcon ul li a {
    display: block;
    width: 35px;
    height: 35px;
    background: url(../images/socialIconHover.png) 14px 8px no-repeat;
    -webkit-transition: all ease .2s;
    transition: all ease .2s
}

.mainWrapper section.footerSection .subscribe .socialIcon ul li a.fb:hover {
    background-position: 13px -22px
}

.mainWrapper section.footerSection .subscribe .socialIcon ul li a.twitter {
    background-position: -9px 8px
}

.mainWrapper section.footerSection .subscribe .socialIcon ul li a.twitter:hover {
    background-position: -10px -22px
}

.mainWrapper section.footerSection .subscribe .socialIcon ul li a.in {
    background-position: -37px 8px
}

.mainWrapper section.footerSection .subscribe .socialIcon ul li a.in:hover {
    background-position: -38px -23px
}

.mainWrapper section.footerSection .showMore {
    position: relative;
    border-top: 1px solid #f5f5f5
}

.mainWrapper section.footerSection .showMore div.more {
    width: 290px;
    height: 50px;
    display: inline-block;
    position: absolute;
    text-align: center;
    line-height: 50px;
    bottom: -50px;
    margin: 0 auto;
    right: 0;
    bottom: -50px;
    left: 0;
    background: url(../images/showmore.png) 10px top no-repeat
}

.mainWrapper section.footerSection .showMore div.more a {
    font-size: 1.8rem;
    color: #2f72b6
}

.mainWrapper section.footerSection .showMore div.more a:hover {
    color: #235893
}

.mainWrapper .copyrightfooter {
    padding: 80px 0
}

.mainWrapper .copyrightfooter .container p {
    float: left;
    font-size: 1.2rem
}

.mainWrapper .copyrightfooter .bottommenu {
    float: right
}

.mainWrapper .copyrightfooter .bottommenu li {
    display: inline-block;
    padding: 0 20px
}

.mainWrapper .copyrightfooter .bottommenu li a {
    font-size: 1.2rem;
    color: #000
}

.mainWrapper .copyrightfooter .bottommenu li a:hover {
    color: #235893
}

.btn-wrapper {
    float: left
}

.btn-wrapper .btn:last-child {
    margin-left: 36px
}

.padd-top {
    padding-top: 25px
}

.padd-top-middlewrap {
    padding-top: 20px
}

.btn {
    background-color: #fff;
    border: 2px solid #235893;
    border-radius: 25px;
    color: #235893;
    display: inline-block;
    line-height: 2rem;
    text-transform: uppercase;
    position: relative;
    padding: 10px 30px;
    -webkit-transition: background-color .3s, color .3s;
    transition: background-color .3s, color .3s;
    z-index: 1;
    font-family: "robotoblack";
    font-size: 14px;
    letter-spacing: .4px
}

.btn:before {
    border-radius: inherit;
    content: '';
    height: 100%;
    left: -2.5px;
    position: absolute;
    top: -2px;
    width: 100%;
    z-index: -1;
    opacity: 0;
    -webkit-transform: scale3d(0.6, 0.6, 1);
    transform: scale3d(0.6, 0.6, 1);
    -webkit-transition: -webkit-transform .3s, opacity .3s;
    -webkit-transition: opacity .3s, -webkit-transform .3s;
    transition: opacity .3s, -webkit-transform .3s;
    transition: transform .3s, opacity .3s;
    transition: transform .3s, opacity .3s, -webkit-transform .3s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1)
}

.btn:hover {
    background-color: #235893;
    color: #fff
}

.btn:hover:before {
    opacity: 1
}

.btn.center {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%)
}

.btn.btn-primary {
    width: 184px;
    height: 45px;
    text-align: center;
    font-family: 'robotoblack';
    text-transform: uppercase
}

.btn.btn-secondary {
    background-color: #235893;
    width: 184px;
    height: 45px;
    font-family: 'robotoblack';
    text-transform: uppercase;
    text-align: center;
    color: #fff
}

.total-expratio-wrap {
    max-width: 1060px;
    margin: 40px auto 0;
    background: #f0f8fb;
    float: none!important;
    border-radius: 10px
}

.total-expratio-wrap .total-expratio-leftbox {
    width: 420px;
    background: #005899;
    border-radius: 10px;
    padding: 28px 20px;
    font-family: "robotoregular";
    font-size: 16px;
    color: #fff;
    letter-spacing: .5px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    position: relative;
    float: left
}

.total-expratio-wrap .total-expratio-leftbox:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-bottom: 80px solid transparent;
    border-left: 40px solid #005899;
    border-top: 0 solid transparent;
    position: absolute;
    right: -40px;
    top: 0
}

.total-expratio-wrap .exp-ratiobox {
    float: left;
    font-family: "robotomedium";
    font-size: 14px;
    margin: 29px 0 0 10%
}

.total-expratio-wrap .exp-ratiobox a {
    color: #000;
    position: relative;
    padding: 22px 0 22px 80px
}

.total-expratio-wrap .exp-ratiobox a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: url(../images/expratio-img.png) left top no-repeat;
    height: 66px;
    width: 66px
}

.total-expratio-wrap .exp-ratiobox a:hover {
    color: #005899
}

.total-expratio-wrap .change-exp-ratiobox {
    float: left;
    font-family: "robotomedium";
    font-size: 14px;
    margin: 29px 0 0 7%
}

.total-expratio-wrap .change-exp-ratiobox a {
    color: #000;
    position: relative;
    padding: 22px 0 22px 80px
}

.total-expratio-wrap .change-exp-ratiobox a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: url(../images/expratio-img.png) left -108px top 0 no-repeat;
    height: 66px;
    width: 66px
}

.total-expratio-wrap .change-exp-ratiobox a:hover {
    color: #005899
}

@media only screen and (max-width:1255px) {
    .btn-wrapper .btn {
        width: 155px
    }
    .btn-wrapper .btn:last-child {
        margin-left: 0
    }
}

@media only screen and (max-width:990px) {
    h3 {
        font-size: 2.8rem
    }
    .tab-wrapper {
        width: 100%
    }
    .tab-wrapper .tab button {
        width: 200px
    }
    .mainWrapper section.needHelpSection h3 {
        float: none;
        text-align: center;
        font-size: 3.8rem;
        margin-right: 0
    }
    .mainWrapper section.needHelpSection ul li {
        float: none;
        width: 100%
    }
    .copyrightfooter .container p {
        float: none!important;
        text-align: center
    }
    .copyrightfooter .bottommenu {
        float: none!important;
        text-align: center;
        margin-top: 10px
    }
    .mainWrapper section.footerSection .subscribe .has-error .field-validation-error>span {
        bottom: 52px;
        left: 0;
        font-size: 12px
    }
    .mainWrapper section.footerSection .subscribe .newsletterUpdate input {
        display: block;
        margin: 10px 0 25px;
        width: 310px
    }
}

@media only screen and (max-width:767px) {
    .tab-wrapper {
        width: 100%
    }
    .tab-wrapper .tab {
        width: 70%
    }
    .tab-wrapper .tab button {
        width: 50%
    }
    .btn.btn-primary,
    .btn.btn-secondary {
        width: 184px
    }
    .btn-wrapper .btn:last-child {
        margin-left: 0
    }
    h2 {
        font-size: 3rem
    }
    h4 {
        font-size: 19px
    }
    .mainWrapper section.needHelpSection ul {
        width: 100%
    }
    .mainWrapper section.needHelpSection ul li {
        padding-left: 10px
    }
    .mainWrapper section.needHelpSection ul li.callUs,
    .mainWrapper section.needHelpSection ul li.email {
        width: 100%;
        float: left
    }
    .mainWrapper section.needHelpSection ul li:first-child {
        margin-bottom: 35px
    }
    .mainWrapper section.needHelpSection ul li div {
        font-size: 1.3rem
    }
    .mainWrapper section.needHelpSection ul li p {
        font-size: 1.6rem
    }
    .mainWrapper section.needHelpSection ul li span {
        margin-right: 10px
    }
    .mainWrapper section.footerSection .footermenu ul {
        width: 100%;
        padding: 0
    }
    .mainWrapper section.footerSection .footermenu ul.quickLink,
    .mainWrapper section.footerSection .footermenu ul.statutory {
        width: 100%
    }
    ul.listing-product li span {
        color: #333;
        font-size: 14px;
        line-height: 20px
    }
    ul.listing-product .headprod-listing {
        font-size: 14px
    }
    .selectize-control.single .selectize-input,
    .selectize-control.single .selectize-input input {
        font-size: 14px!important
    }
}

@media only screen and (max-width:599px) {
    .tab-wrapper {
        width: 100%
    }
    .tab-wrapper .tab {
        width: 90%
    }
    .mainWrapper section.footerSection .subscribe .has-error .field-validation-error>span {
        bottom: 80px
    }
    #annoument-model .top_border .center-align {
        margin-bottom: 80px
    }
}

@media only screen and (max-width:360px) {
    .tab-wrapper {
        width: 100%
    }
    .tab-wrapper .tab button {
        font-size: 14px
    }
    .mainWrapper section.needHelpSection ul li.callUs div,
    .mainWrapper section.needHelpSection ul li.email div {
        width: 100%
    }
}

.sipcalc-wrap {
    padding: 50px 0;
    margin: 15px 0 70px;
    background: #d4eff8
}

.sipcalc-wrap .sipcal-left {
    width: 720px;
    float: left
}

.sipcalc-wrap .sipcal-left .calbox-white {
    position: relative;
    width: 660px;
    margin: 0 auto;
    background: #fff;
    height: 390px;
    background: url(../images/pagecurl-img.png) center top no-repeat;
    background-size: 100%;
    padding-top: 5px
}

.sipcalc-wrap .sipcal-left .calbox-white:before {
    position: absolute;
    content: '';
    top: 70px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 18px;
    height: 18px;
    background: #a33629;
    border-radius: 100%;
    -webkit-box-shadow: 3px 4px 3px 0 rgba(0, 0, 0, 0.3);
    -o-box-shadow: 3px 4px 3px 0 rgba(0, 0, 0, 0.3);
    -ms-box-shadow: 3px 4px 3px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 3px 4px 3px 0 rgba(0, 0, 0, 0.3)
}

.sipcalc-wrap .sipcal-left .calbox-white .calbox-textwrap {
    max-width: 520px;
    margin: 110px auto 0;
    font-family: "Roboto", sans-serif;
    font-size: 24px;
    color: #333;
    font-weight: 400;
    line-height: 46px
}

.sipcalc-wrap .sipcal-left .calbox-white .calbox-textwrap span {
    font-size: 35px;
    line-height: 35px;
    color: #015898;
    font-weight: 700;
    margin: 0 5px;
    word-break: break-all
}

.sipcalc-wrap .sipcal-left .ranges-box {
    padding: 0;
    margin-bottom: 50px
}

.sipcalc-wrap .sipcal-left .ranges-box .monthy-invest-head {
    font-size: 22px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    text-align: center;
    width: 390px;
    margin: 0 auto
}

.sipcalc-wrap .sipcal-left .ranges-box .range-top {
    margin: 40px auto 45px;
    padding: 0;
    position: relative;
    width: 520px;
    z-index: 1
}

.sipcalc-wrap .sipcal-left .ranges-box .range-top .slidetop {
    width: 100%;
    height: 7px;
    background: #c7dde5;
    position: relative
}

.sipcalc-wrap .sipcal-left .ranges-box .range-top .slidetop .dragicon {
    width: 4px;
    height: 18px;
    position: absolute;
    left: 0;
    right: 0;
    top: -6px;
    margin: 0 auto;
    background: #1268b3;
    cursor: pointer;
    z-index: 1
}

.sipcalc-wrap .sipcal-left .ranges-box .range-top .expected-input,
.sipcalc-wrap .sipcal-left .ranges-box .range-top .monthly-input {
    position: absolute;
    right: -90px;
    top: 50px
}

.sipcalc-wrap .sipcal-left .ranges-box .range-top .expected-input .expected-txt,
.sipcalc-wrap .sipcal-left .ranges-box .range-top .monthly-input .expected-txt {
    font-size: 20px;
    color: #333;
    font-weight: 400
}

.sipcalc-wrap .sipcal-left .ranges-box .range-top .monthly-input {
    left: -90px;
    right: auto
}

.sipcalc-wrap .sipcal-left .ranges-box .range-top .clickdrag {
    font-size: 14px;
    color: #888;
    text-align: center;
    position: relative;
    letter-spacing: 4px;
    padding: 20px 0 0 0
}

.sipcalc-wrap .sipcal-left .ranges-box .range-top .inputstyle-amt {
    color: #1a68a2;
    font-weight: 400;
    border: 0;
    background: 0;
    font-size: 18px;
    width: 180px;
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid #a5a7a9
}

.sipcalc-wrap .sipcal-left .ranges-box .range-top .left-right-circle,
.sipcalc-wrap .sipcal-left .ranges-box .range-top .left-right-circle1 {
    width: 18px;
    height: 18px;
    background: #00cdff;
    position: absolute;
    top: -6px;
    right: -17px;
    border-radius: 100%;
    cursor: pointer;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
    z-index: 5
}

.sipcalc-wrap .sipcal-left .ranges-box .range-top .left-right-circle:hover,
.sipcalc-wrap .sipcal-left .ranges-box .range-top .left-right-circle1:hover {
    background: #fff;
    border: 3px solid #00cdff;
    height: 40px;
    width: 40px;
    top: -20px;
    right: -30px
}

.sipcalc-wrap .sipcal-left .ranges-box .range-top .left-right-circle:hover:after,
.sipcalc-wrap .sipcal-left .ranges-box .range-top .left-right-circle1:hover:after {
    position: absolute;
    content: '';
    width: 17px;
    height: 17px;
    background: #015898;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: 8px;
    border-radius: 100%
}

.sipcalc-wrap .sipcal-left .ranges-box .range-top .left-right-circle.active-circle-right,
.sipcalc-wrap .sipcal-left .ranges-box .range-top .left-right-circle1.active-circle-right {
    background: #fff;
    border: 3px solid #00cdff;
    height: 40px;
    width: 40px;
    top: -20px;
    right: -30px
}

.sipcalc-wrap .sipcal-left .ranges-box .range-top .left-right-circle.active-circle-right:after,
.sipcalc-wrap .sipcal-left .ranges-box .range-top .left-right-circle1.active-circle-right:after {
    position: absolute;
    content: '';
    width: 17px;
    height: 17px;
    background: #015898;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 8px;
    border-radius: 100%
}

.sipcalc-wrap .sipcal-left .ranges-box .range-top .right-circle-bottline,
.sipcalc-wrap .sipcal-left .ranges-box .range-top .left-circle-bottline {
    position: absolute;
    top: 12px;
    height: 25px;
    width: 2px;
    background: #015898;
    content: '';
    right: -9px
}

.sipcalc-wrap .sipcal-left .ranges-box .range-top .left-circle-bottline {
    left: -9px;
    right: auto
}

.sipcalc-wrap .sipcal-left .ranges-box .range-top .left-right-circle1 {
    right: auto;
    left: -17px
}

.sipcalc-wrap .sipcal-left .ranges-box .range-top .left-right-circle1:hover {
    top: -20px;
    left: -30px;
    right: auto
}

.sipcalc-wrap .sipcal-left .ranges-box .range-top .left-right-circle1.active-circle-left {
    background: #fff;
    border: 3px solid #00cdff;
    height: 40px;
    width: 40px;
    top: -20px;
    left: -30px;
    right: auto
}

.sipcalc-wrap .sipcal-left .ranges-box .range-top .left-right-circle1.active-circle-left:after {
    position: absolute;
    content: '';
    width: 17px;
    height: 17px;
    background: #015898;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 8px;
    border-radius: 100%
}

.sipcalc-wrap .sipcal-left .ranges-box .years-wrap {
    padding: 0;
    margin: 130px 0 0 0
}

.sipcalc-wrap .sipcal-left .ranges-box .years-wrap .years-range {
    width: 550px;
    margin: 15px auto 0;
    position: relative
}

.sipcalc-wrap .sipcal-left .ranges-box .years-wrap .years-range .left-circle-years,
.sipcalc-wrap .sipcal-left .ranges-box .years-wrap .years-range .right-circle-years {
    width: 18px;
    height: 18px;
    background: #00cdff;
    position: absolute;
    top: 25px;
    left: -18px;
    border-radius: 100%;
    cursor: pointer;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
    z-index: 5
}

.sipcalc-wrap .sipcal-left .ranges-box .years-wrap .years-range .right-circle-years {
    right: -18px;
    left: auto
}

.sipcalc-wrap .sipcal-left .ranges-box .rate-return-wrap {
    padding: 0;
    margin: 110px auto 0;
    max-width: 270px
}

.sipcalc-wrap .sipcal-left .ranges-box .rate-return-wrap .rate-return-left,
.sipcalc-wrap .sipcal-left .ranges-box .rate-return-wrap .rate-return-right {
    float: left;
    font-size: 22px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    width: 190px
}

.sipcalc-wrap .sipcal-left .ranges-box .rate-return-wrap .rate-return-right {
    float: right;
    width: 80px
}

.sipcalc-wrap .sipcal-left .ranges-box .rate-return-wrap .rate-return-right .textbox-style {
    color: #1a68a2;
    font-weight: 400;
    border: 0;
    background: 0;
    font-size: 22px;
    width: 60px;
    text-align: center;
    padding: 6px 0;
    border-bottom: 1px solid #a5a7a9;
    position: relative;
    top: -10px
}

.sipcalc-wrap .sipcal-left .ranges-box .calculate-box {
    padding: 0;
    margin: 50px 0;
    text-transform: uppercase;
    font-size: 14px;
    text-align: center;
    font-family: "Roboto", sans-serif;
    letter-spacing: 1px;
    font-weight: 700
}

.sipcalc-wrap .sipcal-left .ranges-box .calculate-box a {
    color: #fff;
    background: #015898;
    padding: 12px 60px;
    border-radius: 25px
}

.sipcalc-wrap .sipcal-left .ranges-box .calculate-box a:hover {
    background: #000
}

.sipcalc-wrap .sipcal-right {
    width: 400px;
    float: right;
    padding-top: 60px
}

.sip-disclaimer {
    margin: 0 0 70px;
    padding: 0
}

.sip-disclaimer .sip-disclainer-txt {
    width: 95%;
    margin: 0 auto
}

.sip-disclaimer .sip-disclainer-txt small {
    line-height: 21px
}

.sip-disclaimer .sip-disclainer-txt .disclainer-head {
    font-family: "robotomedium";
    font-size: 14px;
    color: #000;
    margin-bottom: 20px
}

.acc-statement-wrap {
    padding: 0;
    margin: 0 0 20px 0
}

.acc-statement-wrap .bodyinner h1 {
    border-bottom: 1px solid #d5d5d5;
    width: 100%;
    padding-bottom: 15px;
    margin-bottom: 30px;
    letter-spacing: -1px;
    font-weight: 600
}

.acc-statement-wrap .bodyinner ul.acc-statement-toplist {
    padding: 0;
    margin: 0 0 30px 0
}

.acc-statement-wrap .bodyinner ul.acc-statement-toplist li {
    position: relative;
    padding-left: 25px;
    line-height: 23px;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    padding-right: 200px
}

.acc-statement-wrap .bodyinner ul.acc-statement-toplist li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    background: url("../images/bullet.png") no-repeat
}

.acc-statement-wrap .bodyinner ul.acc-statement-toplist li span {
    color: #015898
}

.acc-statement-wrap .acc-state-innerwrap-form {
    background: #fafafa
}

.acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap {
    padding: 50px 0;
    margin: 0
}

.acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .acc-state-formhead {
    font-size: 28px;
    font-weight: 400;
    color: #333;
    margin-bottom: 50px
}

.acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 {
    padding: 0;
    margin: 0
}

.acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li {
    float: left;
    width: 28%;
    margin: 0 8% 45px 0
}

.acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li .form-caption {
    font-size: 22px;
    color: #333;
    font-weight: 400;
    letter-spacing: -0.5px
}

.acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li .foliosmall {
    font-size: 11px;
    color: #7b7b7b;
    font-weight: 400;
    margin-top: 15px;
    display: block
}

.acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li:nth-child(2),
.acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li:nth-child(3),
.acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li:nth-child(4) {
    margin-right: 0
}

.acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li:nth-child(3) {
    width: 100%
}

.acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li:nth-child(4) {
    margin-bottom: 0
}

.acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li .year-radios {
    margin: 0;
    line-height: 50px
}

.acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li .year-radios .fyear-mar-right {
    margin-right: 0;
    width: 330px;
    letter-spacing: -1px
}

.acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li input[type=radio]:not(old) {
    width: 2em;
    margin: 0;
    padding: 0;
    font-size: 22px;
    opacity: 0
}

.acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li input[type=radio]:not(old)+label {
    display: inline-block;
    margin-left: -2em;
    line-height: 22px;
    font-size: 22px;
    color: #333;
    font-weight: 400;
    letter-spacing: -1px
}

.acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li input[type=radio]:not(old)+label>span {
    display: inline-block;
    width: 22px;
    height: 22px;
    margin: 0 12px 0 0;
    border: 2px solid #015898;
    border-radius: 100%;
    vertical-align: bottom
}

.acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li input[type=radio]:not(old):checked+label>span>span {
    display: block;
    width: 12px;
    height: 12px;
    margin: 3px auto 0;
    border-radius: 100%;
    background: #015898
}

.acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .datepicker-from-acc-state,
.acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .datepicker-to-acc-state {
    width: 45%;
    text-align: right;
    position: relative
}

.acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .datepicker-from-acc-state span,
.acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .datepicker-to-acc-state span {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: #333;
    font-size: 22px;
    display: block;
    text-align: left;
    margin-bottom: 10px
}

.acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .datepicker-from-acc-state .datepicker-acc-statement,
.acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .datepicker-to-acc-state .datepicker-acc-statement {
    width: 100%;
    font-size: 18px;
    color: #333;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    padding: 8px 0;
    margin: 0;
    background: transparent;
    border: 0;
    position: relative;
    z-index: 2
}

.acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .datepicker-from-acc-state .calicon-acc,
.acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .datepicker-to-acc-state .calicon-acc {
    position: absolute;
    right: 0;
    bottom: 10px;
    color: #015898;
    font-size: 30px;
    z-index: 0
}

.acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .datepicker-from-acc-state {
    text-align: left;
    float: left
}

.acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .datepicker-to-acc-state {
    float: right
}

.acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .redstar-txt {
    font-size: 12px;
    color: #7b7b7b;
    font-weight: 400;
    margin: 35px 0
}

.acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .redstar-txt span {
    font-size: 22px!important
}

.acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .btn-sbmit {
    background: #015898!important;
    margin-right: 30px
}

.acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .btn-sbmit:hover {
    background: #033f6b!important
}

.acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .btn-clear {
    border: 2px solid #015898;
    color: #015898
}

.acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .btn-clear:hover {
    background: none!important;
    border: 2px solid #000
}

.acc-statement-wrap .confirm-msgwrap {
    display: none;
    background: #ecf6fa;
    padding: 35px 0;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px
}

.acc-statement-wrap .confirm-msgwrap .bodyinner .confirm-msg {
    color: #333
}

.acc-statement-wrap .confirm-msgwrap .bodyinner .confirm-msg span {
    color: #00569a;
    font-size: 22px
}

.accstate-box {
    margin-top: 60px
}

.accstate-box .accstate-tab {
    overflow: hidden;
    width: 496px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: "Roboto", sans-serif;
    border: 2px solid #dbdbdb;
    border-radius: 60px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.accstate-box .accstate-tab li {
    float: left;
    text-align: center;
    margin: 0;
    border-radius: 60px;
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.accstate-box .accstate-tab a {
    position: relative;
    padding: 14px 0;
    float: left;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    width: 246px;
    display: block;
    color: #9c9c9c
}

.accstate-box .accstate-tab .active {
    background: #04cdff
}

.accstate-box .accstate-tab .active a {
    color: #fff
}

.accstate-box .content-accstate {
    padding: 0;
    position: relative;
    z-index: 2;
    margin-top: 0
}

.name-errormsg,
.folio-errormsg,
.pan-errormsg {
    color: #dd0306;
    font-size: 11px;
    margin: 5px 0 0 0
}

.fadv-wrap {
    padding: 0;
    margin: 0;
    font-family: "Roboto", sans-serif
}

.fadv-wrap .fadv-accordion .fadv-accord-Content ul li h4 {
    text-align: left;
    font-size: 18px;
    cursor: pointer;
    position: relative;
    padding-right: 50px;
    display: inline-block
}

.fadv-wrap .fadv-accordion .fadv-accord-Content ul li h4.on {
    background: transparent!important
}

.fadv-wrap .fadv-accordion .fadv-accord-Content ul li h4:after {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    top: 3px;
    right: 28px;
    border: solid #015898;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in
}

.fadv-wrap .fadv-accordion .fadv-accord-Content ul li h4.on:after {
    top: 10px!important
}

.fadv-wrap .fadv-accordion .fadv-accord-Content ul li h4+ul {
    display: none
}

.fadv-wrap .fadv-accordion .fadv-accord-Content ul li h4+ul li {
    margin-bottom: 0;
    padding: 5px 0 20px
}

.fadv-wrap .follow-txt {
    font-size: 24px;
    color: #333;
    letter-spacing: -0.7px
}

.fadv-wrap ul.fadv-liting-big {
    margin: 30px 0 70px;
    counter-reset: mynumber
}

.fadv-wrap ul.fadv-liting-big li {
    position: relative;
    font-size: 18px;
    color: #000;
    margin: 0 0 40px 40px;
    font-weight: 600
}

.fadv-wrap ul.fadv-liting-big li:before {
    counter-increment: mynumber;
    content: counter(mynumber) ")";
    font-size: 24px;
    color: #015898;
    font-weight: 400;
    position: absolute;
    left: -40px;
    top: -3px
}

.fadv-wrap .bullet-points-wrap {
    margin: 20px 0 0 0
}

.fadv-wrap .bullet-points-wrap .points-lines {
    background: url("../images/bullet.png") left 0 top 4px no-repeat;
    font-weight: 400;
    color: #333;
    font-size: 16px;
    padding: 0 0 0 30px;
    margin-bottom: 15px
}

.fadv-wrap .fadv-accordion {
    width: 100%;
    margin-top: 25px
}

.fadv-wrap .fadv-accordion .fadv-accord-head {
    font-size: 20px;
    color: #015898;
    font-weight: 500;
    background: #f5f5f5;
    margin-bottom: 10px;
    padding: 20px 0 20px 20px;
    cursor: pointer;
    position: relative;
    letter-spacing: -0.6px
}

.fadv-wrap .fadv-accordion .fadv-accord-head:before {
    content: '';
    height: 100%;
    width: 70px;
    background: #505050;
    top: 0;
    right: 0;
    position: absolute
}

.fadv-wrap .fadv-accordion .fadv-accord-head:after {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    top: 22px;
    right: 30px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in
}

.fadv-wrap .fadv-accordion .on {
    background: #cff5ff;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in
}

.fadv-wrap .fadv-accordion .on:before {
    background: #015898
}

.fadv-wrap .fadv-accordion .on:after {
    -webkit-transform: rotate(225deg)!important;
    transform: rotate(225deg)!important;
    top: 28px;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in
}

.fadv-wrap .fadv-accordion .fadv-accord-Content {
    padding: 20px 20px 30px;
    font-weight: 400;
    color: #333;
    font-size: 16px
}

.fadv-wrap .fadv-accordion .fadv-accord-Content ul {
    counter-reset: accornumber;
    margin-left: 30px
}

.fadv-wrap .fadv-accordion .fadv-accord-Content ul li ul.accordion {
    margin-top: 20px
}

.fadv-wrap .fadv-accordion .fadv-accord-Content ul .sublist-nrifaq {
    margin-top: 15px
}

.fadv-wrap .fadv-accordion .fadv-accord-Content ul .sublist-nrifaq ul {
    counter-reset: none
}

.fadv-wrap .fadv-accordion .fadv-accord-Content ul .sublist-nrifaq ul li:before {
    position: absolute;
    font-size: 32px;
    top: 10px!important;
    line-height: 0;
    counter-increment: none;
    content: '\2022';
    margin-left: -0;
    color: #015898;
    -webkit-border-radius: 50%;
    border-radius: 50%
}

.nri-corner-faq .fadv-wrap .fadv-accordion .fadv-accord-Content ul li {
    width: 100%
}

.fadv-wrap .fadv-accordion .fadv-accord-Content ul.excel-list-style {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap
}

.fadv-wrap .fadv-accordion .fadv-accord-Content ul li {
    padding: 0;
    margin: 0 1%;
    position: relative;
    font-weight: 400;
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    width: 100%;
    display: inline-block
}

.fadv-wrap .fadv-accordion .fadv-accord-Content ul li ul,
.fadv-wrap .fadv-accordion .fadv-accord-Content ul li ul li {
    margin-left: 0
}

.fadv-wrap .fadv-accordion .fadv-accord-Content ul li:before {
    counter-increment: accornumber;
    content: counter(accornumber) ")";
    font-size: 16px;
    font-weight: 400;
    top: 0;
    left: -30px
}

.fadv-wrap .kyd-wrap {
    padding: 0;
    margin: 0
}

.fadv-wrap .kyd-wrap .kydhead {
    font-size: 24px;
    font-weight: 400;
    color: #333;
    margin-bottom: 30px;
    letter-spacing: -0.5px
}

.fadv-wrap .kyd-wrap p {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    margin-bottom: 25px;
    line-height: 25px
}

.fadv-wrap .kyd-wrap .linkskyd {
    padding: 0;
    margin: 30px 0 50px;
    font-size: 20px
}

.fadv-wrap .kyd-wrap .linkskyd a {
    color: #015898;
    text-decoration: underline;
    display: block;
    margin-bottom: 35px
}

.fadv-wrap .kyd-wrap .linkskyd a:hover {
    text-decoration: none;
    color: #03416f
}

.fadv-wrap .kyd-wrap ul {
    counter-reset: kydnum;
    margin: 30px 0 30px 60px
}

.fadv-wrap .kyd-wrap ul li {
    padding: 0;
    margin: 0;
    position: relative;
    font-weight: 400;
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    color: #015898
}

.fadv-wrap .kyd-wrap ul li:before {
    counter-increment: kydnum;
    content: counter(kydnum) ")";
    font-size: 16px;
    font-weight: 400;
    top: 0;
    left: -30px;
    position: absolute;
    color: #015898
}

.fadv-wrap .commi-expe-wrap {
    background: #fafafa;
    padding: 40px 0 60px
}

.fadv-wrap .commi-expe-wrap .commi-exp-text {
    font-size: 22px;
    color: #333;
    font-weight: 400;
    width: 570px;
    float: left;
    letter-spacing: -1px
}

.fadv-wrap .commi-expe-wrap .commi-exp-select {
    width: 190px;
    float: left;
    cursor: pointer
}

.fadv-wrap .commi-expe-wrap .commi-exp-select .select1 {
    display: inline-block;
    position: relative;
    width: 160px;
    height: 40px;
    font-family: "Roboto", sans-serif;
    font-weight: 400
}

.fadv-wrap .commi-expe-wrap .commi-exp-select .select1 .select-hidden {
    display: none;
    visibility: hidden;
    padding-right: 10px
}

.fadv-wrap .commi-expe-wrap .commi-exp-select .select1 .select-styled1 {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 3px 35px 5px 15px;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    background: url(../images/arrowslc1.png) no-repeat scroll 100% 0;
    width: 100%;
    font-size: 18px;
    color: #015898;
    border-bottom: 1px solid #a5a7a9
}

.fadv-wrap .commi-expe-wrap ul.commi-exp-pdflink {
    padding: 0;
    margin: 40px 0 0 0
}

.fadv-wrap .commi-expe-wrap ul.commi-exp-pdflink li {
    position: relative;
    margin-bottom: 10px
}

.fadv-wrap .commi-expe-wrap ul.commi-exp-pdflink li a {
    color: #015898;
    margin-left: 30px;
    font-size: 16px;
    display: block;
    cursor: pointer
}

.fadv-wrap .commi-expe-wrap ul.commi-exp-pdflink li a:hover {
    text-decoration: underline
}

.fadv-wrap .commi-expe-wrap ul.commi-exp-pdflink li a:before {
    content: '\f1c1';
    position: absolute;
    left: 0;
    top: -4px;
    width: 30px;
    height: 40px;
    font-family: FontAwesome;
    font-size: 22px;
    color: #015898;
    font-weight: 100
}

.fadv-wrap .fa-quicklinks-wrap {
    background: #cff5ff;
    padding: 50px 0 10px
}

.fadv-wrap .fa-quicklinks-wrap .fa-quicklinks-head,
.fadv-wrap .fa-quicklinks-wrap .fa-quicklinks-head1 {
    font-family: "robotomedium";
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    letter-spacing: -0.7px
}

.fadv-wrap .fa-quicklinks-wrap .fa-quicklinks-head1 {
    font-size: 20px
}

.fadv-wrap .fa-quicklinks-wrap ul.fa-quicklinks {
    padding: 0;
    margin: 0 0 25px 0
}

.fadv-wrap .fa-quicklinks-wrap ul.fa-quicklinks li {
    list-style: none;
    font-size: 18px;
    font-family: 'roboto';
    width: 33%;
    display: inline-block;
    margin-bottom: 25px;
    letter-spacing: -0.6px;
    font-weight: 500
}

.fadv-wrap .fa-quicklinks-wrap ul.fa-quicklinks li a {
    color: #015898;
    text-decoration: underline;
    position: relative
}

.fadv-wrap .fa-quicklinks-wrap ul.fa-quicklinks li a:hover {
    text-decoration: none
}

.marbott-kyd {
    margin-bottom: 0!important
}

.fadv-wrap p {
    font-size: 16px;
    line-height: 1.5!important;
    margin: 0 0 20px;
    padding: 0
}

.fadv-wrap p.voting_accordian {
    margin-bottom: 0
}

.fadv-wrap p.voting_accordian span {
    position: relative;
    display: inline-block;
    width: 15px;
    height: 15px
}

.fadv-wrap p.voting_accordian span:after {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    top: 0;
    right: 0;
    border: solid #333;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    transition: all .2s ease-in
}

.fadv-wrap p.voting_accordian.active span:after {
    top: 8px;
    right: 0;
    border: solid #333;
    border-width: 0 2px 2px 0;
    transform: rotate(-135deg);
    transition: all .2s ease-in
}

.service-listing-head {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px
}

ul.service-listing {
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 16px
}

ul.service-listing li {
    font-weight: 400;
    margin: 0 0 8px;
    padding: 0 0 0 20px;
    position: relative;
    color: #454545;
    line-height: 1.5
}

ul.service-listing li:before {
    content: '\2022';
    font-size: 35px;
    position: absolute;
    left: 0;
    top: -14px;
    color: #1e6db0
}

ul.service-listing1 {
    padding: 0;
    margin: 0 0 0 20px;
    font-size: 16px
}

ul.service-listing1 li {
    font-weight: 400;
    margin: 0 0 8px;
    padding: 0;
    position: relative;
    color: #454545;
    line-height: 1.5;
    list-style-type: disc
}

.fadv-wrap .fadv-accordion .fadv-accord-Content ul li a,
.fadv-wrap .fadv-accordion .fadv-accord-Content ul p a {
    color: #0470c9
}

.service-listing-margin-top {
    margin-top: 25px
}

.service-listing-margin-top p {
    padding: 0;
    margin: 0
}

.contact-wrap {
    padding: 0;
    margin: 0;
    font-family: "Roboto", sans-serif
}

.contact-wrap .contact-map-wrap {
    padding: 0;
    margin: 80px 0 85px 0
}

.contact-wrap .contact-map-wrap .contact-map-address {
    display: block;
    margin: 0 auto;
    width: 480px
}

.contact-wrap .contact-map-wrap .contact-map-address .link-utilitypoint a {
    font-size: 20px;
    padding: 0 0 0 20px;
    color: #015898;
    text-decoration: underline;
    letter-spacing: -0.5px
}

.contact-wrap .contact-map-wrap .contact-map-address .link-utilitypoint a:hover {
    text-decoration: none
}

.contact-wrap .contact-map-wrap .contact-map-address .address-accord {
    border-bottom: 1px solid #dedede;
    padding-bottom: 20px;
    margin-bottom: 20px
}

.contact-wrap .contact-map-wrap .contact-map-address .contact-accord-head {
    background: #f5f5f5;
    font-size: 20px;
    color: #015898;
    padding: 20px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 10px;
    position: relative;
    letter-spacing: -0.5px
}

.contact-wrap .contact-map-wrap .contact-map-address .contact-accord-head:before {
    content: '';
    height: 100%;
    width: 70px;
    background: #c0f2ff;
    top: 0;
    right: 0;
    position: absolute
}

.contact-wrap .contact-map-wrap .contact-map-address .contact-accord-head:after {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    top: 22px;
    right: 30px;
    border: solid #015898;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in
}

.contact-wrap .contact-map-wrap .contact-map-address .contact-on {
    background: #f5f5f5;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in
}

.contact-wrap .contact-map-wrap .contact-map-address .contact-on:before {
    background: #c0f2ff
}

.contact-wrap .contact-map-wrap .contact-map-address .contact-on:after {
    -webkit-transform: rotate(225deg)!important;
    transform: rotate(225deg)!important;
    top: 28px;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in
}

.contact-wrap .contact-map-wrap .contact-map-address .contact-accord-Content {
    padding: 25px 20px 20px
}

.contact-wrap .contact-map-wrap .contact-map-address .contact-accord-Content .co-addhead {
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    color: #000;
    margin-bottom: 8px;
    letter-spacing: -0.5px
}

.contact-wrap .contact-map-wrap .contact-map-address .contact-accord-Content .co-addlines,
.contact-wrap .contact-map-wrap .contact-map-address .contact-accord-Content .add-tollfree {
    color: #333;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.5px
}

.contact-wrap .contact-map-wrap .contact-map-address .contact-accord-Content .add-tollfree {
    display: block;
    margin: 25px 0
}

.contact-wrap .contact-map-wrap .contact-map-address .contact-accord-Content .add-tollfree span {
    color: #00589e
}

.contact-wrap .contact-map-wrap .contact-map-address .contact-accord-Content .add-tollfree a {
    color: #00589e
}

.contact-wrap .contact-map-wrap .contact-map-address .contact-accord-Content .add-tollfree a:hover {
    text-decoration: underline
}

.contact-wrap .contact-map-wrap .contact-map-address .contact-accord-Content .add-tollfree .addopen {
    color: #000;
    font-weight: 500
}

.contact-wrap .contact-map-wrap .contact-map-address .contact-accord-Content .state-select-address,
.contact-wrap .contact-map-wrap .contact-map-address .contact-accord-Content .city-select-address {
    padding: 0;
    margin: 0;
    width: 48%;
    float: left
}

.contact-wrap .contact-map-wrap .contact-map-address .contact-accord-Content .state-select-address .select,
.contact-wrap .contact-map-wrap .contact-map-address .contact-accord-Content .city-select-address .select {
    width: 100%;
    font-size: 16px;
    color: #015898
}

.contact-wrap .contact-map-wrap .contact-map-address .contact-accord-Content .state-select-address .select .select-styled,
.contact-wrap .contact-map-wrap .contact-map-address .contact-accord-Content .city-select-address .select .select-styled {
    border-bottom: 1px solid #a5a7a9;
    padding: 5px 10px 5px 5px;
    background: 0
}

.contact-wrap .contact-map-wrap .contact-map-address .contact-accord-Content .state-select-address .select .select-styled.active,
.contact-wrap .contact-map-wrap .contact-map-address .contact-accord-Content .city-select-address .select .select-styled.active {
    background: #fff
}

.contact-wrap .contact-map-wrap .contact-map-address .contact-accord-Content .state-select-address .select .select-options,
.contact-wrap .contact-map-wrap .contact-map-address .contact-accord-Content .city-select-address .select .select-options {
    font-size: 14px;
    background: #fafafa
}

.contact-wrap .contact-map-wrap .contact-map-address .contact-accord-Content .state-select-address .select .select-options li,
.contact-wrap .contact-map-wrap .contact-map-address .contact-accord-Content .city-select-address .select .select-options li {
    text-indent: 5px;
    border-top: 1px solid #fff
}

.contact-wrap .contact-map-wrap .contact-map-address .contact-accord-Content .state-select-address .select .select-options li:hover,
.contact-wrap .contact-map-wrap .contact-map-address .contact-accord-Content .city-select-address .select .select-options li:hover {
    background: #fff
}

.contact-wrap .contact-map-wrap .contact-map-address .contact-accord-Content .city-select-address {
    float: right
}

.contact-wrap .contact-map-wrap .contact-map-address .contact-accord-Content .searchbtn-address {
    padding: 0;
    margin: 15px 0 0 0
}

.contact-wrap .contact-map-wrap .contact-map-address .contact-accord-Content .searchbtn-address .btn-sbmit {
    background: #015898
}

.contact-wrap .contact-map-wrap .contact-map-address .contact-accord-Content .searchbtn-address .btn-sbmit:hover {
    background: #033f6b
}

.contact-wrap .contact-map-wrap .contact-map-address .contact-accord-Content .addsearch-sesult {
    margin-top: 30px
}

.contact-wrap .contact-map-wrap .contact-mapbox {
    float: right;
    width: 770px;
    height: 870px
}

.contact-wrap .write-tous-wrap {
    background: #fafafa;
    padding: 70px 0 60px
}

.contact-wrap .write-tous-wrap .line1-writeus {
    padding: 0;
    margin: 50px 0 0 0
}

.contact-wrap .write-tous-wrap .line1-writeus .form_wrap {
    float: left;
    width: 28%;
    margin: 0 8% 20px 0
}

.contact-wrap .write-tous-wrap .line1-writeus .form_wrap .form-caption {
    font-size: 22px;
    color: #333;
    font-weight: 400;
    letter-spacing: -0.5px
}

.contact-wrap .write-tous-wrap .line1-writeus .form_wrap .inputstyle-form {
    margin-top: 20px
}

.contact-wrap .write-tous-wrap .line1-writeus .form_wrap select.inputstyle-form {
    margin-top: 0
}

.contact-wrap .write-tous-wrap .line1-writeus .form_wrap .txtareastyle-form {
    border: 0;
    background: #e7e7e7;
    resize: none;
    height: 190px
}

.contact-wrap .write-tous-wrap .line1-writeus .form_wrap .reason-select,
.contact-wrap .write-tous-wrap .line1-writeus .form_wrap .related-select {
    padding: 0;
    margin: 20px 0 0;
    width: 100%
}

.contact-wrap .write-tous-wrap .line1-writeus .form_wrap .reason-select .select,
.contact-wrap .write-tous-wrap .line1-writeus .form_wrap .related-select .select {
    width: 100%;
    font-size: 22px;
    color: #333
}

.contact-wrap .write-tous-wrap .line1-writeus .form_wrap .reason-select .select .select-styled,
.contact-wrap .write-tous-wrap .line1-writeus .form_wrap .related-select .select .select-styled {
    border-bottom: 1px solid #a5a7a9;
    padding: 5px 10px 5px 0;
    background: 0
}

.contact-wrap .write-tous-wrap .line1-writeus .form_wrap .reason-select .select .select-styled.active,
.contact-wrap .write-tous-wrap .line1-writeus .form_wrap .related-select .select .select-styled.active {
    background: #fff
}

.contact-wrap .write-tous-wrap .line1-writeus .form_wrap .reason-select .select .select-options,
.contact-wrap .write-tous-wrap .line1-writeus .form_wrap .related-select .select .select-options {
    font-size: 18px;
    background: #fafafa
}

.contact-wrap .write-tous-wrap .line1-writeus .form_wrap .reason-select .select .select-options li,
.contact-wrap .write-tous-wrap .line1-writeus .form_wrap .related-select .select .select-options li {
    text-indent: 5px;
    border-top: 1px solid #fff;
    float: none;
    margin-bottom: 0
}

.contact-wrap .write-tous-wrap .line1-writeus .form_wrap .reason-select .select .select-options li:hover,
.contact-wrap .write-tous-wrap .line1-writeus .form_wrap .related-select .select .select-options li:hover {
    background: #fff
}

.contact-wrap .write-tous-wrap .line1-writeus .form_wrap:nth-child(3),
.contact-wrap .write-tous-wrap .line1-writeus .form_wrap:nth-child(6),
.contact-wrap .write-tous-wrap .line1-writeus .form_wrap:nth-child(8) {
    margin-right: 0
}

.contact-wrap .write-tous-wrap .line1-writeus .form_wrap:nth-child(8) {
    width: 64%;
    margin-bottom: 0
}

.contact-wrap .write-tous-wrap .line1-writeus .mandatory-line {
    margin-top: 0;
    float: right;
    width: 64%
}

.contact-wrap .write-tous-wrap .line1-writeus .btn-sbmit {
    background: #015898!important;
    margin-right: 30px
}

.contact-wrap .write-tous-wrap .line1-writeus .btn-sbmit:hover {
    background: #033f6b!important
}

.contact-wrap .write-tous-wrap .line1-writeus .btn-clear {
    border: 2px solid #015898;
    color: #015898;
    background: #fff
}

.contact-wrap .write-tous-wrap .line1-writeus .btn-clear:hover {
    background: #015898!important;
    border: 2px solid #015898;
    color: #fff
}

.addend-wrap {
    padding: 0;
    margin: 0
}

.addend-wrap .addend-fund-cams-box {
    padding: 0;
    margin: 0
}

.addend-wrap .addend-fund-cams-box .addend-tab {
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: "Roboto", sans-serif;
    border: 2px solid #dbdbdb;
    border-radius: 60px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.addend-wrap .addend-fund-cams-box .addend-tab li {
    float: left;
    width: 50%;
    text-align: center;
    margin: 0;
    border-radius: 60px;
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.addend-wrap .addend-fund-cams-box .addend-tab a {
    position: relative;
    padding: 20px 0;
    float: left;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    width: 100%;
    display: block;
    color: #9c9c9c
}

.addend-wrap .addend-fund-cams-box .addend-tab .active {
    background: #04cdff
}

.addend-wrap .addend-fund-cams-box .addend-tab .active a {
    color: #fff
}

.addend-wrap .addend-fund-cams-box .addend-tab-content {
    margin: 55px 0
}

.addend-wrap .addend-fund-cams-box .addend-tab-content .select-tabs-year {
    display: none
}

.addend-wrap .addend-fund-cams-box .addend-tab-content ul.addend-list {
    padding: 0;
    margin: 0;
    border: 2px solid #eee
}

.addend-wrap .addend-fund-cams-box .addend-tab-content ul.addend-list li {
    list-style: none;
    position: relative;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 400;
    padding: 0;
    line-height: 22px
}

.addend-wrap .addend-fund-cams-box .addend-tab-content ul.addend-list li a {
    color: #015898;
    padding: 30px 30px 30px 90px;
    display: block
}

.addend-wrap .addend-fund-cams-box .addend-tab-content ul.addend-list li a:hover {
    color: #333
}

.addend-wrap .addend-fund-cams-box .addend-tab-content ul.addend-list li:before {
    content: '\f1c1';
    position: absolute;
    left: 50px;
    top: 30px;
    width: 17px;
    height: 22px;
    font-family: FontAwesome;
    font-size: 20px;
    color: #015898;
    font-weight: 100
}

.addend-wrap .addend-fund-cams-box .addend-tab-content ul.addend-list li:nth-child(even) {
    background: #eee
}

.tabs-wrapper select.tab-nav {
    display: none
}

.tabs-wrapper ul.tab-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative
}

.tabs-wrapper ul.tab-nav .topadden-navbox {
    width: 450px;
    position: relative
}

.tabs-wrapper ul.tab-nav .topadden-navbox:before {
    width: 8px;
    content: '';
    position: absolute;
    left: 0;
    top: -8px;
    background: #eee;
    height: 18px
}

.tabs-wrapper ul.tab-nav .topadden-navbox:after {
    width: 8px;
    content: '';
    position: absolute;
    left: 0;
    top: -8px;
    background: #eee;
    height: 18px;
    left: auto;
    right: 0;
    top: -8px
}

.tabs-wrapper ul.tab-nav .addend-archive-box {
    position: absolute;
    right: 0;
    top: 0;
    width: 270px;
    text-align: right
}

.tabs-wrapper ul.tab-nav .addend-archive-box .archivetxt {
    position: absolute;
    right: 165px;
    top: 5px;
    text-transform: uppercase;
    font-family: "robotobold";
    color: #015898;
    font-size: 17px
}

.tabs-wrapper ul.tab-nav .addend-archive-box .select-archive-year {
    padding: 6px 0 6px 10px;
    margin: 0;
    position: relative;
    cursor: pointer;
    font-size: 16px;
    width: 150px;
    background: #eee;
    border-bottom: 2px solid #fff;
    text-align: left
}

.tabs-wrapper ul.tab-nav .addend-archive-box .select-archive-year:after {
    content: "";
    width: 0;
    height: 0;
    padding: 5px;
    border: solid #7a7a7a;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 7px;
    right: 14px;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in
}

.tabs-wrapper ul.tab-nav .greylinetab {
    position: absolute;
    height: 3px;
    background: #eee;
    top: 0;
    left: 0;
    width: 100%
}

.tabs-wrapper ul.tab-nav li {
    display: inline-block;
    margin: 0 7.5%
}

.tabs-wrapper ul.tab-nav li ul {
    display: none
}

.tabs-wrapper ul.tab-nav li ul li {
    display: block;
    margin: 0 0 10px 0
}

.tabs-wrapper ul.tab-nav li ul li a {
    padding: 0;
    margin: 0;
    color: #000;
    font-size: 13px
}

.tabs-wrapper ul.tab-nav li ul li a:after {
    display: none
}

.tabs-wrapper ul.tab-nav li ul li.active a {
    font-size: 13px
}

.tabs-wrapper ul.tab-nav li ul li.active a:after {
    display: none
}

.tabs-wrapper ul.tab-nav li:hover ul {
    display: block;
    position: absolute;
    left: 0;
    padding: 7px 7px 0;
    background: #eee;
    width: 100%;
    border-top: 3px solid #fff;
    margin-top: 5px;
    z-index: 9
}

.tabs-wrapper ul.tab-nav li a {
    text-decoration: none;
    color: #7c7c7c;
    padding: 20px 0 0;
    display: block;
    font-size: 16px;
    position: relative
}

.tabs-wrapper ul.tab-nav li a:hover {
    color: #015898
}

.tabs-wrapper ul.tab-nav li a:after {
    position: absolute;
    content: '';
    width: 11px;
    height: 11px;
    border-radius: 100%;
    background: #a7a7a7;
    top: -5px;
    left: 0;
    right: 0;
    margin: 0 auto
}

.tabs-wrapper ul.tab-nav li a:hover:after {
    background: #00cdff
}

.tabs-wrapper ul.tab-nav li.active a {
    color: #015898;
    font-size: 16px
}

.tabs-wrapper ul.tab-nav li.active a:after {
    width: 17px;
    height: 17px;
    top: -8px;
    background: #00cdff
}

.tabs-wrapper .target-tabs {
    overflow: hidden;
    position: relative;
    margin: 40px 0 0 0
}

.tabs-wrapper .target-tabs .tab-content {
    display: none;
    padding: 0
}

.tabs-wrapper .target-tabs .tab-content .tab-heading .tab-no {
    font-size: 28px;
    font-weight: light
}

.tabs-wrapper .target-tabs .tab-content.active {
    display: block
}

.tabs-wrapper .target-tabs .tab-content.inactive {
    position: absolute
}

.tabs-wrapper .target-tabs .tab-content a {
    text-decoration: none
}

.contentyear-dummy {
    padding: 40px;
    padding-bottom: 200px;
    font-size: 25px
}

.select-tabs-year {
    width: auto;
    cursor: pointer
}

.select-tabs-year .select1 {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 40px;
    font-family: "Roboto", sans-serif;
    font-weight: 400
}

.select-tabs-year .select1 .select-hidden {
    display: none;
    visibility: hidden;
    padding-right: 10px
}

.select-tabs-year .select1 .select-styled1 {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 3px 35px 5px 15px;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    background: url(../images/arrowslc1.png) no-repeat scroll 100% 0;
    width: 100%;
    font-size: 22px;
    color: #015898;
    border-bottom: 1px solid #a5a7a9
}

.invedu-wrap {
    padding: 0;
    margin: 0
}

.invedu-wrap .invedu-toptab-box {
    padding: 0
}

.invedu-wrap .tabNav1 {
    margin-bottom: 25px!important
}

.invedu-wrap .invedu-toptableft {
    float: left;
    width: 335px
}

.invedu-wrap .invedu-toptabright {
    float: right;
    width: 780px;
    font-size: 16px;
    color: #000;
    font-weight: 400;
    line-height: 24px;
    margin-top: 50px
}

.invedu-wrap .invedu-toptabright a {
    color: #015898
}

.invedu-wrap .invedu-toptabright a:hover {
    text-decoration: underline
}

.invedu-wrap .article-videowrap {
    padding: 0;
    margin: 90px 0 0 0
}

.invedu-wrap .article-videowrap ul.video-listing {
    padding: 0;
    margin: 0;
    text-align: center
}

.invedu-wrap .article-videowrap ul.video-listing li {
    display: inline-block;
    padding: 0;
    margin: 0 2% 5%;
    width: 29%;
    vertical-align: top;
    position: relative;
    overflow: hidden
}

.invedu-wrap .article-videowrap ul.video-listing li img {
    width: 100%;
    height: 250px;
    background: #eaeaea
}

@media(max-width:1199px) {
    .invedu-wrap .article-videowrap ul.video-listing li img {
        height: 200px
    }
}

@media(max-width:992px) {
    .invedu-wrap .article-videowrap ul.video-listing li img {
        height: 200px
    }
    .invedu-wrap .article-videowrap ul.video-listing li {
        padding: 0;
        margin: 0 2% 5%;
        width: 45%
    }
}

@media(max-width:767px) {
    .invedu-wrap .article-videowrap ul.video-listing li img {
        height: 185px
    }
    .addend-wrap .addend-fund-cams-box {
        padding: 0;
        margin: 60px 0 0 0
    }
}

.invedu-wrap .article-videowrap ul.video-listing li a {
    position: relative;
    display: block
}

.invedu-wrap .article-videowrap ul.video-listing li:not(.no-play-icon) a:before {
    content: "";
    width: 100%;
    height: 99%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.2);
    -webkit-transition: all .4s ease-out 0s;
    transition: all .4s ease-out 0s
}

.invedu-wrap .article-videowrap ul.video-listing li:not(.no-play-icon) a:hover:before {
    background: 0
}

.invedu-wrap .article-videowrap ul.video-listing li:not(.no-play-icon) a:after {
    content: '\f04b';
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    font: normal normal normal 60px/1 FontAwesome;
    color: #fff!important;
    -webkit-transition: all .4s ease-out 0s;
    transition: all .4s ease-out 0s
}

.invedu-wrap .article-videowrap ul.video-listing li a:hover:after {
    color: #e50104!important
}

.invedu-wrap .article-videowrap ul.video-listing li .videotxt {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #015898;
    padding-top: 15px;
    position: relative;
    z-index: 8;
    background: #fff
}

.invedu-wrap .article-videowrap ul.video-listing li .videotxt span {
    display: block;
    font-weight: 400;
    padding-top: 5px
}

.invedu-wrap .article-videowrap ul.video-listing li .videotxt a {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    color: #015898;
    position: relative;
    z-index: 8;
    background: #fff
}

.invedu-wrap .article-videowrap ul.video-listing li .videotxt a:after {
    display: none
}

.invedu-wrap .article-videowrap ul.video-listing li .videotxt a:before {
    display: none
}

.invedu-wrap .article-videowrap ul.video-listing li .lu_wrap a {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    color: #015898;
    display: inline-block;
    padding: 10px 15px 0
}

.invedu-wrap .article-videowrap ul.video-listing li .lu_wrap a:after {
    display: none
}

.invedu-wrap .article-videowrap ul.video-listing li .lu_wrap a:before {
    display: none
}

.invedu-wrap .article-videowrap ul.articles-wrap {
    padding: 0;
    margin-top: 20px
}

.invedu-wrap .article-videowrap ul.articles-wrap li {
    font-size: 15px;
    line-height: 22px;
    position: relative;
    margin-bottom: 20px
}

.invedu-wrap .article-videowrap ul.articles-wrap li a {
    padding: 0 0 15px 45px;
    color: #333;
    border-bottom: 1px solid #ccc;
    display: block
}

.invedu-wrap .article-videowrap ul.articles-wrap li a span {
    display: block;
    font-size: 18px;
    margin-bottom: 7px
}

.invedu-wrap .article-videowrap ul.articles-wrap li a:before {
    content: '\f1ea';
    position: absolute;
    left: 0;
    top: 0;
    font: normal normal normal 22px/1 FontAwesome
}

.invedu-wrap .article-videowrap ul.articles-wrap li a:hover {
    color: #015898
}

.invedu-wrap .article-videowrap ul.articles-box {
    margin: 0 -15px;
    font-size: 0;
    text-align: center
}

.invedu-wrap .article-videowrap ul.articles-box li {
    width: 22%;
    display: inline-block;
    border: 1px solid #ddd;
    margin: 15px;
    padding: 15px
}

.invedu-wrap .article-videowrap ul.articles-box li a {
    display: block;
    text-align: center;
    cursor: pointer
}

.invedu-wrap .article-videowrap ul.articles-box li .article_text a {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #015898;
    background: #ddd;
    padding: 5px;
    margin-top: 15px
}

.who-weare-wrap {
    width: 100%;
    margin: 0 auto
}

.who-weare-wrap h1 {
    border-bottom: 1px solid #d5d5d5;
    width: 100%;
    padding-bottom: 15px;
    margin-bottom: 45px;
    letter-spacing: -1px
}

.who-weare-wrap .tata-asset-box-outer {
    background: #fafafa;
    padding: 75px 0 65px
}

.who-weare-wrap .tata-group-box,
.who-weare-wrap .tata-asset-box {
    padding: 0;
    margin: 0 0 60px 0
}

.who-weare-wrap .tata-group-box h2,
.who-weare-wrap .tata-asset-box h2 {
    font-family: "Roboto", sans-serif;
    font-size: 36px;
    font-weight: 500;
    color: #5ccbfa;
    position: relative;
    margin-bottom: 65px
}

.who-weare-wrap .tata-group-box h2 span,
.who-weare-wrap .tata-asset-box h2 span {
    color: #015898
}

.who-weare-wrap .tata-group-box h2:after,
.who-weare-wrap .tata-asset-box h2:after {
    content: '';
    position: absolute;
    height: 5px;
    background: #a3352a;
    width: 40px;
    bottom: -25px;
    left: 0
}

.who-weare-wrap .tata-group-box .whowe-lrbox .whowe-left,
.who-weare-wrap .tata-asset-box .whowe-lrbox .whowe-left {
    width: 270px;
    float: left
}

.who-weare-wrap .tata-group-box .whowe-lrbox .whowe-left .whowe-leftimg,
.who-weare-wrap .tata-asset-box .whowe-lrbox .whowe-left .whowe-leftimg {
    position: relative;
    text-align: center;
    padding: 10px 0 0 0
}

.who-weare-wrap .tata-group-box .whowe-lrbox .whowe-left .whowe-leftimg:before,
.who-weare-wrap .tata-asset-box .whowe-lrbox .whowe-left .whowe-leftimg:before {
    content: '';
    position: absolute;
    left: 22px;
    bottom: -20px;
    height: 20px;
    width: 20px;
    border-left: 1px solid #0068b9;
    border-bottom: 1px solid #0068b9
}

.who-weare-wrap .tata-group-box .whowe-lrbox .whowe-left .whowe-leftimg:after,
.who-weare-wrap .tata-asset-box .whowe-lrbox .whowe-left .whowe-leftimg:after {
    content: '';
    position: absolute;
    right: 30px;
    top: -4px;
    height: 20px;
    width: 20px;
    border-top: 1px solid #0068b9;
    border-right: 1px solid #0068b9
}

.who-weare-wrap .tata-group-box .whowe-lrbox .whowe-right,
.who-weare-wrap .tata-asset-box .whowe-lrbox .whowe-right {
    width: 860px;
    float: left;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    margin-top: 0;
    letter-spacing: -0.2px
}

.who-weare-wrap .tata-group-box .whowe-lrbox .whowe-right p,
.who-weare-wrap .tata-asset-box .whowe-lrbox .whowe-right p {
    padding: 0;
    margin: 0 0 20px 0
}

.who-weare-wrap .tata-asset-box {
    margin-bottom: 0
}

.who-weare-wrap .tata-asset-box .whowe-lrbox .whowe-left .whowe-leftimg {
    position: relative;
    text-align: center;
    padding: 10px 0 0 0
}

.who-weare-wrap .tata-asset-box .whowe-lrbox .whowe-left .whowe-leftimg:before,
.who-weare-wrap .tata-asset-box .whowe-lrbox .whowe-left .whowe-leftimg:after {
    border: 0
}

.who-weare-wrap .tata-asset-box .whowe-lrbox .whowe-left .caption-assetimg {
    color: #235893;
    text-align: center;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    font-weight: 600
}

.who-weare-wrap .tata-asset-box .whowe-lrbox .whowe-right {
    color: #015898;
    width: 810px;
    margin-top: 28px
}

.who-weare-wrap .tata-asset-box .tata-asset-bott-txt {
    margin: 45px 0 0;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    letter-spacing: -0.2px
}

.who-weare-wrap .tata-asset-box .tata-asset-bott-txt p {
    padding: 0;
    margin: 0 0 20px 0
}

@media screen and (max-width:1255px) {
    .who-weare-wrap .tata-group-box .whowe-lrbox .whowe-right,
    .who-weare-wrap .tata-asset-box .whowe-lrbox .whowe-right {
        width: 700px
    }
}

@media screen and (max-width:990px) {
    .who-weare-wrap h1 {
        margin-bottom: 25px
    }
    .who-weare-wrap .tata-asset-box-outer {
        padding: 45px 0 35px
    }
    .who-weare-wrap .tata-group-box h2,
    .who-weare-wrap .tata-asset-box h2 {
        font-size: 30px
    }
    .who-weare-wrap .tata-group-box .whowe-lrbox .whowe-left,
    .who-weare-wrap .tata-asset-box .whowe-lrbox .whowe-left {
        width: 220px
    }
    .who-weare-wrap .tata-group-box .whowe-lrbox .whowe-left .whowe-leftimg img,
    .who-weare-wrap .tata-asset-box .whowe-lrbox .whowe-left .whowe-leftimg img {
        width: 100px
    }
    .who-weare-wrap .tata-group-box .whowe-lrbox .whowe-right,
    .who-weare-wrap .tata-asset-box .whowe-lrbox .whowe-right {
        width: 500px;
        font-size: 14px;
        line-height: 22px
    }
    .who-weare-wrap .tata-group-box .tata-asset-bott-txt,
    .who-weare-wrap .tata-asset-box .tata-asset-bott-txt {
        font-size: 14px;
        line-height: 22px;
        margin-top: 25px
    }
    .who-weare-wrap .tata-group-box {
        margin-bottom: 30px
    }
    .who-weare-wrap .tata-asset-box .whowe-lrbox .whowe-left {
        width: 220px
    }
    .who-weare-wrap .tata-asset-box .whowe-lrbox .whowe-left .caption-assetimg {
        font-size: 14px
    }
    .who-weare-wrap .tata-asset-box .whowe-lrbox .whowe-left .whowe-leftimg img {
        width: auto
    }
}

@media screen and (max-width:767px) {
    .who-weare-wrap .tata-group-box .whowe-lrbox .whowe-left,
    .who-weare-wrap .tata-asset-box .whowe-lrbox .whowe-left {
        width: 270px;
        float: none;
        margin: 0 auto
    }
    .who-weare-wrap .tata-group-box .whowe-lrbox .whowe-right,
    .who-weare-wrap .tata-asset-box .whowe-lrbox .whowe-right {
        width: auto;
        margin-top: 40px
    }
    .who-weare-wrap .tata-group-box .tata-asset-bott-txt,
    .who-weare-wrap .tata-asset-box .tata-asset-bott-txt {
        margin-top: 0
    }
    .who-weare-wrap .tata-group-box {
        margin-bottom: 30px
    }
    .who-weare-wrap .tata-asset-box .whowe-lrbox .whowe-left {
        width: 270px
    }
    .who-weare-wrap .tata-asset-box .whowe-lrbox .whowe-right {
        margin-top: 20px
    }
}

.rem-disc-wrap {
    width: 100%;
    margin: 0 auto
}

.rem-disc-wrap h1 {
    width: 100%;
    margin-bottom: 45px;
    letter-spacing: -1px
}

.rem-disc-wrap .remdisc-fields-wrap {
    width: 940px;
    margin-bottom: 60px
}

.rem-disc-wrap .remdisc-fields-wrap .remdisc-field-left,
.rem-disc-wrap .remdisc-fields-wrap .remdisc-field-right {
    float: left;
    width: 45%
}

.rem-disc-wrap .remdisc-fields-wrap .remdisc-field-left span,
.rem-disc-wrap .remdisc-fields-wrap .remdisc-field-right span {
    font-size: 22px;
    color: #333;
    font-weight: 400;
    letter-spacing: -0.5px
}

.rem-disc-wrap .remdisc-fields-wrap .remdisc-field-left .inputstyle-form,
.rem-disc-wrap .remdisc-fields-wrap .remdisc-field-right .inputstyle-form {
    margin-top: 25px
}

.rem-disc-wrap .remdisc-fields-wrap .remdisc-field-left .parameter-select,
.rem-disc-wrap .remdisc-fields-wrap .remdisc-field-right .parameter-select {
    padding: 0;
    margin: 23px 0 0;
    width: 100%
}

.parameter-select .select1 select {
    background: url(../images/arrowslc1.png) no-repeat scroll 100% 0;
    width: 100%;
    font-size: 22px;
    padding-left: 0
}

.parameter-select .select1 select option {
    font-size: 16px;
    color: #333
}

.rem-disc-wrap .remdisc-fields-wrap .remdisc-field-left .parameter-select .select,
.rem-disc-wrap .remdisc-fields-wrap .remdisc-field-right .parameter-select .select {
    width: 100%;
    font-size: 22px;
    color: #333
}

.rem-disc-wrap .remdisc-fields-wrap .remdisc-field-left .parameter-select .select .select-styled,
.rem-disc-wrap .remdisc-fields-wrap .remdisc-field-right .parameter-select .select .select-styled {
    border-bottom: 1px solid #a5a7a9;
    padding: 5px 10px 5px 0;
    background: 0
}

.rem-disc-wrap .remdisc-fields-wrap .remdisc-field-left .parameter-select .select .select-styled.active,
.rem-disc-wrap .remdisc-fields-wrap .remdisc-field-right .parameter-select .select .select-styled.active {
    background: #fff
}

.rem-disc-wrap .remdisc-fields-wrap .remdisc-field-left .parameter-select .select .select-options,
.rem-disc-wrap .remdisc-fields-wrap .remdisc-field-right .parameter-select .select .select-options {
    font-size: 18px;
    background: #fafafa
}

.rem-disc-wrap .remdisc-fields-wrap .remdisc-field-left .parameter-select .select .select-options li,
.rem-disc-wrap .remdisc-fields-wrap .remdisc-field-right .parameter-select .select .select-options li {
    text-indent: 5px;
    border-top: 1px solid #fff;
    float: none;
    margin-bottom: 0
}

.rem-disc-wrap .remdisc-fields-wrap .remdisc-field-left .parameter-select .select .select-options li:hover,
.rem-disc-wrap .remdisc-fields-wrap .remdisc-field-right .parameter-select .select .select-options li:hover {
    background: #fff
}

.rem-disc-wrap .remdisc-fields-wrap .remdisc-field-right {
    float: right
}

.rem-disc-wrap .remdisc-fields-wrap .rem-bottom-buttons {
    padding: 0;
    margin-top: 40px
}

.rem-disc-wrap .remdisc-fields-wrap .rem-bottom-buttons small {
    font-size: 12px;
    display: block;
    margin-bottom: 25px
}

.rem-disc-wrap .remdisc-fields-wrap .rem-bottom-buttons .btn-sbmit {
    background: #015898!important;
    margin-right: 8px
}

.rem-disc-wrap .remdisc-fields-wrap .rem-bottom-buttons .btn-sbmit:hover {
    background: #033f6b!important
}

.rem-disc-wrap .remdisc-fields-wrap .rem-bottom-buttons .btn-clear {
    border: 2px solid #015898;
    color: #015898;
    background: #fff
}

.rem-disc-wrap .remdisc-fields-wrap .rem-bottom-buttons .btn-clear:hover {
    background: #015898;
    color: #fff
}

.rem-disc-wrap .remdisc-fields-wrap .remdisc-field-right .parameter-hiddenfield {
    margin-top: 40px
}

.para-fields {
    display: none
}

.rem-disc-detail-wrap {
    padding: 0
}

.rem-disc-detail-wrap h1 {
    border-bottom: 1px solid #d5d5d5;
    width: 100%;
    padding-bottom: 15px;
    margin-bottom: 35px;
    letter-spacing: -1px
}

.rem-disc-detail-wrap .rem-detail-linetop {
    font-size: 24px;
    color: #333;
    font-family: "Roboto", sans-serif;
    letter-spacing: -1px;
    font-weight: 400
}

.rem-disc-detail-wrap ul.remdetail-listing-number {
    margin: 35px 0 70px;
    counter-reset: mynumber;
    font-family: "Roboto", sans-serif
}

.rem-disc-detail-wrap ul.remdetail-listing-number li {
    position: relative;
    font-size: 18px;
    color: #000;
    margin: 0 0 35px 40px;
    font-weight: 600
}

.rem-disc-detail-wrap ul.remdetail-listing-number li:before {
    counter-increment: mynumber;
    content: counter(mynumber, upper-alpha) ")";
    font-size: 24px;
    color: #015898;
    font-weight: 400;
    position: absolute;
    left: -40px;
    top: -3px
}

.rem-disc-detail-wrap .rem-romanpoint1,
.rem-disc-detail-wrap .rem-romanpoint2 {
    position: relative;
    font-size: 18px;
    color: #000;
    margin: 0 0 15px 40px;
    font-weight: 600
}

.rem-disc-detail-wrap .rem-romanpoint1:before,
.rem-disc-detail-wrap .rem-romanpoint2:before {
    content: "I.";
    font-size: 24px;
    color: #015898;
    font-weight: 400;
    position: absolute;
    left: -40px;
    top: -4px
}

.rem-disc-detail-wrap .rem-romanpoint2:before {
    content: "II."
}

.rem-disc-detail-wrap .remu-ceo-table {
    border: 2px solid #eeecec;
    border-bottom: 0;
    margin-bottom: 20px;
    font-family: "Roboto", sans-serif;
    letter-spacing: -0.7px
}

.rem-disc-detail-wrap .remu-ceo-table table tr th,
.rem-disc-detail-wrap .remu-ceo-table table tr td {
    background: #eeecec;
    padding: 22px 0;
    font-weight: 500;
    font-size: 20px;
    color: #235893
}

.rem-disc-detail-wrap .remu-ceo-table table tr td {
    background: 0;
    font-size: 16px;
    color: #333;
    border-bottom: 2px solid #eeecec
}

.rem-disc-detail-wrap .remu-ceo-table table tr th:nth-child(1),
.rem-disc-detail-wrap .remu-ceo-table table tr td:nth-child(1) {
    width: 11%;
    text-align: center
}

.rem-disc-detail-wrap .remu-ceo-table table tr th:nth-child(2),
.rem-disc-detail-wrap .remu-ceo-table table tr td:nth-child(2) {
    width: 25%;
    text-align: left;
    padding: 0 1%
}

.rem-disc-detail-wrap .remu-ceo-table table tr th:nth-child(3),
.rem-disc-detail-wrap .remu-ceo-table table tr td:nth-child(3) {
    width: 38%;
    text-align: left;
    padding: 0 1%
}

.rem-disc-detail-wrap .remu-ceo-table table tr th:nth-child(4),
.rem-disc-detail-wrap .remu-ceo-table table tr td:nth-child(4) {
    width: 10%;
    text-align: right;
    padding-left: 1%;
    padding-right: 9%
}

.rem-disc-detail-wrap small {
    font-size: 12px;
    display: block;
    line-height: 25px;
    margin-bottom: 60px
}

@media screen and (max-width:1255px) {
    .rem-disc-wrap .remdisc-fields-wrap .remdisc-field-right .parameter-select {
        margin-top: 20px
    }
    .rem-disc-detail-wrap h1 {
        margin-bottom: 30px
    }
    .rem-disc-detail-wrap .rem-detail-linetop {
        font-size: 22px
    }
    .rem-disc-detail-wrap ul.remdetail-listing-number {
        margin: 30px 0 50px
    }
    .rem-disc-detail-wrap ul.remdetail-listing-number li {
        font-size: 16px;
        margin-bottom: 30px
    }
    .rem-disc-detail-wrap .rem-romanpoint1,
    .rem-disc-detail-wrap .rem-romanpoint2 {
        font-size: 16px
    }
    .rem-disc-detail-wrap .remu-ceo-table table tr th {
        font-size: 18px
    }
    .rem-disc-detail-wrap .remu-ceo-table table tr td {
        font-size: 14px
    }
    .rem-disc-detail-wrap .remu-ceo-table table tr th:nth-child(3),
    .rem-disc-detail-wrap .remu-ceo-table table tr td:nth-child(3) {
        width: 33%;
        padding-right: 4%
    }
    .rem-disc-detail-wrap .remu-ceo-table table tr th:nth-child(4),
    .rem-disc-detail-wrap .remu-ceo-table table tr td:nth-child(4) {
        width: 15%;
        padding-right: 4%
    }
}

@media screen and (max-width:990px) {
    .rem-disc-wrap .remdisc-fields-wrap {
        width: auto
    }
    .rem-disc-wrap .remdisc-fields-wrap .remdisc-field-left,
    .rem-disc-wrap .remdisc-fields-wrap .remdisc-field-right {
        float: none;
        width: 100%
    }
    .rem-disc-wrap .remdisc-fields-wrap .remdisc-field-left {
        margin-bottom: 25px
    }
    .rem-disc-detail-wrap h1 {
        margin-bottom: 30px
    }
    .rem-disc-detail-wrap .rem-detail-linetop {
        font-size: 22px
    }
    .rem-disc-detail-wrap ul.remdetail-listing-number {
        margin: 30px 0 50px
    }
    .rem-disc-detail-wrap ul.remdetail-listing-number li {
        font-size: 16px;
        margin-bottom: 30px
    }
    .rem-disc-detail-wrap .rem-romanpoint1,
    .rem-disc-detail-wrap .rem-romanpoint2 {
        font-size: 16px
    }
    .rem-disc-detail-wrap .remu-ceo-table table tr th {
        font-size: 18px
    }
    .rem-disc-detail-wrap .remu-ceo-table table tr td {
        font-size: 14px
    }
    .rem-disc-detail-wrap .remu-ceo-table table tr th:nth-child(3),
    .rem-disc-detail-wrap .remu-ceo-table table tr td:nth-child(3) {
        width: 33%;
        padding-right: 4%
    }
    .rem-disc-detail-wrap .remu-ceo-table table tr th:nth-child(4),
    .rem-disc-detail-wrap .remu-ceo-table table tr td:nth-child(4) {
        width: 15%;
        padding-right: 4%
    }
}

@media screen and (max-width:767px) {
    .rem-disc-detail-wrap h1 {
        margin-bottom: 20px
    }
    .rem-disc-detail-wrap .rem-detail-linetop {
        font-size: 20px
    }
    .rem-disc-detail-wrap ul.remdetail-listing-number {
        margin: 20px 0 35px
    }
    .rem-disc-detail-wrap ul.remdetail-listing-number li {
        margin-bottom: 20px;
        font-size: 15px
    }
    .rem-disc-detail-wrap .rem-romanpoint1,
    .rem-disc-detail-wrap .rem-romanpoint2 {
        font-size: 15px
    }
    .rem-disc-detail-wrap .remu-ceo-table table tr th {
        font-size: 15px
    }
    .rem-disc-detail-wrap .remu-ceo-table table tr td {
        font-size: 13px
    }
    .rem-disc-detail-wrap .remu-ceo-table table tr th:nth-child(3),
    .rem-disc-detail-wrap .remu-ceo-table table tr td:nth-child(3) {
        width: 30%;
        padding-right: 4%
    }
    .rem-disc-detail-wrap .remu-ceo-table table tr th:nth-child(4),
    .rem-disc-detail-wrap .remu-ceo-table table tr td:nth-child(4) {
        width: 18%;
        padding-right: 4%
    }
    .rem-disc-detail-wrap small {
        margin-bottom: 20px
    }
}

@media screen and (max-width:599px) {
    .rem-disc-detail-wrap h1 {
        margin-bottom: 20px;
        padding-bottom: 5px
    }
    .rem-disc-detail-wrap .rem-detail-linetop {
        font-size: 20px
    }
    .rem-disc-detail-wrap ul.remdetail-listing-number {
        margin: 20px 0 35px
    }
    .rem-disc-detail-wrap ul.remdetail-listing-number li {
        margin-bottom: 20px;
        margin-left: 30px;
        font-size: 15px
    }
    .rem-disc-detail-wrap ul.remdetail-listing-number li:before {
        font-size: 20px;
        left: -30px
    }
    .rem-disc-detail-wrap .rem-romanpoint1,
    .rem-disc-detail-wrap .rem-romanpoint2 {
        font-size: 15px;
        margin-left: 30px
    }
    .rem-disc-detail-wrap .rem-romanpoint1:before,
    .rem-disc-detail-wrap .rem-romanpoint2:before {
        font-size: 20px;
        left: -30px
    }
    .rem-disc-detail-wrap .remu-ceo-table table tr th {
        font-size: 15px
    }
    .rem-disc-detail-wrap .remu-ceo-table table tr td {
        font-size: 13px
    }
    .rem-disc-detail-wrap .remu-ceo-table table tr th:nth-child(2),
    .rem-disc-detail-wrap .remu-ceo-table table tr td:nth-child(2) {
        width: 30%
    }
    .rem-disc-detail-wrap .remu-ceo-table table tr th:nth-child(3),
    .rem-disc-detail-wrap .remu-ceo-table table tr td:nth-child(3) {
        width: 24%;
        padding-right: 2%
    }
    .rem-disc-detail-wrap .remu-ceo-table table tr th:nth-child(4),
    .rem-disc-detail-wrap .remu-ceo-table table tr td:nth-child(4) {
        width: 18%;
        padding-right: 2%
    }
    .rem-disc-detail-wrap small {
        margin-bottom: 20px
    }
    .fadv-wrap .fadv-accordion .fadv-accord-Content ul li {
        width: 100%
    }
}

@media screen and (max-width:479px) {
    .rem-disc-detail-wrap h1 {
        margin-bottom: 10px
    }
    .rem-disc-detail-wrap .rem-detail-linetop {
        font-size: 20px
    }
    .rem-disc-detail-wrap ul.remdetail-listing-number {
        margin: 20px 0 25px
    }
    .rem-disc-detail-wrap ul.remdetail-listing-number li {
        margin-bottom: 20px;
        margin-left: 30px;
        font-size: 15px
    }
    .rem-disc-detail-wrap ul.remdetail-listing-number li:before {
        font-size: 20px;
        left: -30px
    }
    .rem-disc-detail-wrap .rem-romanpoint1,
    .rem-disc-detail-wrap .rem-romanpoint2 {
        font-size: 15px
    }
    .rem-disc-detail-wrap .remu-ceo-table table tr th {
        font-size: 13px;
        padding: 15px 0;
        vertical-align: top
    }
    .rem-disc-detail-wrap .remu-ceo-table table tr td {
        font-size: 12px;
        padding: 15px 0;
        vertical-align: top
    }
    .rem-disc-detail-wrap .remu-ceo-table table tr th:nth-child(1),
    .rem-disc-detail-wrap .remu-ceo-table table tr td:nth-child(1) {
        width: 12%;
        padding: 8px 2% 8px 0;
        vertical-align: top
    }
    .rem-disc-detail-wrap .remu-ceo-table table tr th:nth-child(2),
    .rem-disc-detail-wrap .remu-ceo-table table tr td:nth-child(2) {
        width: 28%;
        padding: 8px 2% 8px 0
    }
    .rem-disc-detail-wrap .remu-ceo-table table tr th:nth-child(3),
    .rem-disc-detail-wrap .remu-ceo-table table tr td:nth-child(3) {
        width: 24%;
        padding: 8px 2% 8px 0
    }
    .rem-disc-detail-wrap .remu-ceo-table table tr th:nth-child(4),
    .rem-disc-detail-wrap .remu-ceo-table table tr td:nth-child(4) {
        width: 18%;
        padding: 8px 4% 8px 0
    }
    .rem-disc-detail-wrap small {
        margin-bottom: 20px;
        line-height: 20px
    }
    .rem-disc-detail-wrap .remu-ceo-table {
        margin-bottom: 10px
    }
    .momthlysip select,
    .momthlysip select.valid,
    .invested-select select,
    .invested-select select.valid {
        margin-left: 0
    }
}

.sipcalc-wrap.retirement_wrapper {
    margin: 15px 0 0
}

.sipcalc-wrap.retirement_wrapper.step_3 {
    margin: 15px 0 50px
}

.steps_box {
    padding: 15px 0
}

.steps_box .steps {
    margin-left: -10%
}

.steps_box .steps li {
    width: 33.33%;
    position: relative;
    z-index: 9
}

.steps_box .steps li span {
    border-radius: 100%;
    background: #5ccbfa;
    width: 35px;
    height: 35px;
    line-height: 35px;
    position: relative;
    font-size: 20px;
    color: #015898;
    border: 2px solid #d5eff9
}

.steps_box .steps li span:before {
    content: "";
    background: #00cdff;
    display: block;
    z-index: -1;
    position: absolute;
    -webkit-transition: .5s;
    transition: .5s;
    -webkit-transform: scale(1);
    transform: scale(1)
}

.steps_box .steps li .line {
    background: transparent;
    height: 3px;
    top: 15px
}

.steps_box .steps li .line:before,
.steps_box .steps li .line:after {
    content: "";
    width: 40%;
    position: absolute;
    height: 3px;
    background: #c7dde5
}

.steps_box .steps li .line:before {
    left: 0
}

.steps_box .steps li .line:after {
    right: 0
}

.steps_box .steps li:first-child .line:before {
    display: none
}

.steps_box .steps li:last-child .line:after {
    display: none
}

.steps_box .steps li.active span {
    background: #015898;
    color: #fff
}

.steps_box .steps li.active .line:after,
.steps_box .steps li.active .line:before {
    background-color: #235893
}

.steps_box .steps li.active span:before {
    -webkit-transform: scale(1.4);
    transform: scale(1.4)
}

.steps_content {
    padding: 50px 0
}

.steps_content .step_head {
    font-size: 30px;
    margin: 0 0 50px;
    position: relative
}

.steps_content .step_head .icon {
    position: absolute;
    left: -50px;
    top: 10px
}

.steps_content .form_rows {
    margin: 0 0 50px
}

.steps_content .form_rows .cols_left,
.steps_content .form_rows .cols_right,
.steps_content .form_rows .cols_full_wd {
    width: 50%
}

.steps_content .form_rows .cols_left label,
.steps_content .form_rows .cols_right label,
.steps_content .form_rows .cols_full_wd label {
    margin: 0 0 10px;
    font-size: 22px
}

.steps_content .form_rows .cols_left .inputstyle-form,
.steps_content .form_rows .cols_right .inputstyle-form,
.steps_content .form_rows .cols_full_wd .inputstyle-form {
    color: #235893;
    font-weight: 500;
    margin: 0
}

.steps_content .form_rows .cols_left .select,
.steps_content .form_rows .cols_right .select,
.steps_content .form_rows .cols_full_wd .select {
    width: 100%;
    font-size: 22px;
    color: #015898
}

.steps_content .form_rows .cols_left .select .select-styled,
.steps_content .form_rows .cols_right .select .select-styled,
.steps_content .form_rows .cols_full_wd .select .select-styled {
    border-bottom: 1px solid #a5a7a9;
    padding: 7px 35px 10px 10px;
    background: 0
}

.steps_content .form_rows .cols_left .select .select-styled.active,
.steps_content .form_rows .cols_right .select .select-styled.active,
.steps_content .form_rows .cols_full_wd .select .select-styled.active {
    background: #fff
}

.steps_content .form_rows .cols_left .select .select-options,
.steps_content .form_rows .cols_right .select .select-options,
.steps_content .form_rows .cols_full_wd .select .select-options {
    font-size: 18px;
    background: #fafafa
}

.steps_content .form_rows .cols_left .select .select-options li,
.steps_content .form_rows .cols_right .select .select-options li,
.steps_content .form_rows .cols_full_wd .select .select-options li {
    text-indent: 10px;
    border-top: 1px solid #fff
}

.steps_content .form_rows .cols_left .select .select-options li:hover,
.steps_content .form_rows .cols_right .select .select-options li:hover,
.steps_content .form_rows .cols_full_wd .select .select-options li:hover {
    background: #fff
}

.steps_content .form_rows .cols_left .btn-sbmit,
.steps_content .form_rows .cols_right .btn-sbmit,
.steps_content .form_rows .cols_full_wd .btn-sbmit {
    background-color: #235893
}

.steps_content .form_rows .cols_left {
    padding-right: 10%
}

.steps_content .form_rows .cols_right {
    padding-left: 10%
}

.steps_content .form_rows .cols_full_wd {
    width: 100%
}

.steps_content .form_rows .cols_full_wd .select {
    width: 100px
}

.steps_content .form_rows .cols_full_wd .input_group {
    width: 150px;
    position: relative
}

.steps_content .form_rows .cols_full_wd .input_group .icon {
    position: absolute;
    left: 0;
    top: -7px;
    font-size: 28px;
    font-style: normal
}

.steps_content .form_rows .cols_full_wd .input_group .inputstyle-form {
    width: 100%;
    padding-left: 20px
}

.retirement_wrapper .calbox-white {
    clear: both
}

.retirement_wrapper .calbox-white .calbox-textwrap {
    margin: 100px auto 0!important
}

.retirement_wrapper .calbox-white .calbox-textwrap h4 {
    color: #000;
    font-size: 24px;
    font-weight: 400;
    text-align: left
}

.retirement_wrapper .calbox-white .calbox-textwrap span {
    display: block
}

.retirement_wrapper .calbox-white .calbox-textwrap span small {
    color: #1a68a2;
    font-size: 16px;
    font-weight: 400
}

.retirment_steps .w-80 {
    font-size: 16px;
    width: 80%;
    margin-bottom: 30px
}

.retirment_steps .imp-text {
    margin-top: 50px
}

@media screen and (max-width:1366px) {
    .steps_content .step_head .icon {
        position: static
    }
}

@media screen and (max-width:767px) {
    .steps_box .steps {
        margin-left: 0
    }
    .steps_content .step_head {
        font-size: 24px
    }
    .steps_content .form_rows {
        margin-bottom: 0
    }
    .steps_content .form_rows .cols_left,
    .steps_content .form_rows .cols_right {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 30px;
        margin-top: 30px
    }
    .steps_content .form_rows .cols_left .select,
    .steps_content .form_rows .cols_right .select {
        width: 100%;
        font-size: 18px
    }
    .steps_content .form_rows .cols_left label,
    .steps_content .form_rows .cols_right label {
        font-size: 18px
    }
    .steps_content .form_rows .btn-sbmit {
        display: inline-block
    }
}

@media screen and (max-width:479px) {
    .retirement_wrapper .calbox-white:before {
        top: 40px
    }
    .retirement_wrapper .calbox-white .calbox-textwrap {
        margin: 60px auto 0!important
    }
    .retirement_wrapper .calbox-white .calbox-textwrap h4 {
        font-size: 18px
    }
    .retirement_wrapper .calbox-white .calbox-textwrap span {
        font-size: 24px
    }
}

@media screen and (max-width:1500px) {
    .banner .owl-dots {
        bottom: 0
    }
}

@media only screen and (max-width:1340px) {
    .mainWrapper section .container {
        max-width: 95%
    }
    .mainWrapper section.aboutusSection ul li div {
        font-size: 1.7rem
    }
    .w-50 {
        width: 45%
    }
    .common-wrapper .tools h3 {
        font-size: 2.7rem
    }
    #main-wrap .bodyinner {
        max-width: 1190px
    }
    .current-nav-box {
        width: 290px
    }
    .tophead-wrap h1 {
        font-size: 35px;
        width: 470px
    }
    h1 {
        font-size: 35px;
        width: 470px
    }
    .investnow a {
        padding: 13px 30px
    }
    .funds-invest-wrap .fundleft h2,
    .funds-invest-wrap .invest-right h2 {
        font-size: 32px
    }
    h3 {
        font-size: 32px
    }
    .mininvest-amt-wrap .mininvest-box .amtwrap ul li .amthead {
        font-size: 22px
    }
    h4 {
        font-size: 22px
    }
    .mainWrapper section.footerSection .footermenu {
        padding: 50px 0
    }
    .mainWrapper section.footerSection .footermenu ul {
        width: 21.5%
    }
    .mainWrapper section.footerSection .footermenu ul.quickLink {
        width: 13%
    }
    .mainWrapper section.footerSection .footermenu ul.statutory {
        width: 29%
    }
    .mainWrapper section.footerSection .footermenu ul:nth-child(5) {
        width: 14%
    }
    .banner .bannertxt-wrap .banner-txt1,
    .banner .bannertxt-wrap .banner-txt2 {
        font-size: 30px
    }
    .banner .bannertxt-wrap .banner-txt2 {
        font-size: 50px;
        line-height: 55px
    }
    .banner .bannertxt-wrap .applynow {
        font-size: 16px
    }
    .contact-wrap .contact-map-wrap .contact-mapbox {
        width: 650px
    }
    .tabs-wrapper ul.tab-nav li a {
        padding: 20px 0 0
    }
    .acc-statement-wrap .bodyinner ul.acc-statement-toplist li {
        padding-right: 120px
    }
}

@media screen and (max-width:1255px) {
    .mainWrapper section .container {
        max-width: 95%
    }
    .investnow {
        float: left
    }
    .mainWrapper section.needHelpSection {
        padding: 20px 0 30px
    }
    .mainWrapper section.needHelpSection h3 {
        float: none;
        margin: 0 0 20px;
        line-height: normal
    }
    .mainWrapper section.needHelpSection ul {
        float: none;
        width: auto
    }
    .mainWrapper section.needHelpSection ul li {
        line-height: 30px
    }
    .mainWrapper section.needHelpSection ul li div {
        font-size: 1.6rem
    }
    .mainWrapper section.needHelpSection ul li p {
        font-size: 2.2rem
    }
    .mainWrapper section.needHelpSection ul li span {
        width: 60px;
        height: 60px;
        line-height: 92px
    }
    .mainWrapper section.needHelpSection ul li .callusimg,
    .mainWrapper section.needHelpSection ul li .emailimg {
        width: 40px
    }
    .mainWrapper section.footerSection .subscribe .newsletterUpdate {
        float: none
    }
    .mainWrapper section.footerSection .subscribe .socialIcon {
        float: none;
        margin: 20px 0 0 0
    }
    .mainWrapper section.aboutusSection ul li div {
        font-size: 1.7rem
    }
    .w-50 {
        width: 45%
    }
    .common-wrapper .tools h3 {
        font-size: 2.7rem
    }
    #main-wrap .bodyinner {
        max-width: 95%
    }
    .breadcrums {
        margin-bottom: 25px
    }
    .tophead-wrap {
        margin-bottom: 30px
    }
    .tophead-wrap h1 {
        float: none;
        margin-bottom: 20px;
        width: auto
    }
    .regular-growth {
        margin-left: 0
    }
    .mininvest-amt-wrap .mininvest-box .amtwrap ul li {
        width: 32%
    }
    .sys-plans-wrap {
        width: 95%
    }
    .scheme-wrap {
        width: 100%
    }
    .download-wrap {
        width: 90%;
        margin-bottom: 30px
    }
    .navdivi-box .content-navs {
        margin-top: 50px
    }
    .navdivi-box .content-navs .select-cathead {
        font-size: 24px
    }
    .navdivi-box .content-navs .fund-catname-wrap {
        margin-bottom: 0
    }
    .navdivi-box .content-navs .fund-catname-wrap .fund-cat {
        width: 45%
    }
    .navdivi-box .content-navs .fund-catname-wrap .fund-name {
        width: 100%
    }
    .navdivi-box .content-navs .fund-catname-wrap .fund-name input[type="checkbox"]:not(old) {
        margin-top: 40px;
        width: 35px
    }
    .navdivi-box .content-navs .fund-catname-wrap .fund-name input[type="checkbox"]:not(old)+label {
        line-height: 32px
    }
    .result-nav-wrap .tablewrap-resultnav .table-result th {
        padding: 20px 0;
        font-size: 16px
    }
    .result-nav-wrap .tablewrap-resultnav .table-result td {
        padding: 20px 0;
        font-size: 14px
    }
    .result-nav-wrap .tablewrap-resultnav .table-result td:nth-child(1) {
        text-align: left
    }
    .result-nav-wrap .tablewrap-resultnav .table-result .tdhead {
        font-size: 18px;
        line-height: 26px
    }
    .result-nav-wrap .tablewrap-resultnav .table-result .tdhead span {
        font-size: 14px
    }
    .navdivi-box .content-navs .fund-catname-wrap .fund-cat .select-head-funds-divi,
    .navdivi-box .content-navs .fund-catname-wrap .fund-name .select-head-funds-divi,
    .navdivi-box .content-navs .fund-catname-wrap .fund-cat .datepicker-from span,
    .navdivi-box .content-navs .fund-catname-wrap .fund-cat .datepicker-to span,
    .navdivi-box .content-navs .fund-catname-wrap .fund-name input[type="checkbox"]:not(old)+label,
    .navdivi-box .content-navs .fund-catname-wrap .fund-cat .datepicker-from .datepicker1,
    .navdivi-box .content-navs .fund-catname-wrap .fund-cat .datepicker-to .datepicker1,
    .navdivi-box .content-navs .fund-catname-wrap .fund-cat .select .select-styled,
    .navdivi-box .content-navs .fund-catname-wrap .fund-name .select .select-styled,
    .rem-disc-wrap .remdisc-fields-wrap .remdisc-field-left span,
    .rem-disc-wrap .remdisc-fields-wrap .remdisc-field-right span,
    .rem-disc-wrap .remdisc-fields-wrap .remdisc-field-left .parameter-select .select,
    .rem-disc-wrap .remdisc-fields-wrap .remdisc-field-right .parameter-select .select {
        font-size: 18px
    }
    .navdivi-box .content-navs .fund-catname-wrap .fund-cat .select .select-options,
    .navdivi-box .content-navs .fund-catname-wrap .fund-name .select .select-options {
        font-size: 16px
    }
    .sipcalc-wrap .sipcal-left {
        width: 620px
    }
    .sipcalc-wrap .sipcal-left .ranges-box .range-top {
        width: 72%
    }
    .sipcalc-wrap .sipcal-right {
        width: 30%
    }
    .banner .bannertxt-wrap .banner-txt1,
    .banner .bannertxt-wrap .banner-txt2 {
        font-size: 22px
    }
    .banner .bannertxt-wrap .banner-txt2 {
        font-size: 32px;
        line-height: 36px
    }
    .banner .bannertxt-wrap .applynow {
        font-size: 14px
    }
    .banner .bannertxt-wrap .applynow a {
        padding: 10px 30px
    }
    .banner .owl-dots {
        bottom: 0
    }
    .acc-statement-wrap .bodyinner ul.acc-statement-toplist li {
        padding-right: 0
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap {
        padding: 30px 0
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .acc-state-formhead {
        font-size: 22px;
        margin-bottom: 30px
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li {
        width: 46%;
        margin-bottom: 35px
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li .form-caption {
        font-size: 18px
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li:nth-child(2) {
        margin-right: 0
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li:nth-child(3) {
        margin-right: 8%
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li:nth-child(4) {
        margin-right: 0
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li:nth-child(5) {
        width: 100%
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li input[type=radio]:not(old)+label {
        font-size: 18px
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li .year-radios {
        margin-top: 0;
        line-height: 40px
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .datepicker-to-acc-state .calicon-acc,
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .datepicker-from-acc-state .calicon-acc {
        font-size: 28px
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .datepicker-to-acc-state .datepicker-acc-statement,
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .datepicker-from-acc-state .datepicker-acc-statement {
        margin-top: 15px
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .datepicker-to-acc-state span,
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .datepicker-from-acc-state span {
        font-size: 18px
    }
    .inputstyle-form {
        font-size: 18px;
        margin-top: 20px
    }
    .fadv-wrap .follow-txt {
        font-size: 22px
    }
    .fadv-wrap ul.fadv-liting-big li {
        font-size: 16px
    }
    .fadv-wrap .bullet-points-wrap .points-lines {
        font-size: 15px;
        margin-bottom: 10px
    }
    .fadv-wrap .fadv-accordion .fadv-accord-head {
        padding: 15px 0 15px 20px
    }
    .fadv-wrap .fadv-accordion .fadv-accord-head:after {
        top: 18px
    }
    .fadv-wrap .fadv-accordion .fadv-accord-Content ul li {
        font-size: 15px
    }
    .fadv-wrap .fadv-accordion .on:after {
        top: 24px
    }
    .fadv-wrap .kyd-wrap .kydhead {
        font-size: 22px;
        margin-bottom: 20px
    }
    .fadv-wrap .kyd-wrap p {
        font-size: 16px
    }
    .contact-wrap .contact-map-wrap .contact-mapbox {
        width: 58%
    }
    .contact-wrap .contact-map-wrap .contact-map-address {
        width: 40%
    }
    .contact-wrap .contact-map-wrap .contact-map-address .contact-accord-head {
        padding: 20px 70px 20px 10px;
        font-size: 18px
    }
    .contact-wrap .contact-map-wrap .contact-map-address .contact-accord-Content {
        padding: 15px 10px 20px
    }
    .contact-wrap .contact-map-wrap .contact-map-address .link-utilitypoint a {
        padding-left: 10px
    }
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap .form-caption {
        font-size: 18px
    }
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap .related-select {
        margin-top: 15px
    }
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap .related-select .select {
        font-size: 18px
    }
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap .txtareastyle-form {
        font-size: 18px
    }
    .tabs-wrapper ul.tab-nav li a {
        padding: 20px 0 0
    }
    .invedu-wrap .invedu-toptableft {
        width: 25%
    }
    .invedu-wrap .invedu-toptabright {
        width: 65%;
        margin-top: 20px;
        font-size: 15px;
        margin: 0
    }
    .invedu-wrap .article-videowrap {
        margin-top: 70px
    }
    .invedu-wrap .article-videowrap ul.video-listing li .videotxt {
        padding-top: 10px
    }
    .invedu-wrap .article-videowrap ul.video-listing li a:after {
        font-size: 50px
    }
    .total-expratio-wrap {
        max-width: 90%
    }
    .total-expratio-wrap .exp-ratiobox {
        margin-left: 6%
    }
    .total-expratio-wrap .change-exp-ratiobox {
        margin-left: 5%
    }
    .tipbox .showtip .riskomtrimg {
        width: 70%
    }
}

@media screen and (max-width:990px) {
    .mainWrapper section.needHelpSection ul li.callUs {
        width: 100%;
        margin-bottom: 30px
    }
    .mainWrapper .copyrightfooter {
        padding-bottom: 20px
    }
    .mainWrapper section.aboutusSection ul li {
        width: 50%
    }
    .mainWrapper section.aboutusSection p {
        margin: 20px 0 0
    }
    .mainWrapper section.aboutusSection .btn {
        margin: 30px 0
    }
    .mainWrapper section.footerSection .footermenu {
        padding: 20px 0 0;
        border-bottom: 0 solid #e1e1e1
    }
    .mainWrapper section.footerSection .footermenu ul,
    .mainWrapper section.footerSection .footermenu ul.quickLink,
    .mainWrapper section.footerSection .footermenu ul.statutory {
        float: none;
        width: 100%
    }
    .mainWrapper section.footerSection .footermenu ul:nth-child(5) {
        display: none
    }
    .mainWrapper section.footerSection .footermenu ul,
    .mainWrapper section.footerSection .footermenu-line2 ul {
        width: 100%
    }
    .breadcrums {
        font-size: 12px;
        display: none
    }
    .funds-invest-border {
        padding-bottom: 30px;
        margin-bottom: 30px
    }
    h1 {
        font-size: 30px;
        margin-top: 70px
    }
    h1 span {
        font-size: 12px;
        margin-top: 5px
    }
    .tophead-wrap h1 {
        font-size: 30px
    }
    .tophead-wrap h1 span {
        font-size: 12px;
        margin-top: 5px
    }
    .current-nav-box .current-nav {
        font-size: 20px
    }
    .current-nav-box .current-nav small {
        font-size: 12px
    }
    .current-nav-box .current-nav-price {
        font-size: 22px
    }
    .current-nav-box .current-nav-price small {
        font-size: 12px
    }
    .current-nav-box .current-nav-price small .arrow-green {
        font-size: 18px;
        top: -4px
    }
    .funds-invest-wrap .fundleft,
    .funds-invest-wrap .invest-right {
        width: auto;
        float: none
    }
    .funds-invest-wrap .fundleft {
        margin-bottom: 30px
    }
    .funds-invest-wrap .fundleft h2,
    .funds-invest-wrap .invest-right h2 {
        font-size: 28px;
        margin-bottom: 40px
    }
    .funds-invest-wrap .fundleft h2:after,
    .funds-invest-wrap .invest-right h2:after {
        bottom: -15px
    }
    h3 {
        font-size: 28px
    }
    .scheme-wrap {
        margin-bottom: 30px
    }
    .scheme-wrap .scheme-graph {
        padding: 20px
    }
    .scheme-wrap .scheme-graph .scheme-filter .returns,
    .scheme-wrap .scheme-graph .scheme-filter .invested {
        float: none
    }
    .scheme-wrap .scheme-graph .scheme-filter .invested {
        width: 420px;
        margin-top: 10px
    }
    .scheme-wrap .scheme-graph .scheme-filter .invested .invested-txt {
        margin-right: 36px
    }
    .scheme-wrap .scheme-graph .small {
        font-size: 12px
    }
    .mininvest-amt-wrap {
        padding: 40px 0;
        margin-bottom: 30px
    }
    .mininvest-amt-wrap .mininvest-box .amtwrap ul li {
        min-height: 160px
    }
    .mininvest-amt-wrap .mininvest-box .amtwrap ul li .amthead {
        font-size: 18px
    }
    .mininvest-amt-wrap .mininvest-box .amtwrap ul li .amt .rsamt {
        font-size: 60px
    }
    .mininvest-amt-wrap .mininvest-box .amtwrap ul li .amt .rsamt .rsicon {
        font-size: 50px
    }
    .mininvest-amt-wrap .mininvest-box .amtwrap ul li .amt-sbtxt {
        font-size: 14px
    }
    .plan-options-border {
        padding-bottom: 30px;
        margin-bottom: 30px
    }
    h4 {
        font-size: 18px
    }
    .sys-plans-wrap {
        margin-bottom: 30px
    }
    .sys-plans-wrap h3 {
        margin-bottom: 50px
    }
    .sys-plans-wrap .sip-swp-plans .sip-side,
    .sys-plans-wrap .sip-swp-plans .swp-side {
        float: none;
        width: auto;
        margin-bottom: 25px
    }
    .sys-plans-wrap .sip-swp-plans .swp-side {
        float: none
    }
    .sys-plans-wrap .plans-table {
        margin-top: 20px
    }
    .sys-plans-wrap .plans-table .bluetxt-plan {
        padding-left: 25px
    }
    .sys-plans-wrap .plans-table td {
        padding: 20px;
        font-size: 16px
    }
    .sys-plans-wrap .plansborder-bottom {
        margin-top: 25px
    }
    .sys-plans-wrap .planstable-small {
        margin-top: 15px
    }
    .sys-plans-wrap .load-structure {
        max-width: 100%;
        margin: 30px auto 0
    }
    .sipplan-box .monthly-quatab {
        margin-top: 20px
    }
    .sipplan-box .monthly-quatab a {
        font-size: 15px;
        padding: 15px 0
    }
    .sipplan-box .content {
        margin-top: 20px
    }
    .sipplan-box .content th {
        padding: 12px;
        font-size: 18px
    }
    .sipplan-box .content td {
        padding: 20px 20px;
        font-size: 36px
    }
    .sipplan-box .content td .siprs .sip-rsicon {
        top: 2px;
        left: -20px;
        font-size: 32px
    }
    .download-wrap h3 {
        margin-bottom: 50px
    }
    .download-wrap .download-box li {
        width: 50%
    }
    .navdivi-box .content-navs {
        margin-top: 30px
    }
    .navdivi-box .content-navs .select-cathead {
        font-size: 22px
    }
    .navdivi-box .content-navs .fund-catname-wrap {
        width: 100%
    }
    .navdivi-box .content-navs .fund-catname-wrap .since-incep {
        width: auto!important;
        float: none!important;
        padding-left: 0
    }
    .navdivi-box .content-navs .fund-catname-wrap .fund-cat,
    .navdivi-box .content-navs .fund-catname-wrap .fund-name {
        width: 100%;
        margin-bottom: 25px
    }
    .navdivi-box .content-navs .fund-catname-wrap .fund-name input[type="checkbox"]:not(old) {
        margin-top: 10px
    }
    .navdivi-box .content-navs .fund-catname-wrap .fund-cat .datepicker-from .datepicker1,
    .navdivi-box .content-navs .fund-catname-wrap .fund-cat .datepicker-to .datepicker1 {
        border-bottom: 1px solid #a5a7a9
    }
    .navdivi-box .content-navs .fund-catname-wrap .fund-type {
        float: none
    }
    .result-nav-wrap .tablewrap-resultnav .table-result th {
        padding: 20px 10px;
        font-size: 16px;
        width: 33%
    }
    .result-nav-wrap .tablewrap-resultnav .table-result td {
        padding: 20px 10px;
        font-size: 14px
    }
    .result-nav-wrap .tablewrap-resultnav .table-result td:nth-child(1) {
        text-align: left
    }
    .result-nav-wrap .tablewrap-resultnav .table-result .tdhead {
        font-size: 18px;
        line-height: 26px
    }
    .result-nav-wrap .tablewrap-resultnav .table-result .tdhead span {
        font-size: 14px
    }
    .result-nav-wrap .export-link {
        margin-top: 20px
    }
    .navdivi-box .content-navs .fund-catname-wrap .fund-cat .select-head-funds-divi,
    .navdivi-box .content-navs .fund-catname-wrap .fund-name .select-head-funds-divi,
    .navdivi-box .content-navs .fund-catname-wrap .fund-cat .datepicker-from span,
    .navdivi-box .content-navs .fund-catname-wrap .fund-cat .datepicker-to span,
    .navdivi-box .content-navs .fund-catname-wrap .fund-name input[type="checkbox"]:not(old)+label,
    .navdivi-box .content-navs .fund-catname-wrap .fund-cat .datepicker-from .datepicker1,
    .navdivi-box .content-navs .fund-catname-wrap .fund-cat .datepicker-to .datepicker1,
    .navdivi-box .content-navs .fund-catname-wrap .fund-cat .select .select-styled,
    .navdivi-box .content-navs .fund-catname-wrap .fund-name .select .select-styled {
        font-size: 17px
    }
    .navdivi-box .content-navs .fund-catname-wrap .fund-cat .select .select-options,
    .navdivi-box .content-navs .fund-catname-wrap .fund-name .select .select-options {
        font-size: 15px
    }
    .sipcalc-wrap {
        padding: 25px 0
    }
    .sipcalc-wrap .sipcal-left {
        width: 99%;
        margin: 0 auto
    }
    .sipcalc-wrap .sipcal-left .ranges-box .rate-return-wrap {
        max-width: 240px
    }
    .sipcalc-wrap .sipcal-left .ranges-box .rate-return-wrap .rate-return-left {
        font-size: 18px;
        width: 160px
    }
    .sipcalc-wrap .sipcal-left .ranges-box .years-wrap .years-range {
        width: 85%
    }
    .sipcalc-wrap .sipcal-left .ranges-box .monthy-invest-head {
        font-size: 18px
    }
    .sipcalc-wrap .sipcal-left .ranges-box .range-top {
        width: 65%
    }
    .sipcalc-wrap .sipcal-left .ranges-box .range-top .clickdrag {
        font-size: 12px
    }
    .sipcalc-wrap .sipcal-left .ranges-box .range-top .expected-input .expected-txt,
    .sipcalc-wrap .sipcal-left .ranges-box .range-top .monthly-input .expected-txt {
        font-size: 17px;
        text-align: center
    }
    .sipcalc-wrap .sipcal-right {
        display: none
    }
    .lineruler {
        margin: 0 2.16%!important
    }
    .banner .bannertxt-wrap .banner-txt1,
    .banner .bannertxt-wrap .banner-txt2 {
        font-size: 22px
    }
    .banner .bannertxt-wrap .banner-txt2 {
        font-size: 32px;
        line-height: 36px
    }
    .banner .bannertxt-wrap .applynow {
        font-size: 11px
    }
    .banner .bannertxt-wrap .applynow a {
        padding: 10px 30px
    }
    .banner .owl-dots {
        bottom: 0
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap {
        padding: 30px 0
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .acc-state-formhead {
        font-size: 22px;
        margin-bottom: 30px
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li {
        width: 46%
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li .form-caption {
        font-size: 18px
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li:nth-child(2) {
        margin-right: 0
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li:nth-child(3) {
        margin-right: 8%
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li:nth-child(4) {
        margin-right: 0;
        width: auto
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li:nth-child(5) {
        width: 100%
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li input[type=radio]:not(old)+label {
        font-size: 18px
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li .year-radios {
        margin-top: 0;
        line-height: 40px
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .datepicker-to-acc-state .calicon-acc,
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .datepicker-from-acc-state .calicon-acc {
        font-size: 28px
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .datepicker-to-acc-state .datepicker-acc-statement,
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .datepicker-from-acc-state .datepicker-acc-statement {
        margin-top: 15px
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .datepicker-to-acc-state span,
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .datepicker-from-acc-state span {
        font-size: 18px
    }
    .inputstyle-form {
        font-size: 18px;
        margin-top: 20px
    }
    .fadv-wrap .follow-txt {
        font-size: 22px
    }
    .fadv-wrap .commi-expe-wrap {
        padding: 30px 0
    }
    .fadv-wrap .commi-expe-wrap .commi-exp-text,
    .fadv-wrap .commi-expe-wrap .commi-exp-select {
        float: none
    }
    .fadv-wrap .commi-expe-wrap .commi-exp-text {
        margin-bottom: 10px
    }
    .fadv-wrap ul.fadv-liting-big li {
        font-size: 16px
    }
    .fadv-wrap .bullet-points-wrap .points-lines {
        font-size: 15px;
        margin-bottom: 10px
    }
    .fadv-wrap .fadv-accordion .fadv-accord-head {
        padding: 15px 0 15px 20px;
        font-size: 18px
    }
    .fadv-wrap .fadv-accordion .fadv-accord-head:before {
        width: 50px
    }
    .fadv-wrap .fadv-accordion .fadv-accord-head:after {
        top: 18px;
        right: 19px
    }
    .fadv-wrap .fadv-accordion .on:after {
        top: 24px
    }
    .fadv-wrap .kyd-wrap .kydhead {
        font-size: 22px;
        margin-bottom: 20px
    }
    .fadv-wrap .kyd-wrap p {
        font-size: 16px
    }
    .fadv-wrap .fa-quicklinks-wrap {
        padding: 30px 0 10px
    }
    .fadv-wrap .fa-quicklinks-wrap .fa-quicklinks-head {
        font-size: 22px;
        margin-bottom: 30px
    }
    .fadv-wrap .fa-quicklinks-wrap ul.fa-quicklinks {
        margin: 0 0 25px 0
    }
    .fadv-wrap .fa-quicklinks-wrap ul.fa-quicklinks li {
        font-size: 17px;
        width: 49%;
        margin-bottom: 20px
    }
    .contact-wrap .contact-map-wrap {
        margin: 60px 0 30px
    }
    .contact-wrap .contact-map-wrap .contact-mapbox {
        width: 100%;
        float: none;
        height: 300px;
        margin-top: 30px
    }
    .contact-wrap .contact-map-wrap .contact-map-address {
        width: 100%;
        float: none
    }
    .contact-wrap .contact-map-wrap .contact-map-address .contact-accord-head {
        padding: 20px 70px 20px 10px;
        font-size: 18px
    }
    .contact-wrap .contact-map-wrap .contact-map-address .contact-accord-Content {
        padding: 15px 10px 20px
    }
    .contact-wrap .contact-map-wrap .contact-map-address .link-utilitypoint a {
        padding-left: 10px
    }
    .contact-wrap .write-tous-wrap {
        padding: 30px 0
    }
    .contact-wrap .write-tous-wrap .line1-writeus {
        margin-top: 60px
    }
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap {
        width: 46%
    }
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap .form-caption {
        font-size: 18px
    }
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap .related-select {
        margin-top: 15px
    }
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap .related-select .select {
        font-size: 18px
    }
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap .related-select .select .select-options {
        font-size: 16px
    }
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap .related-select .select .select-options li {
        padding: 2px 0
    }
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap .txtareastyle-form {
        font-size: 18px
    }
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap:nth-child(2),
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap:nth-child(4),
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap:nth-child(6) {
        margin-right: 0
    }
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap:nth-child(3),
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap:nth-child(5),
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap:nth-child(7) {
        margin-right: 8%
    }
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap:nth-child(8) {
        width: 46%
    }
    .contact-wrap .write-tous-wrap .line1-writeus .mandatory-line {
        float: none;
        width: 100%;
        text-align: center
    }
    .addend-wrap .addend-fund-cams-box .addend-tab-content ul.addend-list li {
        font-size: 14px
    }
    .addend-wrap .addend-fund-cams-box .addend-tab-content ul.addend-list li a {
        padding: 20px 20px 20px 50px
    }
    .addend-wrap .addend-fund-cams-box .addend-tab-content ul.addend-list li:before {
        left: 20px;
        top: 20px
    }
    .tabs-wrapper ul.tab-nav .topadden-navbox {
        width: 360px
    }
    .tabs-wrapper ul.tab-nav li {
        margin: 0 7.24%
    }
    .tabs-wrapper ul.tab-nav li a {
        padding: 20px 0 0;
        font-size: 13px
    }
    .tabs-wrapper ul.tab-nav li.active a {
        font-size: 18px
    }
    .invedu-wrap .invedu-toptableft {
        width: 25%
    }
    .invedu-wrap .invedu-toptabright {
        width: 65%;
        margin-top: 20px;
        font-size: 15px;
        margin: 0
    }
    .invedu-wrap .article-videowrap {
        margin-top: 70px
    }
    .invedu-wrap .article-videowrap ul.video-listing li .videotxt {
        font-size: 14px
    }
    .invedu-wrap .article-videowrap ul.video-listing li a:after {
        font-size: 40px
    }
    .total-expratio-wrap .total-expratio-leftbox {
        width: 93%;
        float: none
    }
    .total-expratio-wrap .total-expratio-leftbox:after {
        border-bottom: 78px solid transparent
    }
    .total-expratio-wrap .exp-ratiobox,
    .total-expratio-wrap .change-exp-ratiobox {
        margin-bottom: 38px;
        margin-top: 35px
    }
    .total-expratio-wrap .change-exp-ratiobox {
        margin-left: 18%
    }
}

@media screen and (max-width:767px) {
    .mainWrapper section.needHelpSection ul li.email {
        width: auto
    }
    .mainWrapper section.needHelpSection ul li.email div {
        text-transform: none
    }
    .mainWrapper section.footerSection .subscribe .newsletterUpdate .btn {
        margin: 0 0 30px 0
    }
    .current-nav-box {
        width: 270px;
        float: right
    }
    .current-nav-box .current-nav {
        margin-right: 10px;
        font-size: 18px
    }
    .investnow {
        display: block;
        float: none;
        text-align: center;
        margin: 30px auto 10px;
        width: 330px
    }
    .investnow a {
        padding: 15px 40px
    }
    .investnow .investnow-btn-top {
        float: left
    }
    .investnow .addto-fav {
        float: left;
        margin: 13px 0 0 15px
    }
    .investnow .addto-fav a:before {
        width: 24px;
        padding: 6px 0 0 1px
    }
    .clr1 {
        clear: both
    }
    .funds-invest-wrap .fundstxt {
        font-size: 14px;
        line-height: 22px
    }
    .funds-invest-wrap .fundstxt .riskprofile {
        margin-top: 15px
    }
    .funds-invest-wrap .invest-right ul li span {
        font-size: 14px;
        line-height: 20px
    }
    .funds-invest-wrap .invest-right small {
        font-size: 12px
    }
    .mininvest-amt-wrap {
        padding: 40px 0;
        margin-bottom: 30px
    }
    .mininvest-amt-wrap .mininvest-box .amtwrap ul li {
        width: 49%
    }
    .mininvest-amt-wrap .mininvest-box .amtwrap ul li:nth-child(2) {
        border: 0
    }
    .mininvest-amt-wrap .mininvest-box .amtwrap ul li:nth-child(3) {
        min-height: auto
    }
    .mininvest-amt-wrap .mininvest-box .amtwrap ul li .amthead {
        font-size: 16px
    }
    .plan-options-wrap {
        margin: 0 auto
    }
    .plan-options-wrap h3 {
        margin-bottom: 50px
    }
    .plan-options-wrap .regular-plan,
    .plan-options-wrap .direct-plan {
        float: left;
        width: 270px
    }
    .plan-options-wrap .regular-plan .left-bluebox,
    .plan-options-wrap .direct-plan .left-bluebox {
        width: 95px;
        font-size: 15px;
        margin-right: 10px
    }
    .plan-options-wrap .regular-plan .right-txt,
    .plan-options-wrap .direct-plan .right-txt {
        width: 150px
    }
    .plan-options-wrap .regular-plan .right-txt ul,
    .plan-options-wrap .direct-plan .right-txt ul {
        margin: 20px 0 0 0
    }
    .plan-options-wrap .regular-plan .right-txt ul li,
    .plan-options-wrap .direct-plan .right-txt ul li {
        font-size: 15px
    }
    .plan-options-wrap .direct-plan {
        float: right
    }
    .download-wrap .download-box li {
        font-size: 14px
    }
    .download-wrap .download-box li a {
        padding: 7px 0 7px 30px
    }
    .download-wrap .download-box li a:before {
        font-size: 25px
    }
    .navdivi-box .content-navs .select-cathead {
        font-size: 20px
    }
    .navdivi-box .navs-tab a {
        padding: 18px 0;
        font-size: 16px
    }
    .result-nav-wrap .tablewrap-resultnav .table-result th {
        padding: 10px 10px;
        font-size: 14px
    }
    .result-nav-wrap .tablewrap-resultnav .table-result td {
        padding: 10px 10px;
        font-size: 13px
    }
    .result-nav-wrap .tablewrap-resultnav .table-result td:nth-child(1) {
        text-align: left
    }
    .result-nav-wrap .tablewrap-resultnav .table-result .tdhead {
        font-size: 15px;
        line-height: 20px
    }
    .result-nav-wrap .tablewrap-resultnav .table-result .tdhead span {
        font-size: 13px;
        line-height: 18px
    }
    .result-nav-wrap .export-link {
        margin-top: 20px
    }
    .holder a {
        font-size: 14px!important;
        padding: 5px 12px!important
    }
    .navdivi-box .content-navs .fund-catname-wrap .fund-cat .select-head-funds-divi,
    .navdivi-box .content-navs .fund-catname-wrap .fund-name .select-head-funds-divi,
    .navdivi-box .content-navs .fund-catname-wrap .fund-cat .datepicker-from span,
    .navdivi-box .content-navs .fund-catname-wrap .fund-cat .datepicker-to span,
    .navdivi-box .content-navs .fund-catname-wrap .fund-name input[type="checkbox"]:not(old)+label,
    .navdivi-box .content-navs .fund-catname-wrap .fund-cat .datepicker-from .datepicker1,
    .navdivi-box .content-navs .fund-catname-wrap .fund-cat .datepicker-to .datepicker1,
    .navdivi-box .content-navs .fund-catname-wrap .fund-cat .select .select-styled,
    .navdivi-box .content-navs .fund-catname-wrap .fund-name .select .select-styled,
    .rem-disc-wrap .remdisc-fields-wrap .remdisc-field-left span,
    .rem-disc-wrap .remdisc-fields-wrap .remdisc-field-right span,
    .rem-disc-wrap .remdisc-fields-wrap .remdisc-field-left .parameter-select .select,
    .rem-disc-wrap .remdisc-fields-wrap .remdisc-field-right .parameter-select .select {
        font-size: 16px
    }
    .navdivi-box .content-navs .fund-catname-wrap .fund-cat .select .select-options,
    .navdivi-box .content-navs .fund-catname-wrap .fund-name .select .select-options,
    .rem-disc-wrap .remdisc-fields-wrap .remdisc-field-left .parameter-select .select .select-options,
    .rem-disc-wrap .remdisc-fields-wrap .remdisc-field-right .parameter-select .select .select-options {
        font-size: 14px
    }
    .sipcalc-wrap .sipcal-left {
        margin: 0 auto
    }
    .sipcalc-wrap .sipcal-left .calbox-white {
        width: 100%
    }
    .sipcalc-wrap .sipcal-left .calbox-white:before {
        top: 70px
    }
    .sipcalc-wrap .sipcal-left .calbox-white .calbox-textwrap {
        width: 75%;
        margin-top: 18%;
        font-size: 20px
    }
    .sipcalc-wrap .sipcal-left .calbox-white .calbox-textwrap span {
        font-size: 32px
    }
    .sipcalc-wrap .sipcal-left .ranges-box .years-wrap .years-range {
        width: 85%
    }
    .sipcalc-wrap .sipcal-left .ranges-box .monthy-invest-head {
        font-size: 18px
    }
    .sipcalc-wrap .sipcal-left .ranges-box .range-top {
        width: 65%
    }
    .sipcalc-wrap .sipcal-left .ranges-box .range-top .clickdrag {
        font-size: 12px
    }
    .sipcalc-wrap .sipcal-left .ranges-box .range-top .expected-input .expected-txt,
    .sipcalc-wrap .sipcal-left .ranges-box .range-top .monthly-input .expected-txt {
        font-size: 17px;
        text-align: center
    }
    .sipcalc-wrap .sipcal-right {
        display: none
    }
    .lineruler {
        margin: 0 2.01%!important
    }
    .rangeslider__ruler {
        font-size: 15px!important
    }
    .riskprofile .tipbox .showtip {
        margin-left: -190px
    }
    .riskprofile .tipbox .showtip:after {
        left: 110px
    }
    .tipbox .showtip {
        bottom: auto;
        top: 32px;
        left: -196px;
        right: 0;
        width: 86vw;
        margin: 0 auto
    }
    .tipbox .showtip .riskomtrimg {
        width: 62%
    }
    .tipbox .showtip:after {
        top: -25px;
        left: 49%;
        border-color: transparent transparent #eaeaea transparent
    }
    .banner .bannertxt-wrap .banner-txt1,
    .banner .bannertxt-wrap .banner-txt2 {
        font-size: 16px
    }
    .banner .bannertxt-wrap .banner-txt2 {
        font-size: 24px;
        line-height: 30px
    }
    .banner .bannertxt-wrap .applynow a {
        padding: 8px 15px
    }
    .banner .owl-dots {
        bottom: 0
    }
    .acc-statement-wrap .bodyinner h1 {
        margin-bottom: 20px
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li .year-radios {
        line-height: 40px
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li .year-radios .fyear-mar-right {
        width: auto
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li .year-radios .radiosmall {
        display: block;
        margin-bottom: 0
    }
    .fadv-wrap .follow-txt {
        font-size: 20px
    }
    .fadv-wrap .commi-expe-wrap {
        padding: 30px 0
    }
    .fadv-wrap .commi-expe-wrap ul.commi-exp-pdflink li a {
        font-size: 14px
    }
    .fadv-wrap .commi-expe-wrap .commi-exp-text,
    .fadv-wrap .commi-expe-wrap .commi-exp-select {
        float: none
    }
    .fadv-wrap .commi-expe-wrap .commi-exp-text {
        margin-bottom: 10px;
        font-size: 20px
    }
    .fadv-wrap ul.fadv-liting-big {
        margin-bottom: 40px
    }
    .fadv-wrap ul.fadv-liting-big li {
        font-size: 15px;
        margin-bottom: 25px
    }
    .fadv-wrap .bullet-points-wrap .points-lines {
        font-size: 14px;
        margin-bottom: 10px
    }
    .fadv-wrap .fadv-accordion .fadv-accord-head {
        padding: 10px 0 10px 10px;
        font-size: 16px
    }
    .fadv-wrap .fadv-accordion .fadv-accord-head:before {
        width: 50px
    }
    .fadv-wrap .fadv-accordion .fadv-accord-head:after {
        top: 12px;
        right: 19px
    }
    .fadv-wrap .fadv-accordion .on:after {
        top: 18px
    }
    .fadv-wrap .fadv-accordion .fadv-accord-Content {
        font-size: 14px;
        padding: 10px 10px 20px 10px
    }
    .fadv-wrap .fadv-accordion .fadv-accord-Content ul li {
        font-size: 14px;
        margin-bottom: 10px
    }
    .fadv-wrap .kyd-wrap .kydhead {
        font-size: 20px;
        margin-bottom: 20px
    }
    .fadv-wrap .kyd-wrap p {
        font-size: 14px;
        line-height: 22px
    }
    .fadv-wrap .fa-quicklinks-wrap {
        padding: 30px 0 10px
    }
    .fadv-wrap .fa-quicklinks-wrap .fa-quicklinks-head {
        font-size: 20px;
        margin-bottom: 20px
    }
    .fadv-wrap .fa-quicklinks-wrap ul.fa-quicklinks {
        margin: 0 0 15px 0
    }
    .fadv-wrap .fa-quicklinks-wrap ul.fa-quicklinks li {
        font-size: 17px;
        width: 49%;
        margin-bottom: 20px
    }
    .contact-wrap .contact-map-wrap {
        margin: 60px 0 30px
    }
    .contact-wrap .contact-map-wrap .contact-mapbox {
        width: 100%;
        float: none;
        height: 400px;
        margin-top: 30px
    }
    .contact-wrap .contact-map-wrap .contact-map-address {
        width: 100%;
        float: none
    }
    .contact-wrap .contact-map-wrap .contact-map-address .contact-accord-head {
        padding: 20px 70px 20px 10px;
        font-size: 18px
    }
    .contact-wrap .contact-map-wrap .contact-map-address .contact-accord-Content {
        padding: 15px 10px 20px
    }
    .contact-wrap .contact-map-wrap .contact-map-address .contact-accord-Content .add-tollfree {
        margin: 10px 0
    }
    .contact-wrap .contact-map-wrap .contact-map-address .link-utilitypoint a {
        padding-left: 10px
    }
    .contact-wrap .write-tous-wrap {
        padding: 30px 0
    }
    .contact-wrap .write-tous-wrap .line1-writeus {
        margin-top: 60px
    }
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap {
        width: 46%
    }
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap .form-caption {
        font-size: 18px
    }
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap .related-select {
        margin-top: 15px
    }
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap .related-select .select {
        font-size: 18px
    }
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap .txtareastyle-form {
        font-size: 18px
    }
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap:nth-child(2),
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap:nth-child(4),
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap:nth-child(6) {
        margin-right: 0
    }
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap:nth-child(3),
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap:nth-child(5),
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap:nth-child(7) {
        margin-right: 8%
    }
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap:nth-child(8) {
        width: 46%
    }
    .contact-wrap .write-tous-wrap .line1-writeus .mandatory-line {
        float: none;
        width: 100%;
        text-align: center
    }
    .addend-wrap .addend-fund-cams-box .addend-tab-content {
        margin: 25px 0 0 0
    }
    .addend-wrap .addend-fund-cams-box .addend-tab-content ul.addend-list li {
        font-size: 14px
    }
    .addend-wrap .addend-fund-cams-box .addend-tab-content ul.addend-list li a {
        padding: 20px 20px 20px 50px
    }
    .addend-wrap .addend-fund-cams-box .addend-tab-content ul.addend-list li:before {
        left: 20px;
        top: 20px
    }
    .tabs-wrapper .target-tabs {
        margin-top: 15px
    }
    .tabs-wrapper ul.tab-nav {
        margin-bottom: 65px
    }
    .tabs-wrapper ul.tab-nav .addend-archive-box {
        top: 60px
    }
    .tabs-wrapper ul.tab-nav .topadden-navbox {
        width: auto
    }
    .tabs-wrapper ul.tab-nav li {
        margin: 0 9.24%
    }
    .tabs-wrapper ul.tab-nav li a {
        padding: 20px 0 0;
        font-size: 13px
    }
    .tabs-wrapper ul.tab-nav li.active a {
        font-size: 18px
    }
    .select-tabs-year {
        height: 20px
    }
    .invedu-wrap .article-videowrap ul.video-listing li {
        width: 45%
    }
    .invedu-wrap .article-videowrap ul.video-listing li .videotxt {
        font-size: 14px
    }
    .invedu-wrap .article-videowrap ul.video-listing li a:after {
        font-size: 40px
    }
    .invedu-wrap .article-videowrap ul.articles-box li {
        width: 43%
    }
    .total-expratio-wrap .total-expratio-leftbox {
        width: 91%;
        padding: 15px
    }
    .total-expratio-wrap .total-expratio-leftbox:after {
        border-bottom: 52px solid transparent;
        border-left: 26px solid #005899;
        right: -26px
    }
    .total-expratio-wrap .exp-ratiobox,
    .total-expratio-wrap .change-exp-ratiobox {
        margin-bottom: 38px;
        margin-top: 35px
    }
    .total-expratio-wrap .change-exp-ratiobox {
        margin-left: 12%
    }
}

@media screen and (max-width:599px) {
    h1 {
        font-size: 6vw;
        width: auto;
        margin-bottom: 15px
    }
    .fund-mgr-wrap {
        margin-bottom: 20px;
        padding-bottom: 0
    }
    .tophead-wrap h1 {
        font-size: 6vw;
        width: auto;
        margin-bottom: 15px
    }
    .regular-growth {
        margin: 0
    }
    .scheme-wrap .scheme-graph {
        padding: 10px 10px
    }
    .scheme-wrap .scheme-graph .scheme-filter .returns {
        width: 100%
    }
    .scheme-wrap .scheme-graph .scheme-filter .returns .returns-from {
        display: block;
        width: 100%;
        margin-bottom: 5px
    }
    .scheme-wrap .scheme-graph .scheme-filter .invested {
        width: 295px;
        margin-top: 0
    }
    .scheme-wrap .scheme-graph .scheme-filter .invested .invested-txt {
        display: block;
        width: 100%;
        margin-bottom: 5px
    }
    .scheme-wrap .scheme-graph .scheme-filter .select {
        margin-left: 0
    }
    .plan-options-wrap .regular-plan,
    .plan-options-wrap .direct-plan {
        float: none;
        width: 100%
    }
    .plan-options-wrap .regular-plan .left-bluebox,
    .plan-options-wrap .direct-plan .left-bluebox {
        width: 110px;
        font-size: 18px;
        margin-right: 30px
    }
    .plan-options-wrap .regular-plan .right-txt,
    .plan-options-wrap .direct-plan .right-txt {
        width: 60%
    }
    .plan-options-wrap .regular-plan .right-txt ul,
    .plan-options-wrap .direct-plan .right-txt ul {
        margin: 20px 0 0 0
    }
    .plan-options-wrap .regular-plan .right-txt ul li,
    .plan-options-wrap .direct-plan .right-txt ul li {
        font-size: 18px
    }
    .plan-options-wrap .direct-plan {
        float: none;
        margin-top: 20px
    }
    .download-wrap .download-box li {
        margin: 0 0 10px;
        font-size: 14px
    }
    .download-wrap .download-box li a {
        padding: 7px 0 7px 10px
    }
    .download-wrap .download-box li a:before {
        font-size: 25px
    }
    .navs-divi-container {
        padding: 25px 0
    }
    .navdivi-box .content-navs .fund-catname-wrap {
        margin-top: 25px
    }
    .navdivi-box .navs-tab {
        width: 290px
    }
    .navdivi-box .content-navs {
        margin-top: 20px
    }
    .navdivi-box .content-navs .select-cathead {
        font-size: 16px
    }
    .navdivi-box .navs-tab a {
        width: 143px
    }
    .result-nav-wrap .tablewrap-resultnav {
        width: 100%
    }
    .result-nav-wrap .tablewrap-resultnav .table-result td {
        line-height: normal
    }
    .result-nav-wrap .export-link {
        margin-top: 20px;
        text-align: center;
        float: none
    }
    .pager {
        margin-top: 10px!important
    }
    .holder a {
        font-size: 12px!important;
        padding: 5px 10px!important
    }
    .navdivi-box .content-navs .fund-catname-wrap .fund-cat .select-head-funds-divi,
    .navdivi-box .content-navs .fund-catname-wrap .fund-name .select-head-funds-divi,
    .navdivi-box .content-navs .fund-catname-wrap .fund-cat .datepicker-from span,
    .navdivi-box .content-navs .fund-catname-wrap .fund-cat .datepicker-to span,
    .navdivi-box .content-navs .fund-catname-wrap .fund-name input[type="checkbox"]:not(old)+label,
    .navdivi-box .content-navs .fund-catname-wrap .fund-cat .datepicker-from .datepicker1,
    .navdivi-box .content-navs .fund-catname-wrap .fund-cat .datepicker-to .datepicker1,
    .navdivi-box .content-navs .fund-catname-wrap .fund-cat .select .select-styled,
    .navdivi-box .content-navs .fund-catname-wrap .fund-name .select .select-styled {
        font-size: 18px
    }
    .navdivi-box .content-navs .fund-catname-wrap .fund-cat .datepicker-from .calicon,
    .navdivi-box .content-navs .fund-catname-wrap .fund-cat .datepicker-to .calicon {
        font-size: 24px
    }
    .searcenter {
        text-align: center
    }
    .navdivi-box .content-navs .fund-catname-wrap .fund-cat .datepicker-from,
    .navdivi-box .content-navs .fund-catname-wrap .fund-cat .datepicker-to {
        float: none;
        width: auto
    }
    .navdivi-box .content-navs .fund-catname-wrap .fund-cat .datepicker-from {
        margin-bottom: 25px
    }
    .navdivi-box .content-navs .fund-catname-wrap .fund-name input[type="checkbox"]:not(old) {
        width: 27px
    }
    .result-nav-wrap .tablewrap-resultnav .table-result td {
        text-align: left!important
    }
    .sipcalc-wrap {
        margin-bottom: 50px
    }
    .sipcalc-wrap .sipcal-left .calbox-white {
        background-size: 118%;
        height: 285px
    }
    .sipcalc-wrap .sipcal-left .calbox-white:before {
        top: 70px
    }
    .sipcalc-wrap .sipcal-left .calbox-white .calbox-textwrap {
        width: 90%;
        margin-top: 23%;
        font-size: 18px;
        line-height: 38px
    }
    .sipcalc-wrap .sipcal-left .calbox-white .calbox-textwrap span {
        font-size: 30px
    }
    .sipcalc-wrap .sipcal-left .ranges-box .range-top .monthly-input {
        left: -85px
    }
    .sipcalc-wrap .sipcal-left .ranges-box .range-top .inputstyle-amt {
        width: 100%;
        font-size: 20px;
        padding: 10px 0
    }
    .sipcalc-wrap .sipcal-left .ranges-box .range-top .expected-input,
    .sipcalc-wrap .sipcal-left .ranges-box .range-top .monthly-input {
        width: 155px
    }
    .lineruler {
        margin: 0 2.01%!important
    }
    .rangeslider__ruler {
        font-size: 15px!important
    }
    .tipbox .showtip {
        width: 92vw
    }
    .tipbox .showtip .riskomtrimg {
        width: 70%
    }
    .tipbox .showtip:after {
        left: 57%;
        border-color: transparent transparent #eaeaea transparent
    }
    .banner {
        margin-top: 40px
    }
    .banner .bannerimg .bannerimg-s {
        display: none
    }
    .banner .bannertxt-wrap .banner-txt1,
    .banner .bannertxt-wrap .banner-txt2 {
        font-size: 16px
    }
    .banner .bannertxt-wrap .banner-txt2 {
        font-size: 24px;
        line-height: 30px
    }
    .banner .bannertxt-wrap .applynow {
        font-size: 9px
    }
    .banner .bannertxt-wrap .applynow a {
        padding: 6px 11px
    }
    .banner .owl-dots {
        bottom: 0
    }
    .banner .owl-dots span {
        width: 15px;
        height: 15px;
        border-width: 2px!important
    }
    .acc-statement-wrap .bodyinner h1 {
        margin-bottom: 20px;
        padding-bottom: 5px
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap {
        padding: 20px 0
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .acc-state-formhead {
        font-size: 18px;
        margin-bottom: 20px
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li {
        width: 100%;
        margin-right: 0
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li .form-caption {
        font-size: 16px
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li input[type=radio]:not(old) {
        width: 36px
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li input[type=radio]:not(old)+label {
        font-size: 16px
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li .year-radios {
        margin-top: 0
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .datepicker-to-acc-state .calicon-acc,
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .datepicker-from-acc-state .calicon-acc {
        font-size: 28px
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .datepicker-to-acc-state .datepicker-acc-statement,
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .datepicker-from-acc-state .datepicker-acc-statement {
        margin-top: 10px;
        font-size: 16px
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .datepicker-to-acc-state span,
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .datepicker-from-acc-state span {
        font-size: 16px
    }
    .acc-statement-wrap .confirm-msgwrap {
        padding: 15px 0;
        font-size: 16px;
        line-height: 24px
    }
    .accstate-box .accstate-tab {
        width: 456px
    }
    .accstate-box .accstate-tab a {
        width: 226px
    }
    .inputstyle-form {
        font-size: 16px;
        margin-top: 20px
    }
    .fadv-wrap .follow-txt {
        font-size: 20px
    }
    .fadv-wrap .commi-expe-wrap {
        padding: 30px 0
    }
    .fadv-wrap .commi-expe-wrap ul.commi-exp-pdflink li a {
        font-size: 14px
    }
    .fadv-wrap .commi-expe-wrap .commi-exp-text,
    .fadv-wrap .commi-expe-wrap .commi-exp-select {
        float: none
    }
    .fadv-wrap .commi-expe-wrap .commi-exp-text {
        margin-bottom: 10px;
        font-size: 20px;
        width: auto
    }
    .fadv-wrap ul.fadv-liting-big {
        margin-bottom: 40px
    }
    .fadv-wrap ul.fadv-liting-big li {
        font-size: 15px;
        margin: 0 0 20px 30px
    }
    .fadv-wrap ul.fadv-liting-big li:before {
        font-size: 20px;
        left: -30px
    }
    .fadv-wrap .bullet-points-wrap {
        margin-top: 10px
    }
    .fadv-wrap .bullet-points-wrap .points-lines {
        font-size: 14px;
        margin-bottom: 10px
    }
    .fadv-wrap .fadv-accordion .fadv-accord-head {
        padding: 10px 0 10px 10px;
        font-size: 16px
    }
    .fadv-wrap .fadv-accordion .fadv-accord-head:before {
        width: 50px
    }
    .fadv-wrap .fadv-accordion .fadv-accord-head:after {
        top: 12px;
        right: 19px
    }
    .fadv-wrap .fadv-accordion .on:after {
        top: 18px
    }
    .fadv-wrap .fadv-accordion .fadv-accord-Content {
        font-size: 14px;
        padding: 10px 10px 20px 10px
    }
    .fadv-wrap .fadv-accordion .fadv-accord-Content ul li {
        font-size: 14px;
        margin-bottom: 10px
    }
    .fadv-wrap .kyd-wrap .linkskyd {
        margin: 30px 0;
        font-size: 18px
    }
    .fadv-wrap .kyd-wrap .kydhead {
        font-size: 20px;
        margin-bottom: 20px
    }
    .fadv-wrap .kyd-wrap p {
        font-size: 14px;
        line-height: 22px
    }
    .fadv-wrap .kyd-wrap ul {
        margin: 20px 0 20px 60px
    }
    .fadv-wrap .kyd-wrap ul li {
        font-size: 15px;
        margin-bottom: 10px
    }
    .fadv-wrap .fa-quicklinks-wrap {
        padding: 20px 0 10px
    }
    .fadv-wrap .fa-quicklinks-wrap .fa-quicklinks-head {
        font-size: 20px;
        margin-bottom: 20px
    }
    .fadv-wrap .fa-quicklinks-wrap ul.fa-quicklinks {
        margin: 0 0 15px 0
    }
    .fadv-wrap .fa-quicklinks-wrap ul.fa-quicklinks li {
        font-size: 17px;
        width: 100%;
        margin-bottom: 20px
    }
    .contact-wrap .contact-map-wrap {
        margin: 60px 0 30px
    }
    .contact-wrap .contact-map-wrap .contact-mapbox {
        width: 100%;
        float: none;
        height: 400px;
        margin-top: 30px
    }
    .contact-wrap .contact-map-wrap .contact-map-address {
        width: 100%;
        float: none
    }
    .contact-wrap .contact-map-wrap .contact-map-address .contact-accord-head {
        padding: 20px 70px 20px 10px;
        font-size: 16px
    }
    .contact-wrap .contact-map-wrap .contact-map-address .contact-accord-Content {
        padding: 15px 10px 20px
    }
    .contact-wrap .contact-map-wrap .contact-map-address .contact-accord-Content .co-addhead {
        font-size: 16px
    }
    .contact-wrap .contact-map-wrap .contact-map-address .contact-accord-Content .co-addlines,
    .contact-wrap .contact-map-wrap .contact-map-address .contact-accord-Content .add-tollfree {
        font-size: 14px
    }
    .contact-wrap .contact-map-wrap .contact-map-address .contact-accord-Content .add-tollfree {
        margin: 10px 0
    }
    .contact-wrap .contact-map-wrap .contact-map-address .link-utilitypoint a {
        padding-left: 10px;
        font-size: 17px
    }
    .contact-wrap .write-tous-wrap {
        padding: 30px 0
    }
    .contact-wrap .write-tous-wrap .line1-writeus {
        margin-top: 60px
    }
    .contact-wrap .write-tous-wrap .line1-writeus .btn-sbmit {
        margin-right: 0
    }
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap {
        width: 100%;
        margin-bottom: 30px
    }
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap .form-caption {
        font-size: 16px
    }
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap .related-select {
        margin-top: 15px
    }
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap .related-select .select {
        font-size: 16px
    }
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap .related-select .select .select-options {
        font-size: 15px
    }
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap .txtareastyle-form {
        font-size: 16px;
        margin-top: 20px
    }
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap:nth-child(2),
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap:nth-child(4),
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap:nth-child(6) {
        margin-right: 0
    }
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap:nth-child(3),
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap:nth-child(5),
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap:nth-child(7) {
        margin-right: 8%
    }
    .contact-wrap .write-tous-wrap .line1-writeus .form_wrap:nth-child(8) {
        width: 100%
    }
    .contact-wrap .write-tous-wrap .line1-writeus .mandatory-line {
        float: none;
        width: 100%;
        text-align: center
    }
    .redstar-txt {
        margin: 15px 0
    }
    .addend-wrap .addend-fund-cams-box .addend-tab a {
        font-size: 15px
    }
    .addend-wrap .addend-fund-cams-box .addend-tab-content {
        margin: 25px 0 0 0
    }
    .addend-wrap .addend-fund-cams-box .addend-tab-content ul.addend-list li {
        font-size: 14px
    }
    .addend-wrap .addend-fund-cams-box .addend-tab-content ul.addend-list li a {
        padding: 20px 20px 20px 50px
    }
    .addend-wrap .addend-fund-cams-box .addend-tab-content ul.addend-list li:before {
        left: 20px;
        top: 20px
    }
    .tabs-wrapper .target-tabs {
        margin-top: 15px
    }
    .tabs-wrapper ul.tab-nav li {
        margin: 0 8.24%
    }
    .tabs-wrapper ul.tab-nav li a {
        padding: 20px 0 0;
        font-size: 13px
    }
    .tabs-wrapper ul.tab-nav li.active a {
        font-size: 18px
    }
    .invedu-wrap .invedu-toptableft {
        width: 30%;
        float: none;
        margin: 0 auto 10px
    }
    .invedu-wrap .invedu-toptabright {
        width: 100%;
        margin-top: 20px;
        float: none;
        font-size: 15px;
        margin: 0
    }
    .invedu-wrap .article-videowrap {
        margin-top: 70px
    }
    .invedu-wrap .article-videowrap ul.video-listing li {
        width: 45%
    }
    .invedu-wrap .article-videowrap ul.video-listing li .videotxt {
        font-size: 14px
    }
    .invedu-wrap .article-videowrap ul.video-listing li a:after {
        font-size: 40px
    }
    .invedu-wrap .article-videowrap ul.articles-wrap li {
        font-size: 14px
    }
    .invedu-wrap .article-videowrap ul.articles-wrap li a span {
        font-size: 18px
    }
    .total-expratio-wrap .total-expratio-leftbox {
        width: 91%;
        padding: 15px
    }
    .total-expratio-wrap .total-expratio-leftbox:after {
        border-bottom: 52px solid transparent;
        border-left: 26px solid #005899;
        right: -26px
    }
    .total-expratio-wrap .exp-ratiobox {
        margin-bottom: auto;
        margin-top: 35px;
        width: 100%;
        height: 55px;
        float: none
    }
    .total-expratio-wrap .change-exp-ratiobox {
        margin-left: 6%;
        float: none;
        height: 65px;
        width: 100%
    }
}

@media screen and (max-width:479px) {
    .acc-statement-wrap .onlineifas {
        width: 100%;
        margin-bottom: 10px
    }
    h1 {
        font-size: 7vw;
        width: auto;
        margin-bottom: 15px
    }
    h2 {
        font-size: 25px!important;
        text-align: center
    }
    h2:after {
        right: 0;
        margin: 0 auto;
        height: 3px!important
    }
    .tophead-wrap {
        padding-bottom: 10px
    }
    .tophead-wrap h1 {
        font-size: 7vw;
        width: auto;
        margin-bottom: 15px
    }
    .regular-growth {
        float: none;
        display: block;
        margin: 0 auto
    }
    .regular-growth .select1 {
        cursor: pointer;
        display: block;
        position: relative;
        font-size: 14px;
        color: #323232;
        height: 40px;
        font-family: "Roboto", sans-serif;
        font-weight: 400;
        float: none;
        width: 240px;
        margin: 0 auto 15px
    }
    .current-nav-box {
        width: 130px;
        margin: 0 auto;
        display: block;
        float: none
    }
    .current-nav-box .current-nav {
        display: block;
        float: none;
        margin-bottom: 10px
    }
    .investnow {
        float: none;
        margin: 20px auto 10px;
        width: 186px
    }
    .investnow a {
        padding: 15px 50px
    }
    .scheme-wrap .scheme-graph .scheme-filter .returns {
        width: 100%
    }
    .scheme-wrap .scheme-graph .scheme-filter .returns .ofrs {
        margin: 10px 10px 0
    }
    .scheme-wrap .scheme-graph .scheme-filter .invested {
        width: 275px
    }
    .plan-options-wrap .regular-plan .left-bluebox,
    .plan-options-wrap .direct-plan .left-bluebox {
        width: 110px;
        margin-right: 5%;
        padding-left: 10px
    }
    .plan-options-wrap .regular-plan .right-txt,
    .plan-options-wrap .direct-plan .right-txt {
        width: 50%
    }
    .plan-options-wrap .regular-plan .right-txt ul,
    .plan-options-wrap .direct-plan .right-txt ul {
        margin: 20px 0 0 0
    }
    .plan-options-wrap .regular-plan .right-txt ul li,
    .plan-options-wrap .direct-plan .right-txt ul li {
        font-size: 18px
    }
    .plan-options-wrap .direct-plan {
        float: none;
        margin-top: 20px
    }
    .sipplan-box .monthly-quatab {
        width: 290px
    }
    .sipplan-box .monthly-quatab a {
        width: 143px
    }
    .mininvest-amt-wrap .mininvest-box .amtwrap ul li {
        width: 100%;
        min-height: auto;
        border: 0;
        border-bottom: 1px solid #ccc
    }
    .mininvest-amt-wrap .mininvest-box .amtwrap ul li:nth-child(2) {
        border-bottom: 1px solid #ccc;
        padding-bottom: 15px
    }
    .download-wrap .download-box li {
        width: 100%
    }
    .mininvest-amt-wrap .mininvest-box h3 {
        margin-bottom: 40px
    }
    .rptip:hover:after {
        bottom: 2em;
        left: -150px
    }
    .rptip:hover:before {
        bottom: 1.4em;
        left: 1.5em
    }
    .btn-wrapper {
        text-align: center;
        padding-top: 0
    }
    .btn-wrapper .btn {
        margin-top: 15px
    }
    .sipcalc-wrap {
        margin-bottom: 50px
    }
    .sipcalc-wrap .sipcal-left .calbox-white {
        background-size: 118%;
        height: auto;
        padding-bottom: 40px
    }
    .sipcalc-wrap .sipcal-left .calbox-white:before {
        top: 40px
    }
    .sipcalc-wrap .sipcal-left .calbox-white .calbox-textwrap {
        width: 90%;
        margin-top: 20%;
        font-size: 14px;
        line-height: 26px
    }
    .sipcalc-wrap .sipcal-left .calbox-white .calbox-textwrap span {
        font-size: 20px
    }
    .sipcalc-wrap .sipcal-left .ranges-box .monthy-invest-head {
        width: auto
    }
    .sipcalc-wrap .sipcal-left .ranges-box .range-top {
        width: 70%
    }
    .sipcalc-wrap .sipcal-left .ranges-box .range-top .inputstyle-amt {
        font-size: 18px
    }
    .sipcalc-wrap .sipcal-left .ranges-box .range-top .clickdrag {
        font-size: 10px;
        padding-top: 15px
    }
    .sipcalc-wrap .sipcal-left .ranges-box .range-top .expected-input,
    .sipcalc-wrap .sipcal-left .ranges-box .range-top .monthly-input {
        width: 50%;
        right: -25%
    }
    .sipcalc-wrap .sipcal-left .ranges-box .range-top .monthly-input {
        left: -24%
    }
    .lineruler {
        margin: 0 1.65%!important
    }
    .rangeslider__ruler {
        font-size: 15px!important
    }
    .hidesmall-calbox {
        display: none
    }
    .tipbox .showtip {
        width: 88vw
    }
    .tipbox .showtip .riskomtrimg {
        width: 90%
    }
    .tipbox .showtip:after {
        left: 53%;
        border-color: transparent transparent #eaeaea transparent
    }
    .banner {
        margin-top: 40px
    }
    .banner .bannerimg .bannerimg-b {
        display: none
    }
    .banner .bannerimg .bannerimg-s {
        display: block
    }
    .banner .bannertxt-wrap {
        width: auto;
        margin-top: 33%
    }
    .banner .bannertxt-wrap .banner-txt1,
    .banner .bannertxt-wrap .banner-txt2 {
        font-size: 20px
    }
    .banner .bannertxt-wrap .banner-txt2 {
        font-size: 28px;
        line-height: 35px
    }
    .banner .bannertxt-wrap .applynow {
        font-size: 9px;
        margin-right: 3px
    }
    .banner .bannertxt-wrap .applynow a {
        padding: 5px 10px
    }
    .banner .owl-dots {
        bottom: 0
    }
    .mainWrapper section.aboutusSection h2 {
        font-size: 2.7rem
    }
    .mainWrapper section.aboutusSection p {
        font-size: 1.5rem;
        padding: 0 3%
    }
    .mainWrapper section.aboutusSection ul li {
        width: 100%
    }
    .mainWrapper section.needHelpSection ul li span {
        float: none;
        margin: 0 auto;
        display: block;
        margin: 0 auto
    }
    .mainWrapper section.needHelpSection ul li div {
        text-align: center;
        width: 100%!important
    }
    .mainWrapper section.needHelpSection ul li.callUs,
    .mainWrapper section.needHelpSection ul li.email {
        float: none;
        padding: 0
    }
    .mainWrapper section.needHelpSection ul li.email p {
        font-size: 1.8rem
    }
    .mainWrapper .copyrightfooter .bottommenu li {
        padding: 0 5px
    }
    .acc-statement-wrap .bodyinner h1 {
        margin-bottom: 10px
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap {
        padding: 20px 0
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .acc-state-formhead {
        font-size: 18px;
        margin-bottom: 20px
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li input[type=radio]:not(old) {
        width: 36px
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li input[type=radio]:not(old)+label {
        font-size: 16px
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 li .year-radios .radiosmall {
        display: block;
        margin-bottom: 0
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .datepicker-to-acc-state,
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .datepicker-from-acc-state {
        float: none;
        width: 100%
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .datepicker-to-acc-state .calicon-acc,
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .datepicker-from-acc-state .calicon-acc {
        font-size: 28px
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .datepicker-to-acc-state .datepicker-acc-statement,
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .datepicker-from-acc-state .datepicker-acc-statement {
        margin-top: 0
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .datepicker-from-acc-state {
        margin-bottom: 20px
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .redstar-txt {
        margin-top: 10px
    }
    .acc-statement-wrap .acc-state-innerwrap-form .acc-state-formwrap .accf-line1 .btn-sbmit {
        margin-right: 10px
    }
    .accstate-box .accstate-tab {
        width: 306px
    }
    .accstate-box .accstate-tab a {
        width: 151px;
        font-size: 12px
    }
    .inputstyle-form {
        font-size: 16px;
        margin-top: 20px
    }
    .btn-sbmit,
    .btn-clear {
        padding: 12px 45px
    }
    .fadv-wrap .follow-txt {
        font-size: 20px
    }
    .fadv-wrap .commi-expe-wrap {
        padding: 20px 0
    }
    .fadv-wrap .commi-expe-wrap ul.commi-exp-pdflink li a {
        font-size: 14px
    }
    .fadv-wrap .commi-expe-wrap .commi-exp-text,
    .fadv-wrap .commi-expe-wrap .commi-exp-select {
        float: none
    }
    .fadv-wrap .commi-expe-wrap .commi-exp-text {
        margin-bottom: 10px;
        font-size: 18px;
        width: auto
    }
    .fadv-wrap ul.fadv-liting-big {
        margin: 20px 0 30px 0
    }
    .fadv-wrap ul.fadv-liting-big li {
        font-size: 15px;
        margin: 0 0 20px 30px
    }
    .fadv-wrap ul.fadv-liting-big li:before {
        font-size: 20px;
        left: -30px
    }
    .fadv-wrap .bullet-points-wrap {
        margin-top: 10px
    }
    .fadv-wrap .bullet-points-wrap .points-lines {
        font-size: 14px;
        margin-bottom: 10px
    }
    .fadv-wrap .fadv-accordion .fadv-accord-head {
        padding: 10px 40px 10px 10px;
        font-size: 15px
    }
    .fadv-wrap .fadv-accordion .fadv-accord-head:before {
        width: 35px
    }
    .fadv-wrap .fadv-accordion .fadv-accord-head:after {
        top: 12px;
        right: 11px;
        height: 7px;
        width: 7px
    }
    .fadv-wrap .fadv-accordion .on:after {
        top: 18px;
        height: 7px;
        width: 7px
    }
    .fadv-wrap .fadv-accordion .fadv-accord-Content {
        font-size: 14px;
        padding: 10px 10px 20px 10px
    }
    .fadv-wrap .fadv-accordion .fadv-accord-Content ul {
        margin-left: 20px
    }
    .fadv-wrap .fadv-accordion .fadv-accord-Content ul li {
        font-size: 14px;
        margin-bottom: 10px
    }
    .fadv-wrap .fadv-accordion .fadv-accord-Content ul li:before {
        left: -20px
    }
    .fadv-wrap .kyd-wrap .linkskyd {
        margin: 30px 0;
        font-size: 18px
    }
    .fadv-wrap .kyd-wrap .kydhead {
        font-size: 18px;
        margin-bottom: 20px
    }
    .fadv-wrap .kyd-wrap p {
        font-size: 14px;
        line-height: 22px
    }
    .fadv-wrap .kyd-wrap ul {
        margin: 20px 0 20px 60px
    }
    .fadv-wrap .kyd-wrap ul li {
        font-size: 15px;
        margin-bottom: 10px
    }
    .fadv-wrap .fa-quicklinks-wrap .fa-quicklinks-head {
        font-size: 20px;
        margin-bottom: 20px
    }
    .fadv-wrap .fa-quicklinks-wrap ul.fa-quicklinks {
        margin: 0 0 15px 0
    }
    .fadv-wrap .fa-quicklinks-wrap ul.fa-quicklinks li {
        font-size: 16px;
        width: 100%;
        margin-bottom: 10px
    }
    .addend-wrap .addend-fund-cams-box .addend-tab a {
        font-size: 12px
    }
    .addend-wrap .addend-fund-cams-box .addend-tab-content {
        margin: 15px 0 0 0
    }
    .addend-wrap .addend-fund-cams-box .addend-tab-content ul.addend-list li {
        font-size: 14px
    }
    .addend-wrap .addend-fund-cams-box .addend-tab-content ul.addend-list li a {
        padding: 20px 20px 20px 50px
    }
    .addend-wrap .addend-fund-cams-box .addend-tab-content ul.addend-list li:before {
        left: 20px;
        top: 20px
    }
    .tabs-wrapper .target-tabs {
        margin-top: 15px
    }
    .tabs-wrapper ul.tab-nav .addend-archive-box .archivetxt {
        font-size: 14px
    }
    .tabs-wrapper ul.tab-nav li {
        margin: 0 6.24%
    }
    .tabs-wrapper ul.tab-nav li a {
        padding: 20px 0 0;
        font-size: 13px
    }
    .tabs-wrapper ul.tab-nav li.active a {
        font-size: 18px
    }
    .invedu-wrap .invedu-toptableft {
        width: 40%
    }
    .invedu-wrap .invedu-toptabright {
        font-size: 14px
    }
    .invedu-wrap .article-videowrap {
        margin-top: 70px
    }
    .invedu-wrap .article-videowrap ul.video-listing li {
        width: 100%;
        margin: 0 0 30px
    }
    .invedu-wrap .article-videowrap ul.video-listing li .videotxt {
        font-size: 14px
    }
    .invedu-wrap .article-videowrap ul.video-listing li a:after {
        font-size: 40px
    }
    .invedu-wrap .article-videowrap ul.articles-box li {
        width: 90%
    }
    .total-expratio-wrap {
        overflow: hidden
    }
    .total-expratio-wrap .total-expratio-leftbox {
        width: 100%;
        padding: 10px
    }
    .total-expratio-wrap .change-exp-ratiobox {
        height: auto
    }
    .banner-outer .down-scroll {
        left: 8px;
        bottom: 24%;
        width: 5%
    }
    .navdivi-box .content-navs .fund-catname-wrap {
        margin-top: 25px
    }
    .navdivi-box .content-navs .fund-catname-wrap .searchbtn {
        padding: 13px 38px
    }
    .navdivi-box .content-navs .fund-catname-wrap .exportbtn-nav {
        padding: 11px 38px
    }
    .navdivi-box .navs-tab {
        width: 100%
    }
    .navdivi-box .content-navs {
        margin-top: 20px
    }
    .navdivi-box .content-navs .select-cathead {
        font-size: 16px
    }
    .navdivi-box .navs-tab a {
        width: 100%;
        font-size: 12px
    }
}

.invst_team_wrap {
    padding: 0
}

.invst_team_wrap .accstate-box .accstate-tab {
    margin: 0 auto
}

.invst_team_wrap .team_row {
    margin: 0 -35px;
    margin-top: 60px
}

.invst_team_wrap .team_row .team_col {
    width: 33.33%;
    float: left;
    padding: 0 35px
}

.invst_team_wrap .team_row .team_col .team_box {
    background: #dedede;
    position: relative;
    margin-bottom: 70px;
    overflow: hidden
}

.invst_team_wrap .team_row .team_col .team_box .member_desc {
    padding: 30px 30px 0;
    position: relative;
    min-height: 110px
}

.invst_team_wrap .team_row .team_col .team_box figure {
    overflow: hidden
}

.invst_team_wrap .team_row .team_col .team_box figure img {
    vertical-align: bottom;
    width: 100%;
    -webkit-transition: .3s all;
    transition: .3s all
}

.invst_team_wrap .team_row .team_col .team_box h4 {
    text-align: left;
    color: #000;
    font-size: 18px;
    margin: 0 0 7px;
    text-transform: uppercase
}

.invst_team_wrap .team_row .team_col .team_box p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    font-style: italic
}

.invst_team_wrap .team_row .team_col .team_box .view_profile {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 24px;
    z-index: 20;
    background: rgba(92, 230, 250, 0.8)
}

.invst_team_wrap .team_row .team_col .team_box .view_profile a {
    color: #fff;
    text-align: right;
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold
}

.invst_team_wrap .team_row .team_col .team_box .view_profile a span {
    display: inline-block;
    padding: 0 5px;
    border: solid 1px #fff;
    border-radius: 4px;
    margin-left: 5px;
    font-size: 16px
}

.invst_team_wrap .team_row .team_col .team_box:hover figure img {
    transform: scale(1.12);
    -webkit-transform: scale(1.12);
    -o-transform: scale(1.12)
}

@media(max-width:1024px) {
    .invst_team_wrap .team_row .team_col .team_box:hover figure img {
        transform: scale(1);
        -webkit-transform: scale(1);
        -o-transform: scale(1)
    }
    .desktopTxt {
        display: none
    }
    .deviceTxt {
        display: block
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.85);
    overflow-y: auto
}

.modal .modal-content {
    background-color: #fefefe;
    margin: 2.5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 960px
}

.modal .close {
    color: #aaa;
    float: right;
    font-weight: bold
}

.modal .close:hover,
.modal .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer
}

.member_modal .modal-header {
    text-align: center;
    margin: 0 0 40px 0
}

.member_modal .modal-header h2 {
    font-size: 40px;
    color: #235893;
    margin: 0 0 7px;
    font-weight: normal
}

.member_modal .modal-header h4 {
    font-size: 16px;
    color: #8d8e8f;
    text-transform: uppercase
}

@media(max-width:768px) {
    .member_modal .modal-header h2 {
        font-size: 20px!important
    }
    .member_modal .modal-header h4 {
        font-size: 13px
    }
    .scheme_container .scheme_row {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap
    }
    .scheme_container .scheme_row .scheme_col .scheme_box {
        min-height: auto!important
    }
    .acc-statement-wrap {
        margin-top: 0
    }
}

.member_modal .modal-content {
    background-color: #fafafa;
    padding: 40px 0 0;
    position: relative;
    height: auto;
    overflow-y: auto;
    max-width: 650px
}

.member_modal .modal-content .close {
    position: absolute;
    right: 30px;
    top: 25px;
    z-index: 100
}

.member_modal .modal-content .modal-body {
    margin: 0 auto;
    padding: 15px
}

.member_modal .modal-content .modal-body .member_img {
    position: relative;
    padding: 35px 35px 0 0;
    max-width: 400px;
    margin: 0 auto
}

.member_modal .modal-content .modal-body .member_img:after {
    position: absolute;
    content: "";
    width: 200px;
    height: 200px;
    background: #5ccbfa;
    top: 0;
    right: 0;
    z-index: 0
}

.member_modal .modal-content .modal-body .member_img img {
    position: relative;
    z-index: 1;
    max-width: 100%
}

.member_modal .modal-content .modal-body .content_section {
    padding: 40px 15px 20px
}

.member_modal .modal-content .modal-body .content_section .overview {
    font-size: 20px;
    color: #235893;
    margin-bottom: 30px
}

.member_modal .modal-content .modal-body .content_section .body-content {
    font-size: 16px
}

.member_modal .modal-content .modal-body .content_section .body-content p {
    margin-bottom: 20px
}

.member_modal .modal-content .modal-footer {
    padding: 20px;
    text-align: center;
    background: #fff
}

@media screen and (max-width:1024px) {
    .invst_team_wrap .team_row {
        margin: 0 -15px;
        margin-top: 30px
    }
    .invst_team_wrap .team_row .team_col {
        width: 50%;
        padding: 0 15px
    }
}

@media screen and (max-width:1024px) and (max-width:640px) {
    .invst_team_wrap .team_row .team_col {
        width: 100%
    }
}

@media screen and (max-width:1024px) {
    .invst_team_wrap .team_row .team_col .team_box {
        margin-bottom: 30px;
        height: auto
    }
    .member_modal .modal-content {
        padding-top: 20px;
        width: 95%
    }
    .member_modal .modal-content .close {
        right: 10px;
        top: 10px
    }
    .member_modal .modal-content .modal-body .member_img {
        padding: 15px 15px 0 0
    }
    .member_modal .modal-content .modal-body .member_img:after {
        width: 30%;
        height: 30%;
        padding: 0
    }
    .member_modal .modal-content .modal-body .content_section {
        padding: 15px
    }
    .member_modal .modal-content .modal-footer {
        padding: 30px
    }
}

.bod .accstate-box .accstate-tab {
    width: 550px
}

.bod .accstate-box .accstate-tab a {
    width: 273px
}

@media(max-width:640px) {
    .bod .accstate-box .accstate-tab {
        width: 306px
    }
    .bod .accstate-box .accstate-tab a {
        width: 151px;
        font-size: 13px
    }
}

.bod .invst_team_wrap .team_row .team_col .team_box {
    height: 160px
}

.modal.bod_modal .modal-header {
    padding-bottom: 20px;
    position: relative;
    margin: 0
}

.modal.bod_modal .modal-header:after {
    content: "";
    border-bottom: solid 1px #dadada;
    position: absolute;
    left: 5%;
    bottom: 0;
    width: 90%;
    height: 2px
}

.modal.bod_modal .modal-content .modal-body {
    overflow: hidden
}

.modal.bod_modal .modal-content .modal-body .content_section {
    padding: 20px 15px
}

.modal.bod_modal .modal-content .modal-body .content_section .member_desc_list {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden
}

.modal.bod_modal .modal-content .modal-body .content_section .member_desc_list li {
    margin: 0 0 15px;
    float: left;
    width: 100%
}

.modal.bod_modal .modal-content .modal-body .content_section .member_desc_list li label {
    float: left;
    width: 35%;
    padding-right: 35px;
    position: relative;
    font-size: 16px;
    color: #000;
    font-weight: 600
}

.modal.bod_modal .modal-content .modal-body .content_section .member_desc_list li label:after {
    content: ":";
    position: absolute;
    right: 35px;
    top: 0
}

.modal.bod_modal .modal-content .modal-body .content_section .member_desc_list li .detail {
    float: left;
    width: 65%
}

.modal.bod_modal .modal-content .modal-body .content_section .member_desc_list li .detail li {
    margin-bottom: 5px
}

@media(max-width:640px) {
    .modal.bod_modal .modal-content .modal-body .content_section .member_desc_list li label {
        width: 100%;
        padding: 0
    }
    .modal.bod_modal .modal-content .modal-body .content_section .member_desc_list li label:after {
        content: ""
    }
    .modal.bod_modal .modal-content .modal-body .content_section .member_desc_list li .detail {
        width: 100%
    }
}

.text-center {
    text-align: center
}

.scheme-list {
    float: left;
    width: 100%
}

.scheme-list .invst_team_wrap .accstate-box .accstate-tab {
    width: 95%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    overflow-x: auto
}

.scheme-list .invst_team_wrap .accstate-box .accstate-tab li:first-child {
    margin-right: 0;
    margin-left: 0
}

.scheme-list .invst_team_wrap .accstate-box .accstate-tab li:last-child {
    margin-right: 0;
    margin-left: 0
}

.scheme-list .invst_team_wrap .accstate-box .accstate-tab li {
    margin-left: auto;
    margin-right: auto
}

.scheme-list .invst_team_wrap .accstate-box .accstate-tab li a {
    width: auto;
    padding: 14px 15px;
    min-width: 120px;
    float: none
}

@media(max-width:1365px) {
    .scheme-list .invst_team_wrap .accstate-box .accstate-tab {
        width: 85%
    }
}

@media(max-width:1200px) {
    .scheme-list .invst_team_wrap .accstate-box .accstate-tab {
        width: 100%
    }
}

.scheme-list .invst_team_wrap .accstate-box .select .select-styled {
    padding-top: 12px;
    font-weight: 500;
    font-size: 15px
}

.scheme-list .invst_team_wrap .accstate-box .select .select-options {
    display: none
}

.scheme-list .invst_team_wrap .accstate-box .select .select-options a {
    color: #323232
}

.scheme-list .scheme-content {
    background: #f2fafd;
    padding: 0;
    margin-top: 20px;
    float: left;
    width: 100%
}

.scheme-list .scheme-content .accstate-box {
    margin: 0
}

.scheme-list .showing_results {
    padding: 60px 0 0;
    float: left;
    width: 100%
}

.scheme-list .showing_results .showing_schemes {
    float: left;
    width: auto
}

.scheme-list .showing_results .showing_schemes h5 {
    font-size: 18px;
    color: #333;
    margin-top: 10px
}

@media(max-width:767px) {
    .scheme-list .showing_results .showing_schemes {
        width: 100%;
        margin-bottom: 15px
    }
}

.scheme-list .showing_results .scheme_plan {
    float: right;
    width: auto;
    text-align: right;
    margin-left: 25px
}

.scheme-list .showing_results .scheme_plan label {
    font-size: 17px;
    color: #00589e;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    vertical-align: top;
    margin-right: 20px;
    margin-top: 10px
}

.scheme-list .showing_results .scheme_plan .schemeplan_select {
    display: inline-block;
    background: url(../images/arrowslc1.png) no-repeat scroll right 0;
    width: auto
}

.scheme-list .showing_results .scheme_plan .schemeplan_select select {
    width: 100%
}

.scheme-list .showing_results .scheme_plan .schemeplan_select .select .select-styled {
    text-align: left;
    padding-top: 12px;
    font-weight: 500;
    font-size: 15px
}

.scheme-list .showing_results .scheme_plan .schemeplan_select .select .select-options li {
    text-align: left
}

@media(max-width:767px) {
    .scheme-list .showing_results .scheme_plan {
        width: 100%;
        text-align: left
    }
}

@media(max-width:1024px) {
    .scheme-list .accstate-box {
        margin-top: 30px
    }
    .scheme-list .accstate-box.tab-section {
        text-align: center
    }
    .scheme-list .accstate-box.tab-section .select {
        width: 50%;
        text-align: left
    }
    .scheme-list .accstate-box.tab-section .select .select-styled {
        font-size: 20px;
        padding-top: 7px
    }
    .scheme-list .accstate-box.tab-section .select li {
        font-size: 16px
    }
}

@media(max-width:1024px) and (max-width:540px) {
    .scheme-list .accstate-box.tab-section .select {
        width: 85%
    }
}

@media(max-width:1024px) {
    .scheme-list .showing_results {
        padding-top: 30px
    }
}

.scheme_container {
    padding: 0
}

.scheme_container .scheme_row {
    margin: 0 -15px
}

.scheme_container .scheme_row .scheme_col {
    float: left;
    width: 33.3333%;
    padding: 0 15px;
    margin-bottom: 30px
}

@media(max-width:1024px) {
    .scheme_container .scheme_row .scheme_col {
        width: 50%
    }
}

@media(max-width:767px) {
    .scheme_container .scheme_row .scheme_col {
        width: 100%
    }
}

.scheme_container .scheme_row .scheme_col .scheme_box {
    background: #fff;
    float: left;
    width: 100%;
    min-height: 512px
}

.scheme_container .scheme_row .scheme_col .scheme_box .box_head {
    background: #d2f1fc;
    color: #1c1c1c;
    padding: 20px;
    text-align: left
}

.scheme_container .scheme_row .scheme_col .scheme_box .box_head h4 {
    font-size: 16px;
    text-align: left;
    margin-bottom: 5px
}

.scheme_container .scheme_row .scheme_col .scheme_box .box_head p {
    font-size: 13px
}

.scheme_container .scheme_row .scheme_col .scheme_box .box_body .row {
    margin: 0;
    padding: 20px 0;
    border-bottom: solid 1px #e8e8e8;
    float: left;
    width: 100%
}

@media(max-width:1024px) {
    .scheme_container .scheme_row .scheme_col .scheme_box .box_body .row {
        padding: 10px 0
    }
}

.scheme_container .scheme_row .scheme_col .scheme_box .box_body .row .left {
    padding: 0 20px;
    float: left;
    position: relative;
    width: 40%;
    font-size: 16px;
    color: #015898;
    font-weight: 600
}

.scheme_container .scheme_row .scheme_col .scheme_box .box_body .row .left small {
    font-size: 11px;
    color: #777
}

.scheme_container .scheme_row .scheme_col .scheme_box .box_body .row .left:after {
    content: ":";
    position: absolute;
    right: 0;
    top: 0
}

@media(max-width:1024px) {
    .scheme_container .scheme_row .scheme_col .scheme_box .box_body .row .left {
        font-size: 14px
    }
}

.scheme_container .scheme_row .scheme_col .scheme_box .box_body .row .right {
    padding: 0 20px;
    float: left;
    position: relative;
    width: 60%;
    min-height: 50px;
    font-size: 14px;
    color: #323232
}

.scheme_container .scheme_row .scheme_col .scheme_box .box_body .row .right a.tooltip_link {
    position: relative;
    cursor: pointer
}

.scheme_container .scheme_row .scheme_col .scheme_box .box_body .row .right a.tooltip_link .tooltip {
    opacity: 0;
    position: absolute;
    border-radius: 3px;
    border: solid 1px #ccc;
    background-color: #f7f7f7;
    color: #666;
    padding: 10px;
    z-index: -1;
    width: 200px;
    left: -215px;
    top: -12px;
    -webkit-transition: all .3s;
    transition: all .3s;
    font-weight: 400;
    font-size: 13px
}

.scheme_container .scheme_row .scheme_col .scheme_box .box_body .row .right a.tooltip_link .tooltip:after,
.scheme_container .scheme_row .scheme_col .scheme_box .box_body .row .right a.tooltip_link .tooltip:before {
    content: '';
    display: block;
    position: absolute;
    left: 100%;
    width: 0;
    height: 0;
    border-style: solid
}

.scheme_container .scheme_row .scheme_col .scheme_box .box_body .row .right a.tooltip_link .tooltip:after {
    top: 10px;
    border-color: transparent transparent transparent #f7f7f7;
    border-width: 10px
}

.scheme_container .scheme_row .scheme_col .scheme_box .box_body .row .right a.tooltip_link .tooltip:before {
    top: 9px;
    border-color: transparent transparent transparent #ccc;
    border-width: 11px
}

.scheme_container .scheme_row .scheme_col .scheme_box .box_body .row .right a.tooltip_link:hover .tooltip {
    opacity: 1;
    z-index: 10
}

.scheme_container .scheme_row .scheme_col .scheme_box .box_body .row .right .fa-info-circle {
    color: #015898
}

.scheme_container .scheme_row .scheme_col .scheme_box .box_body .row .right span {
    font-weight: bold
}

.scheme_container .scheme_row .scheme_col .scheme_box .box_body .row .right .cagr {
    color: #0a865d
}

.scheme_container .scheme_row .scheme_col .scheme_box .box_body .row a.btn {
    margin: 0 7px
}

.scheme_container .scheme_row .scheme_col .scheme_box .box_body .row a.btn.btn-secondary {
    width: auto;
    height: auto
}

.pagination_container {
    text-align: center;
    padding: 45px 0;
    float: left;
    width: 100%
}

.pagination_container ul {
    padding: 0;
    margin: 0
}

.pagination_container ul li {
    display: inline-block;
    padding: 0 3px;
    color: #333;
    font-size: 16px
}

.pagination_container ul li a {
    padding: 4px 6px;
    color: #333
}

.pagination_container ul li a.active {
    background-color: #d2f1fc
}

.pagination_container ul li a.disabled {
    opacity: .5;
    cursor: no-drop
}

.pagination_container ul li a.last {
    color: #015898
}

.selectize-control.plugin-drag_drop.multi>.selectize-input>div.ui-sortable-placeholder {
    visibility: visible!important;
    background: #f2f2f2!important;
    background: rgba(0, 0, 0, 0.06)!important;
    border: 0 none!important;
    -webkit-box-shadow: inset 0 0 12px 4px #fff;
    box-shadow: inset 0 0 12px 4px #fff
}

.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
    content: '!';
    visibility: hidden
}

.selectize-control.plugin-drag_drop .ui-sortable-helper {
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2)
}

.selectize-dropdown-header {
    position: relative;
    padding: 5px 8px;
    border-bottom: 1px solid #d0d0d0;
    background: #f8f8f8;
    border-radius: 3px 3px 0 0
}

.selectize-dropdown-header-close {
    position: absolute;
    right: 8px;
    top: 50%;
    color: #303030;
    opacity: .4;
    margin-top: -12px;
    line-height: 20px;
    font-size: 20px!important
}

.selectize-dropdown-header-close:hover {
    color: #000
}

.selectize-dropdown.plugin-optgroup_columns .optgroup {
    border-right: 1px solid #f2f2f2;
    border-top: 0 none;
    float: left;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
    border-right: 0 none
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:before {
    display: none
}

.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
    border-top: 0 none
}

.selectize-control.plugin-remove_button [data-value] {
    position: relative;
    padding-right: 24px!important
}

.selectize-control.plugin-remove_button [data-value] .remove {
    z-index: 1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 17px;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    color: inherit;
    text-decoration: none;
    vertical-align: middle;
    display: inline-block;
    padding: 2px 0 0;
    border-left: 1px solid #0073bb;
    border-radius: 0 2px 2px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.selectize-control.plugin-remove_button [data-value] .remove:hover {
    background: rgba(0, 0, 0, 0.05)
}

.selectize-control.plugin-remove_button [data-value].active .remove {
    border-left-color: #00578d
}

.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
    background: 0
}

.selectize-control.plugin-remove_button .disabled [data-value] .remove {
    border-left-color: #aaa
}

.selectize-control.plugin-remove_button .remove-single {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 23px
}

.selectize-control {
    position: relative
}

.selectize-dropdown,
.selectize-input,
.selectize-input input {
    color: #303030;
    font-family: inherit;
    font-size: 13px;
    -webkit-font-smoothing: inherit
}

.selectize-input,
.selectize-control.single .selectize-input.input-active {
    background: #fff;
    cursor: text;
    display: inline-block
}

.selectize-input {
    border: 1px solid #d0d0d0;
    padding: 8px 8px;
    display: inline-block;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
    border-radius: 3px
}

.selectize-control.multi .selectize-input.has-items {
    padding: 5px 8px 2px
}

.selectize-input.full {
    background-color: #fff
}

.selectize-input.disabled,
.selectize-input.disabled * {
    cursor: default!important
}

.selectize-input.focus {
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15)
}

.selectize-input.dropdown-active {
    border-radius: 3px 3px 0 0
}

.selectize-input>* {
    vertical-align: baseline;
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline
}

.selectize-control.multi .selectize-input>div {
    cursor: pointer;
    margin: 0 3px 3px 0;
    padding: 2px 6px;
    background: #1da7ee;
    color: #fff;
    border: 1px solid #0073bb
}

.selectize-control.multi .selectize-input>div.active {
    background: #92c836;
    color: #fff;
    border: 1px solid #00578d
}

.selectize-control.multi .selectize-input.disabled>div,
.selectize-control.multi .selectize-input.disabled>div.active {
    color: #fff;
    background: #d2d2d2;
    border: 1px solid #aaa
}

.selectize-input>input {
    display: inline-block!important;
    padding: 0!important;
    min-height: 0!important;
    max-height: none!important;
    max-width: 100%!important;
    margin: 0 1px!important;
    text-indent: 0!important;
    border: 0 none!important;
    background: none!important;
    line-height: inherit!important;
    -webkit-user-select: auto!important;
    -webkit-box-shadow: none!important;
    box-shadow: none!important
}

.selectize-input>input::-ms-clear {
    display: none
}

.selectize-input>input:focus {
    outline: none!important
}

.selectize-input::after {
    content: ' ';
    display: block;
    clear: left
}

.selectize-input.dropdown-active::before {
    content: ' ';
    display: block;
    position: absolute;
    background: #f0f0f0;
    height: 1px;
    bottom: 0;
    left: 0;
    right: 0
}

.selectize-dropdown {
    position: absolute;
    z-index: 10;
    border: 1px solid #d0d0d0;
    background: #fff!important;
    margin: -1px 0 0 0;
    border-top: 0 none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 3px 3px;
    cursor: pointer;
    font-size: 16px;
    color: #015898
}

.selectize-dropdown [data-selectable] {
    cursor: pointer;
    overflow: hidden
}

.selectize-dropdown [data-selectable] .highlight {
    background: rgba(125, 168, 208, 0.2);
    border-radius: 1px
}

.selectize-dropdown .option,
.selectize-dropdown .optgroup-header {
    padding: 5px 8px
}

.selectize-dropdown .option,
.selectize-dropdown [data-disabled],
.selectize-dropdown [data-disabled] [data-selectable].option {
    cursor: inherit;
    opacity: .5
}

.selectize-dropdown [data-selectable].option {
    opacity: 1
}

.selectize-dropdown .optgroup:first-child .optgroup-header {
    border-top: 0 none
}

.selectize-dropdown .optgroup-header {
    color: #303030;
    background: #fff;
    cursor: default
}

.selectize-dropdown .active {
    background-color: #f5fafd;
    color: #495c68
}

.selectize-dropdown .active.create {
    color: #495c68
}

.selectize-dropdown .create {
    color: rgba(48, 48, 48, 0.5)
}

.selectize-dropdown-content {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 200px;
    -webkit-overflow-scrolling: touch
}

.selectize-control.single .selectize-input,
.selectize-control.single .selectize-input input {
    cursor: pointer;
    font-size: 18px;
    color: #015898
}

.selectize-control.single .selectize-input.input-active,
.selectize-control.single .selectize-input.input-active input {
    cursor: text
}

.selectize-control.single .selectize-input:after {
    content: "";
    width: 0;
    height: 0;
    padding: 5px;
    border: solid #7a7a7a;
    border-width: 0 1px 1px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 10px;
    right: 10px;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in
}

.selectize-control.single .selectize-input.dropdown-active:after {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
    top: 16px
}

.selectize-control.rtl.single .selectize-input:after {
    left: 15px;
    right: auto
}

.selectize-control.rtl .selectize-input>input {
    margin: 0 4px 0 -2px!important
}

.selectize-control .selectize-input.disabled {
    opacity: .5;
    background-color: #fafafa
}

.selectize-control.multi .selectize-input.has-items {
    padding-left: 5px;
    padding-right: 5px
}

.selectize-control.multi .selectize-input.disabled [data-value] {
    color: #999;
    text-shadow: none;
    background: 0;
    -webkit-box-shadow: none;
    box-shadow: none
}

.selectize-control.multi .selectize-input.disabled [data-value],
.selectize-control.multi .selectize-input.disabled [data-value] .remove {
    border-color: #e6e6e6
}

.selectize-control.multi .selectize-input.disabled [data-value] .remove {
    background: 0
}

.selectize-control.multi .selectize-input [data-value] {
    text-shadow: 0 1px 0 rgba(0, 51, 83, 0.3);
    border-radius: 3px;
    background-color: #1b9dec;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#1da7ee), to(#178ee9));
    background-image: linear-gradient(to bottom, #1da7ee, #178ee9);
    background-repeat: repeat-x;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ff1da7ee', endColorstr='#ff178ee9', GradientType=0);
    -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), inset 0 1px rgba(255, 255, 255, 0.03);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), inset 0 1px rgba(255, 255, 255, 0.03)
}

.selectize-control.multi .selectize-input [data-value].active {
    background-color: #0085d4;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#008fd8), to(#0075cf));
    background-image: linear-gradient(to bottom, #008fd8, #0075cf);
    background-repeat: repeat-x;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ff008fd8', endColorstr='#ff0075cf', GradientType=0)
}

.selectize-control.single .selectize-input {
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.05), inset 0 0 0 rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.05), inset 0 0 0 rgba(255, 255, 255, 0.8);
    background-color: #f9f9f9;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fefefe), to(#f2f2f2));
    background-image: linear-gradient(to bottom, #fefefe, #f2f2f2);
    background-repeat: repeat-x;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#fffefefe', endColorstr='#fff2f2f2', GradientType=0)
}

.selectize-control.single .selectize-input,
.selectize-dropdown.single {
    border: 0;
    border-bottom: 1px solid #a5a7a9;
    padding: 7px 35px 10px 10px;
    background: 0;
    -webkit-border-radius: 0;
    border-radius: 0
}

.selectize-dropdown .optgroup-header {
    padding-top: 7px;
    font-weight: bold;
    font-size: .85em
}

.selectize-dropdown .optgroup {
    border-top: 1px solid #f0f0f0
}

.selectize-dropdown .optgroup:first-child {
    border-top: 0 none
}

.btn-know-more:hover {
    color: #fff!important;
    text-decoration: none!important
}

.search-section-wrap {
    padding: 0;
    margin: 0 0 20px 0
}

.search-section-wrap .bodyinner h1 {
    border-bottom: 1px solid #d5d5d5;
    width: 100%;
    padding-bottom: 15px;
    margin-bottom: 30px;
    letter-spacing: -1px
}

.sf-search-results h3:after {
    display: none
}

.sf-search-results h3 {
    text-align: left;
    font-size: 2rem;
    font-weight: 400;
    background: 0;
    margin: 0 0 10px;
    padding: 5px 15px 5px 0;
    color: #1e5898;
    border-bottom: 1px solid rgba(190, 201, 214);
    padding-bottom: 8px;
    line-height: 1.4
}

.sf-search-results p {
    font-size: 14px;
    line-height: 23px;
    margin-bottom: 7px
}

.sf-search-results .pagination_container ul li a {
    display: inline-block;
    padding: 2px 5px
}

.sf-search-results .pagination_container ul li.active a {
    background-color: #d2f1fc
}

.media.sf-media {
    margin-bottom: 20px;
    padding: 0;
    background: 0
}

.sf-media-body {
    padding: 15px
}

.sf-media-body:nth-child(odd) {
    background: #f1f1f1
}

.sf-media-body a {
    color: #1e5898;
    position: relative;
    font-weight: 400
}

.sf-media-body h3 a {
    color: #1e5898;
    position: relative;
    padding: 0 0 0 36px;
    display: block
}

.sf-media-body h3 a:before {
    content: '\f1c1';
    position: absolute;
    left: 0;
    top: -2px;
    width: 30px;
    height: 30px;
    font-family: FontAwesome;
    font-size: 25px;
    color: #015898;
    font-weight: 100;
    text-align: center;
    line-height: 30px
}

em.text-muted {
    font-size: 15px;
    text-align: center
}

.article-videowrap a,
.skltbs-tab-top,
.skltbs-tab-top * {
    text-decoration: none!important;
    font-family: "Roboto", sans-serif
}

.mResAccordion .mResTabNav {
    display: none
}

.tabNav:before,
.tabNav:after {
    content: " ";
    display: table
}

.tabNav:after {
    clear: both
}

.tabNav {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center
}

.tabNav li {
    padding: 0;
    display: inline-block;
    margin: 0 2px
}

.mResTabAccordA {
    display: inline-block;
    text-decoration: none;
    padding: 12px 40px;
    color: #00589e;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    position: relative
}

.tabNav li.active>.mResTabAccordA,
.mResTabAccordA.active {
    background-color: #00589e;
    color: #fff;
    text-decoration: none
}

.tabContainer {
    margin-top: 30px;
    padding: 1em 1.2em
}

.tabContainer .tabContent {
    opacity: 0;
    -webkit-transition: all 500ms ease-in;
    transition: all 500ms ease-in
}

.tabContainer .tabContent.mTabActive {
    opacity: 1;
    display: block
}

.mResTabbing .mResAccordAnchor {
    display: none
}

.mResAccordAnchor {
    display: block;
    margin-bottom: 1px;
    position: relative
}

.mResAccordAnchor>span {
    display: block
}

.mResAccordAnchor>span:after {
    display: block;
    content: '';
    position: absolute;
    right: 18px;
    top: 12px;
    width: 10px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in
}

.mResAccordAnchor.active>span:after {
    content: ' ';
    position: absolute;
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
    top: 19px
}

.mTabAnimated .tabContainer {
    position: relative
}

.mTabSimple .tabContent,
.mTabAnimated .hideAfterAnim {
    display: none
}

.defaultState {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%
}

.tabNav1:before,
.tabNav1:after {
    content: " ";
    display: table
}

.tabNav1:after {
    clear: both
}

.tabNav1 {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center
}

.tabNav1 li {
    padding: 0;
    display: inline-block
}

ul.tabNav1 li.active>.mResTabAccordA,
.mResTabAccordA.active {
    background-color: #015898;
    color: #fff;
    text-decoration: none;
    padding: 12px 14px
}

ul.tabNav1 .mResTabAccordA {
    color: #7d7d7d;
    padding: 12px 14px;
    font-size: 15px;
    text-decoration: none!important
}

.tabContainer1 {
    margin-top: 0;
    padding: 0 1.2em;
    position: relative
}

.tabContainer1 .extraul {
    display: none
}

.select-wrapper {
    display: none
}

.tabContainer1 .tabContent1 {
    opacity: 0;
    display: none;
    -webkit-transition: all 500ms ease-in;
    transition: all 500ms ease-in
}

.tabContainer1 .tabContent1.mTabActive {
    opacity: 1;
    display: block
}

.skldropsub {
    padding: 7px 0 7px 10px!important;
    border-bottom: 1px solid #ccc;
    font-size: 14px;
    text-align: left
}

.tabNav2:before,
.tabNav1:after {
    content: " ";
    display: table
}

.tabNav2:after {
    clear: both
}

.tabNav2 {
    list-style: none;
    padding: 0;
    margin: 5px 0 0;
    text-align: center;
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #ccc;
    background: #eee
}

.tabNav2 li {
    padding: 0;
    display: inline-block
}

ul.tabNav2 li.active>.mResTabAccordA,
.mResTabAccordA.active {
    background-color: #015898;
    color: #fff;
    text-decoration: none;
    padding: 7px 30px
}

ul.tabNav2 .mResTabAccordA {
    color: #7d7d7d;
    padding: 7px 30px;
    font-size: 14px
}

.tabContainer2 {
    margin-top: 0;
    padding: 0;
    position: relative
}

.tabContainer2 .extraul {
    display: none
}

.tabContainer2 .tabContent2 {
    border: 0;
    padding: 25px 0 0;
    background-color: none
}

.tabContainer2 .tabContent2 {
    opacity: 0;
    display: none;
    -webkit-transition: all 500ms ease-in;
    transition: all 500ms ease-in
}

.tabContainer2 .tabContent2.mTabActive {
    opacity: 1;
    display: block
}

.skldrop {
    padding: 12px 30px;
    cursor: pointer;
    position: relative
}

.skldrop:after {
    content: "";
    width: 0;
    height: 0;
    padding: 5px;
    border: solid #7a7a7a;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 13px;
    right: 0;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in
}

.skldrop:hover:after {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
    top: 18px
}

.mTabAnimated .hideAfterAnim {
    -webkit-transform: translateX(0px) translateY(0px);
    transform: translateX(0px) translateY(0px)
}

.mTabAnimated .defaultState {
    -webkit-transform: translateY(100px);
    transform: translateY(100px)
}

.mTabAnimated .mTabActive {
    -webkit-transform: translateX(0);
    transform: translateX(0)
}

.feedback-form {
    max-width: 1290px;
    margin: 0 auto;
    font-size: 15px
}

.feedback-form .feedback-personal-detail {
    font-weight: 700;
    margin: 20px 0 10px;
    border-bottom: 1px solid #ccc
}

.feedback-form .feedback-mandatory {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px
}

.feedback-form .feedback-mandatory span {
    color: #e00003;
    display: inline-flex
}

.feedback-form .feedback-personal-detail .row {
    width: 100%;
    margin-bottom: 20px
}

.feedback-form .feedback-personal-detail:nth-child(1) .row div:nth-child(1) {
    width: 15%;
    display: inline-block;
    vertical-align: top
}

.feedback-form .feedback-personal-detail:nth-child(1) .row div:nth-child(2) {
    width: 84%;
    display: inline-block;
    vertical-align: top
}

.feedback-form .feedback-personal-detail:nth-child(1) .row div:nth-child(2) input {
    padding: 15px;
    width: 50%;
    background-color: #f5f5f5;
    color: #004889;
    font-size: 14px;
    font-weight: 400
}

.feedback-form .feedback-personal-detail:nth-child(2) .row:nth-child(1) div,
.feedback-form .feedback-personal-detail:nth-child(3) .row:nth-child(1) div {
    width: 100%;
    display: inline-block;
    /* vertical-align: top */
}

.feedback-form .feedback-personal-detail:nth-child(2) .row:nth-child(2) div:nth-child(1) {
    width: 48%;
    display: inline-block;
    vertical-align: top
}

.feedback-form .feedback-personal-detail:nth-child(2) .row:nth-child(2) div:nth-child(2) {
    width: 50%;
    display: inline-block;
    vertical-align: top
}

.feedback-form .feedback-personal-detail:nth-child(3) .row:nth-child(2) div:nth-child(1) {
    width: 43.5%;
    display: inline-block;
    vertical-align: top
}

.feedback-form .feedback-personal-detail:nth-child(3) .row:nth-child(2) div:nth-child(1) .row {
    width: 100%
}

.feedback-form .feedback-personal-detail:nth-child(3) .row:nth-child(2) div:nth-child(1) .row div:nth-child(1) {
    width: 100%;
    font-weight: 400
}

.feedback-form .feedback-personal-detail:nth-child(3) .row:nth-child(2) div:nth-child(2) {
    width: 8%;
    display: inline-block;
    vertical-align: top
}

.feedback-form .feedback-personal-detail:nth-child(3) .row:nth-child(2) div:nth-child(3) {
    width: 43.5%;
    display: inline-block;
    vertical-align: top
}

.feedback-form .feedback-personal-detail:nth-child(3) .row:nth-child(2) div:nth-child(3) .row {
    width: 100%
}

.feedback-form .feedback-personal-detail:nth-child(3) .row:nth-child(2) div:nth-child(3) .row div:nth-child(1) {
    width: 100%;
    font-weight: 400
}

.feedback-form .feedback-personal-detail:nth-child(2) .row:nth-child(2) div .row {
    width: 100%
}

.feedback-form .feedback-personal-detail:nth-child(2) .row:nth-child(2) div .row div:nth-child(1) {
    width: 30%
}

.feedback-form .feedback-personal-detail:nth-child(2) .row:nth-child(2) div .row div:nth-child(2) {
    width: 67%
}

.feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(1) div {
    width: 100%;
    display: inline-block;
    vertical-align: top
}

.feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(2) div:nth-child(1) {
    width: 35%;
    display: inline-block;
    vertical-align: top
}

.feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(2) div:nth-child(1) input {
    padding: 15px;
    width: 90%;
    background-color: #f5f5f5;
    color: #004889;
    font-size: 14px;
    font-weight: 400
}

.feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(2) div:nth-child(2) {
    width: 62%;
    display: inline-block;
    vertical-align: top;
    margin-left: 0
}

.feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(2) div:nth-child(2) .row {
    width: 100%;
    margin: 8px 0 0 0
}

.feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(2) div:nth-child(2) .row div {
    width: 24%;
    display: inline-block
}

.feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(3) div:nth-child(1) {
    width: 35%;
    display: inline-block;
    vertical-align: top
}

.feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(3) div:nth-child(1) input {
    padding: 15px;
    width: 90%;
    background-color: #f5f5f5;
    color: #004889;
    font-size: 14px;
    font-weight: 400
}

.feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(3) div:nth-child(2) {
    width: 62%;
    display: inline-block;
    vertical-align: top;
    margin-left: 0%
}

.feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(3) div:nth-child(2) .row {
    width: 100%;
    margin: 8px 0 0 0
}

.feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(3) div:nth-child(2) .row div {
    width: 24%;
    display: inline-block
}

.feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(4) div:nth-child(1) {
    width: 35%;
    display: inline-block;
    vertical-align: top
}

.feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(4) div:nth-child(1) input {
    padding: 15px;
    width: 90%;
    background-color: #f5f5f5;
    color: #004889;
    font-size: 14px;
    font-weight: 400
}

.feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(4) div:nth-child(2) {
    width: 62%;
    display: inline-block;
    vertical-align: top;
    margin-left: 0%
}

.feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(4) div:nth-child(2) .row {
    width: 100%;
    margin: 8px 0 0 0
}

.feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(4) div:nth-child(2) .row div {
    width: 24%;
    display: inline-block
}

.feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(5) div:nth-child(1) {
    width: 35%;
    display: inline-block;
    vertical-align: top
}

.feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(6) div:nth-child(1) {
    width: 35%;
    display: inline-block;
    vertical-align: top
}

.feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(5) div:nth-child(1) input {
    padding: 15px;
    width: 90%;
    background-color: #f5f5f5;
    color: #004889;
    font-size: 14px;
    font-weight: 400
}

.feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(5) div:nth-child(2) {
    width: 62%;
    display: inline-block;
    vertical-align: top;
    margin-left: 0%
}

.feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(6) div:nth-child(2) {
    width: 62%;
    display: inline-block;
    vertical-align: top;
    margin-left: 0%
}

.feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(5) div:nth-child(2) .row {
    width: 100%;
    margin: 8px 0 0 0
}

.feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(5) div:nth-child(2) .row div {
    width: 24%;
    display: inline-block
}

#txtFolioNumber {
    padding: 15px;
    width: 100%;
    background-color: #f5f5f5;
    color: #004889;
    font-size: 14px;
    font-weight: 400
}

#cvtxtFolioNumber,
#rfvtxtName,
#rfvtxtEmail,
#revtxtEmail,
#lblschemes {
    display: block;
    font-weight: 600;
    font-size: 13px;
    color: red;
    margin-top: 5px;
    font-weight: 400;
    float: left;
    width: 100%
}

#customSort,
#customSort_to {
    width: 100%;
    border: 0;
    padding: 10px;
    height: 180px;
    background: #f5f5f5
}

.multiselect-btns {
    margin: 75px 20px 0
}

.multiselect-btns #customSort_rightSelected,
.multiselect-btns #customSort_leftSelected {
    width: 100%;
    margin: 7px auto;
    text-decoration: none;
    color: #fff;
    background-color: #00589e;
    text-align: center;
    letter-spacing: .5px;
    transition: background-color .2s ease-out;
    cursor: pointer;
    border-radius: 0;
    height: 40px
}

.feedback-form .feedback-personal-detail .multiselect-drop option {
    font-size: 14px;
    margin-bottom: 5px;
    color: #235893;
    font-weight: 400
}

.multiselect-btns #customSort_rightSelected .material-icons,
.multiselect-btns #customSort_leftSelected .material-icons {
    font-size: 35px!important;
    position: absolute;
    padding: 0;
    margin: 0;
    top: 0;
    left: 0;
    right: 0
}

.table-fields input {
    color: #004889
}

.feedback-form .browser-default {
    font-size: 16px;
    font-weight: 600
}

.feedback-form .browser-default [type="radio"]:not(:checked),
.feedback-form .browser-default [type="radio"]:checked {
    width: auto
}

.feedback-form .browser-default [type="radio"]:not(:checked),
.feedback-form .browser-default [type="radio"]:checked {
    position: absolute;
    opacity: 0;
    pointer-events: none
}

.feedback-form .browser-default [type="radio"]:not(:checked)+span,
.feedback-form .browser-default [type="radio"]:checked+span {
    padding-left: 25px
}

.feedback-form .browser-default [type="radio"]:not(:checked)+span,
.feedback-form .browser-default [type="radio"]:checked+span {
    position: relative;
    cursor: pointer;
    display: inline-block;
    height: 25px;
    line-height: 29px;
    transition: .28s ease;
    user-select: none;
    padding-left: 24px;
    font-size: 14px
}

.feedback-form .browser-default [type="radio"]:not(:checked)+span:before,
.feedback-form .browser-default [type="radio"]:not(:checked)+span:after {
    border: 2px solid #5a5a5a
}

.feedback-form .feedback-collapsible .collapsible li .collapsible-header {
    cursor: pointer;
    border: 0;
    background: #b1cde6;
    color: #004889;
    border-bottom: 1px solid #82acd2;
    border-top: 0;
    line-height: 1;
    padding: 1.3rem;
    font-weight: bold;
    position: relative;
    font-size: 15px
}

.feedback-form .feedback-collapsible .collapsible li .collapsible-header:after {
    position: absolute;
    content: '';
    right: 15px;
    top: 27%;
    border: solid #004889;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 5px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -ms-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s
}

.feedback-form .feedback-collapsible .collapsible .active {
    position: relative
}

.feedback-form .feedback-collapsible .collapsible .active .collapsible-header {
    background: #004889;
    color: #fff;
    position: relative
}

.feedback-form .feedback-collapsible .collapsible .active .collapsible-header:after {
    position: absolute;
    content: '';
    right: 15px;
    top: 42%;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 5px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -ms-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s
}

.feedback-form .feedback-collapsible .collapsible li .collapsible-body {
    padding: 1rem .75rem;
    border-bottom: 0;
    display: none;
    box-sizing: border-box
}

.feedback-form .feedback-collapsible .collapsible li:nth-child(1) .collapsible-body .row {
    margin-bottom: 10px
}

.feedback-form .feedback-collapsible .collapsible li:nth-child(1) .collapsible-body .row div:nth-child(1) {
    width: 50%;
    display: inline-block;
    vertical-align: top
}

.feedback-form .feedback-collapsible .collapsible li:nth-child(1) .collapsible-body .row div:nth-child(1) .row {
    width: 100%;
    margin-bottom: 3px
}

.feedback-form .feedback-collapsible .collapsible li:nth-child(1) .collapsible-body .row div:nth-child(1) .row div {
    width: 30%;
    display: inline-block;
    vertical-align: top;
    margin-left: 0
}

.feedback-form .feedback-collapsible .collapsible li:nth-child(1) .collapsible-body .row div:nth-child(2) {
    width: 41%;
    display: inline-block;
    vertical-align: top;
    margin-left: 8%
}

.feedback-form .feedback-collapsible .collapsible li:nth-child(1) .collapsible-body .row:nth-child(3) div,
.feedback-form .feedback-collapsible .collapsible li:nth-child(1) .collapsible-body .row:nth-child(5) div,
.feedback-form .feedback-collapsible .collapsible li:nth-child(1) .collapsible-body .row:nth-child(7) div,
.feedback-form .feedback-collapsible .collapsible li:nth-child(1) .collapsible-body .row:nth-child(9) div {
    width: 100%;
    display: inline-block;
    vertical-align: top
}

.feedback-form .feedback-collapsible .collapsible li .collapsible-body .quality-service-subhead {
    width: 100%!important
}

.feedback-form .feedback-collapsible .collapsible li:nth-child(2) .collapsible-body .row,
.feedback-form .feedback-collapsible .collapsible li:nth-child(3) .collapsible-body .row,
.feedback-form .feedback-collapsible .collapsible li:nth-child(4) .collapsible-body .row,
.feedback-form .feedback-collapsible .collapsible li:nth-child(5) .collapsible-body .row {
    margin-bottom: 10px
}

.feedback-form .feedback-collapsible .collapsible li:nth-child(2) .collapsible-body .row div,
.feedback-form .feedback-collapsible .collapsible li:nth-child(3) .collapsible-body .row div,
.feedback-form .feedback-collapsible .collapsible li:nth-child(4) .collapsible-body .row div,
.feedback-form .feedback-collapsible .collapsible li:nth-child(5) .collapsible-body .row div {
    width: 24%;
    display: inline-block;
    vertical-align: top
}

.feedback-form .feedback-collapsible .collapsible li:nth-child(4) .collapsible-body .row div:nth-child(1) {
    width: 15%
}

.feedback-form .feedback-collapsible .collapsible li:nth-child(4) .collapsible-body .row div:nth-child(2) {
    width: 15%
}

.feedback-form .feedback-collapsible .collapsible li:nth-child(4) .collapsible-body .row div:nth-child(3) {
    width: 15%
}

.feedback-form .feedback-collapsible .collapsible li:nth-child(4) .collapsible-body .row div:nth-child(4) {
    width: 44%
}

.feedback-form .feedback-collapsible .collapsible li:nth-child(2) .collapsible-body .row:nth-child(1) div,
.feedback-form .feedback-collapsible .collapsible li:nth-child(2) .collapsible-body .row:nth-child(3) div,
.feedback-form .feedback-collapsible .collapsible li:nth-child(2) .collapsible-body .row:nth-child(5) div,
.feedback-form .feedback-collapsible .collapsible li:nth-child(2) .collapsible-body .row:nth-child(7) div,
.feedback-form .feedback-collapsible .collapsible li:nth-child(3) .collapsible-body .row:nth-child(1) div,
.feedback-form .feedback-collapsible .collapsible li:nth-child(3) .collapsible-body .row:nth-child(3) div,
.feedback-form .feedback-collapsible .collapsible li:nth-child(3) .collapsible-body .row:nth-child(5) div,
.feedback-form .feedback-collapsible .collapsible li:nth-child(3) .collapsible-body .row:nth-child(7) div,
.feedback-form .feedback-collapsible .collapsible li:nth-child(4) .collapsible-body .row:nth-child(1) div,
.feedback-form .feedback-collapsible .collapsible li:nth-child(4) .collapsible-body .row:nth-child(3) div,
.feedback-form .feedback-collapsible .collapsible li:nth-child(4) .collapsible-body .row:nth-child(5) div,
.feedback-form .feedback-collapsible .collapsible li:nth-child(4) .collapsible-body .row:nth-child(7) div,
.feedback-form .feedback-collapsible .collapsible li:nth-child(5) .collapsible-body .row:nth-child(1) div,
.feedback-form .feedback-collapsible .collapsible li:nth-child(5) .collapsible-body .row:nth-child(3) div,
.feedback-form .feedback-collapsible .collapsible li:nth-child(5) .collapsible-body .row:nth-child(5) div,
.feedback-form .feedback-collapsible .collapsible li:nth-child(5) .collapsible-body .row:nth-child(7) div,
.feedback-form .feedback-collapsible .collapsible li:nth-child(5) .collapsible-body .row:nth-child(9) div,
.feedback-form .feedback-collapsible .collapsible li:nth-child(5) .collapsible-body .row:nth-child(11) div,
.feedback-form .feedback-collapsible .collapsible li:nth-child(5) .collapsible-body .row:nth-child(13) div {
    width: 100%
}

.feedback-form .feedback-collapsible .collapsible li:nth-child(5) .collapsible-body .row:nth-child(12) div,
.feedback-form .feedback-collapsible .collapsible li:nth-child(5) .collapsible-body .row:nth-child(14) div {
    width: 65%
}

.feedback-form .feedback-collapsible .collapsible li:nth-child(5) .collapsible-body .row:nth-child(12) div input,
.feedback-form .feedback-collapsible .collapsible li:nth-child(5) .collapsible-body .row:nth-child(14) div input {
    padding: 15px;
    width: 100%;
    background-color: #f5f5f5;
    color: #004889;
    font-size: 14px;
    font-weight: 400
}

#HeroSection_C004_btnSubmit {
    justify-content: center;
    padding: 0 1rem;
    overflow: hidden;
    font-weight: 700;
    font-size: 14px;
    background-color: #004889;
    border: 2px solid #004889;
    color: #fff;
    border-radius: 30px;
    height: 38px;
    line-height: 34px;
    display: inline-block;
    align-items: center;
    text-transform: uppercase;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    margin: 10px 10px 0 10px
}

#HeroSection_C004_btnReset {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    background: #fff;
    color: #004889;
    overflow: hidden;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid #004889;
    border-radius: 30px;
    height: 38px;
    line-height: 34px;
    display: inline-block;
    align-items: center;
    text-transform: uppercase
}

.rating {
    border: 0;
    float: left;
    margin: 5px 0 0;
    width: 190px!important
}

.rating-rightmar {
    margin-left: 0
}

.rating>input {
    display: none
}

.rating>label:before {
    margin: -5px 7px 0;
    font-size: 2.5rem;
    font-family: FontAwesome;
    display: inline-block;
    content: "\f005"
}

.rating>.half:before {
    content: "\f089";
    position: absolute
}

.rating>label {
    color: #b1cde6;
    float: right
}

.rating>input:checked~label,
.rating:not(:checked)>label:hover,
.rating:not(:checked)>label:hover~label {
    color: #004889;
    cursor: pointer
}

.rating>input:checked+label:hover,
.rating>input:checked~label:hover,
.rating>label:hover~input:checked~label,
.rating>input:checked~label:hover~label {
    color: #004889
}

.feedback-form .browser-default [type="radio"]:not(:checked)+span:before,
.feedback-form .browser-default [type="radio"]:not(:checked)+span:after,
.feedback-form .browser-default [type="radio"]:checked+span:before,
.feedback-form .browser-default [type="radio"]:checked+span:after,
.feedback-form .browser-default [type="radio"].with-gap:checked+span:before,
.feedback-form .browser-default [type="radio"].with-gap:checked+span:after {
    border-radius: 50%
}

.feedback-form .browser-default [type="radio"]+span:before,
.feedback-form .browser-default [type="radio"]+span:after {
    margin-left: 0;
    margin-right: 0
}

.feedback-form .browser-default [type="radio"]+span:before,
.feedback-form .browser-default [type="radio"]+span:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    margin: 7px 7px 7px 0;
    width: 12px;
    height: 12px;
    z-index: 0;
    transition: .28s ease
}

.feedback-form .browser-default [type="radio"]:checked+span:after,
.feedback-form .browser-default [type="radio"].with-gap:checked+span:before,
.feedback-form .browser-default [type="radio"].with-gap:checked+span:after {
    border-color: #004889
}

.feedback-form .browser-default [type="radio"]:checked+span:after,
.feedback-form .browser-default [type="radio"].with-gap:checked+span:before,
.feedback-form .browser-default [type="radio"].with-gap:checked+span:after {
    border: 2px solid #004889
}

.feedback-form .browser-default [type="radio"]:not(:checked)+span:before,
.feedback-form .browser-default [type="radio"]:not(:checked)+span:after,
.feedback-form .browser-default [type="radio"]:checked+span:before,
.feedback-form .browser-default [type="radio"]:checked+span:after,
.feedback-form .browser-default [type="radio"].with-gap:checked+span:before,
.feedback-form .browser-default [type="radio"].with-gap:checked+span:after {
    border-radius: 50%
}

.feedback-form .browser-default [type="radio"]:checked+span:before {
    border: 2px solid transparent
}

.feedback-form .browser-default [type="radio"]:checked+span:after,
.feedback-form .browser-default [type="radio"].with-gap:checked+span:before,
.feedback-form .browser-default [type="radio"].with-gap:checked+span:after {
    border-color: #004889
}

.feedback-form .browser-default [type="radio"]:checked+span:after,
.feedback-form .browser-default [type="radio"].with-gap:checked+span:after {
    background-color: #004889
}

.feedback-form .browser-default [type="radio"].with-gap:checked+span:after {
    transform: scale(0.5)
}

.feedback-form .browser-default [type="radio"]:checked+span:after,
.feedback-form .browser-default [type="radio"].with-gap:checked+span:after {
    background-color: #004889
}

.feedback-form .browser-default [type="radio"]:checked+span:after,
.feedback-form .browser-default [type="radio"].with-gap:checked+span:before,
.feedback-form .browser-default [type="radio"].with-gap:checked+span:after {
    border: 2px solid #004889
}

.list-capsylte {
    display: none!important
}

.subscribe-form {
    max-width: 1290px;
    margin: 0 auto;
    font-size: 15px
}

.subscribe-form .subscribe-personal-detail {
    font-weight: 700;
    margin: 20px 0 10px;
    border-bottom: 1px solid #ccc
}

.subscribe-form .subscribe-personal-detail .row {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px
}

.subscribe-form .subscribe-personal-detail .row .col.l2 {
    width: 16.6666666667%;
    display: inline-block;
    vertical-align: top
}

.subscribe-form .subscribe-personal-detail .row .col.l6 {
    width: 45%;
    display: inline-block;
    vertical-align: top
}

.subscribe-form .subscribe-personal-detail .row .col.l6 input[type="text"] {
    padding: 15px;
    width: 100%;
    background-color: #f5f5f5;
    color: #004889;
    font-size: 15px
}

.subscribe-form label.browser-default {
    font-size: 16px;
    font-weight: 600
}

.subscribe-form label.browser-default span {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    display: inline-block;
    height: 25px;
    line-height: 25px;
    transition: .28s ease;
    user-select: none;
    font-weight: 400;
    font-size: 15px
}

.subscribe-form label.browser-default [type="radio"]:not(:checked)+span::before {
    border: 2px solid #5a5a5a;
    border-radius: 50%
}

.subscribe-form label.browser-default [type="radio"]+span::before,
.subscribe-form label.browser-default [type="radio"]+span::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    margin: 2px;
    width: 14px;
    height: 14px;
    z-index: 0;
    transition: .28s ease;
    cursor: pointer;
    line-height: 25px;
    font-size: 1rem
}

.subscribe-form label.browser-default [type="radio"].with-gap:checked+span:before {
    border-radius: 50%;
    border-color: #004889;
    border: 2px solid #004889
}

.subscribe-form label.browser-default [type="radio"].with-gap:checked+span:after {
    background-color: #004889;
    border-color: #004889;
    border-radius: 50%;
    transform: scale(.6);
    top: 2px;
    left: 2px
}

.subscribe-form .subscribe-personal-detail .row:nth-child(3) div:nth-child(2) .row:nth-child(2) {
    font-size: 16px
}

.subscribe-form .checkboxModel [type="checkbox"].filled-in:not(:checked)+span:not(.lever)::after {
    height: 16px;
    width: 16px;
    background-color: transparent;
    border: 2px solid #5a5a5a;
    top: 0;
    z-index: 0
}

.subscribe-form .checkboxModel [type="checkbox"].filled-in+span:not(.lever)::before,
.subscribe-form .checkboxModel [type="checkbox"].filled-in+span:not(.lever)::after {
    content: "";
    left: 0;
    position: absolute;
    transition: border .25s, background-color .25s, width .2s .1s, height .2s .1s, top .2s .1s, left .2s .1s;
    z-index: 1;
    border-radius: 2px
}

.subscribe-form .checkboxModel [type="checkbox"].filled-in:checked+span:not(.lever)::after {
    top: 0;
    width: 16px;
    height: 16px;
    border: 2px solid #00589e;
    background-color: #00589e;
    z-index: 0
}

.subscribe-form .checkboxModel [type="checkbox"].filled-in:checked+span:not(.lever)::before {
    top: 1px;
    left: 1px;
    width: 5px;
    height: 10px;
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotateZ(37deg);
    transform-origin: 100% 100%
}

.subscribe-form>div:nth-child(2) {
    display: flex;
    margin-left: 200px
}

.subscribe-form input[type="submit"] {
    text-align: center;
    justify-content: center;
    padding: 0 3rem;
    margin: 0 20px;
    overflow: hidden;
    font-weight: 700;
    font-size: 14px;
    background-color: #004889;
    border: 2px solid #004889;
    color: #fff;
    border-radius: 30px;
    height: 38px;
    line-height: 34px;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    font-family: "Open Sans"
}

.subscribe-form .row:nth-child(2) .col:nth-child(1) input[type="submit"] {
    border: 2px solid #004889;
    background-color: #fff;
    color: #004889
}

.modal-overlay {
    position: fixed;
    z-index: 999;
    top: -25%;
    left: 0;
    bottom: 0;
    right: 0;
    height: 125%;
    width: 100%;
    background: #000;
    display: none;
    will-change: opacity
}

.modal.medium-modal {
    width: 750px;
    margin: 0 auto;
    left: 0;
    right: 0;
    background-color: #fafafa;
    box-shadow: 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.2);
    border-radius: 2px
}

.modal {
    overflow-x: hidden;
    max-height: 100%
}

#annoument-model .modal-header {
    padding: 24px;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 300;
    border-bottom: 1px solid #ccc
}

#annoument-model .modal-header .right {
    float: right!important
}

#annoument-model .modal-content {
    background-color: transparent;
    margin: 2.5% auto;
    padding: 20px;
    border: 0!important;
    width: 100%!important;
    font-size: 15px;
    font-weight: 400
}

#annoument-model .modal-content .row {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    display: flex
}

#annoument-model .modal-content .row .col.m5 {
    width: 41.6666666667%;
    box-sizing: border-box;
    padding: 0 .75rem;
    min-height: 1px
}

#annoument-model .modal-content .row .col.m7 {
    width: 58.33%;
    box-sizing: border-box;
    padding: 0 .75rem;
    min-height: 1px
}

#annoument-model .modal-content .row .col.m7 select {
    background: #f2f2f2;
    font-weight: 300;
    color: #004889;
    width: 100%!important;
    border: 1px solid #f2f2f2;
    border-radius: 2px;
    font-size: 13px
}

#annoument-model .modal-content .row .right {
    float: right!important
}

#annoument-model .modal-content .row .rounded-button.outline-primary {
    background: #fff;
    color: #004889
}

#annoument-model .rounded-button {
    text-align: center;
    justify-content: center;
    padding: 0 2rem;
    overflow: hidden;
    font-weight: 700;
    font-size: 14px;
    background-color: #004889;
    border: 2px solid #004889;
    color: #fff;
    border-radius: 30px;
    height: 38px;
    line-height: 34px;
    display: inline-block;
    align-items: center;
    text-transform: uppercase
}

#annoument-model .top_border {
    border-top: 1px solid #ccc
}

#annoument-model .top_border .center-align {
    text-align: center;
    margin-top: 20px
}

#annoument-model .top_border .rounded-button.wide {
    padding-left: 3.5rem;
    padding-right: 3.5rem
}

#ddlCategory,
#ddlSubCategory,
#ddlSchemeName {
    -webkit-appearance: menulist;
    -moz-appearance: menulist;
    appearance: menulist
}

.close-modal-annou {
    color: #000
}

#annoument-model .modal-content label {
    font-weight: 400
}

.bodyinner p {
    line-height: 1.5;
    font-weight: 400;
    font-size: 16px
}

select.ui-datepicker-month {
    padding: 0
}

select.ui-datepicker-year {
    padding: 0
}

table.guidelines-documentstxt {
    margin-bottom: 40px
}

.bodyinner p.errormessage {
    height: 24px
}

.bodyinner p a {
    color: #0470c9
}

.fadv-accord-Content ul {
    margin-left: 40px
}

.fadv-accord-Content ul li {
    list-style: none;
    line-height: 1.4
}

.fadv-accord-Content ul li:before {
    padding-right: 20px;
    color: #015898;
    margin-left: -32px
}

.sfContentBlock .bodyinner .fadv-accord-head {
    padding-right: 55px
}

.sfContentBlock .bodyinner .fadv-accord-Content {
    padding-bottom: 20px;
    line-height: 1.4
}

.sfContentBlock .bodyinner .fadv-accord-Content p {
    margin: 0;
    padding-bottom: 15px
}

.sfContentBlock .bodyinner .fadv-accord-Content table {
    width: 45%;
    border: 1px solid #ccc
}

.sfContentBlock .bodyinner .fadv-accord-Content table tr {
    border-bottom: 1px solid #ccc
}

.sfContentBlock .bodyinner .fadv-accord-Content table tr:nth-child(odd) {
    background: #eee
}

.sfContentBlock .bodyinner .fadv-accord-Content table tr:last-child {
    border-bottom: 0
}

.sfContentBlock .bodyinner .fadv-accord-Content table tr td {
    padding: 15px 10px 0
}

.sfContentBlock .bodyinner .fadv-accord-Content ul.listing-product {
    margin-left: 40px
}

.sfContentBlock .bodyinner .fadv-accord-Content ul.listing-product li {
    list-style: none;
    line-height: 1.4
}

.sfContentBlock .bodyinner .fadv-accord-Content ul.listing-product li:before {
    padding-right: 20px;
    color: #015898;
    margin-left: -36px
}

.sfContentBlock .small {
    max-width: 1290px;
    margin: 0 auto 20px;
    font-weight: 400;
    line-height: 1.4
}

.sfContentBlock>.navsdivi-wrap {
    margin-bottom: 30px
}

.distributorH img {
    float: left;
    display: inline;
    padding: 0 10px 10px 0
}

.section01H p {
    padding: 0 0 10px;
    margin-bottom: 5px
}

.section01H {
    padding: 0 0 10px;
    clear: both
}

.distriBoxH ul {
    overflow: hidden;
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap
}

.distriBoxH ul li:first-child {
    margin: 0
}

.distriBoxH ul li {
    float: left;
    display: inline;
    width: 48%;
    margin: 0 0 0 15px;
    border: 1px solid #ccc;
    padding: 10px;
    overflow: auto
}

.distriBoxH ul li h4 {
    margin-bottom: 20px
}

.table-nrifaq {
    margin: 0 0 20px 0
}

.table-nrifaq table {
    width: 100%;
    border: 1px solid #d5d5d5;
    border-bottom: 0
}

.table-nrifaq table tr:nth-child(odd) {
    background: #eee
}

.table-nrifaq table td {
    padding: 10px;
    border: 1px solid #d5d5d5;
    width: 30%
}

.inv-service-overview li {
    width: 100%;
    padding: 10px;
    margin: 0 20px 20px 0;
    margin-top: 10px;
    overflow: hidden;
    background: hsla(193, 100%, 91%, 0.12);
    border: 1px solid #e6e6e6;
    display: block
}

.inv-service-overview h4 {
    font-size: 16px;
    font-weight: 400;
    background: #4d9bd5;
    padding: 10px 15px;
    color: #fff;
    text-align: left
}

.inv-service-overview h4 a {
    color: #fff;
    text-decoration: underline
}

.inv-service-overview li p {
    display: block;
    width: 100%;
    padding: 0 15px;
    font-size: 14px;
    line-height: 20px;
    color: #7a7a7a;
    margin-bottom: 0;
    margin-top: 9px
}

.list05H li a {
    color: #03c1fb
}

.extraTitle {
    margin-bottom: 10px
}

.easy-invest .list02 ul li {
    width: 100%!important
}

.impupdate-subhead {
    margin-top: 20px
}

.bonus-unit {
    font-size: 15px
}

.bonus-unit .bonus-unit-table {
    width: 100%;
    border: 1px solid #b9cbde
}

.bonus-unit .bonus-unit-table th {
    color: #fff;
    background: #4b99de
}

.bonus-unit .bonus-unit-table th,
.bonus-unit .bonus-unit-table td {
    padding: 15px 10px;
    border: 1px solid #dfe8f1
}

.bonus-unit .bonus-unit-table th:nth-child(1) {
    text-align: left
}

.bonus-unit .bonus-unit-table td {
    width: 15%
}

.bonus-unit .bonus-unit-table td:nth-child(1) {
    width: 40%;
    text-align: left
}

.bonus-unit .bonus-unit-table td:nth-child(1) {
    width: 30%
}

.bonus-unit .bonus-unit-table tr:nth-child(even) {
    background: #e9f1f9
}

.online-transaction-related .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content,
.mutual-Funds .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content,
.know-your-client .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content,
.distributor .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content,
.Just-sms .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content,
.sip .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content,
.sip-top-up .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content,
.nri-related .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content,
.one-time-mandate .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content,
.fatca .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content {
    padding: 10px 20px 0
}

.online-transaction-related .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content .online-nav-applitable1,
.online-transaction-related .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content .online-nav-applitable2,
.online-transaction-related .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content .online-nav-applitable3,
.online-transaction-related .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content .online-nav-applitable4,
.online-transaction-related .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content .online-nav-applitable5,
.fadv-accord-Content .sip-table1,
.fadv-accord-Content .sip-table2,
.fadv-accord-Content .sip-table3,
.fadv-accord-Content .sip-top-up-table {
    width: 100%;
    border: 1px solid #d5d5d5;
    font-size: 14px;
    margin-bottom: 15px
}

.online-transaction-related .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content .online-nav-applitable1 th,
.online-transaction-related .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content .online-nav-applitable2 th,
.online-transaction-related .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content .online-nav-applitable3 th,
.online-transaction-related .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content .online-nav-applitable4 th,
.online-transaction-related .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content .online-nav-applitable5 th,
.fadv-accord-Content .sip-table1 th,
.fadv-accord-Content .sip-top-up-table th {
    background: #dcdcdc
}

.fadv-accord-Content .sip-top-up-table th {
    padding: 10px
}

.online-transaction-related .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content .online-nav-applitable1 th,
.online-transaction-related .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content .online-nav-applitable1 td,
.online-transaction-related .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content .online-nav-applitable2 th,
.online-transaction-related .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content .online-nav-applitable2 td,
.online-transaction-related .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content .online-nav-applitable3 th,
.online-transaction-related .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content .online-nav-applitable3 td,
.online-transaction-related .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content .online-nav-applitable4 th,
.online-transaction-related .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content .online-nav-applitable4 td,
.online-transaction-related .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content .online-nav-applitable5 th,
.online-transaction-related .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content .online-nav-applitable5 td,
.fadv-accord-Content .sip-table1 th {
    padding: 10px;
    text-align: left
}

.online-transaction-related .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content .online-nav-applitable1 td,
.online-transaction-related .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content .online-nav-applitable2 td,
.online-transaction-related .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content .online-nav-applitable3 td,
.online-transaction-related .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content .online-nav-applitable4 td,
.online-transaction-related .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content .online-nav-applitable5 td,
.fadv-accord-Content .sip-table1 td,
.fadv-accord-Content .sip-table2 td,
.fadv-accord-Content .sip-table3 td,
.fadv-accord-Content .sip-top-up-table td {
    padding: 10px;
    border: 1px solid #eee;
    font-size: 13px
}

.online-transaction-related .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content .online-nav-applitable1 td,
.online-transaction-related .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content .online-nav-applitable2 td {
    width: 10%
}

.online-transaction-related .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content .online-nav-applitable1 td:nth-child(6),
.online-transaction-related .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content .online-nav-applitable1 td:nth-child(7),
.online-transaction-related .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content .online-nav-applitable2 td:nth-child(6),
.online-transaction-related .bodyinner .fadv-wrap .fadv-accordion .fadv-accord-Content .online-nav-applitable2 td:nth-child(7) {
    width: 25%
}

.center-online-tablehead {
    text-align: center!important;
    background: #ccc!important
}

.mutual-fund-table {
    margin-bottom: 15px
}

.sms-relate {
    padding: 10px!important;
    border: 1px solid #dadada;
    background: #f1f1f1
}

@media only screen and (max-width:1340px) {
    .feedback-form,
    .subscribe-form,
    .sfContentBlock .small {
        width: 1190px
    }
    .subscribe-form>div:nth-child(2) {
        margin-left: 187px
    }
}

@media only screen and (max-width:1255px) {
    .feedback-form,
    .subscribe-form,
    .sfContentBlock .small {
        width: 95%
    }
    .subscribe-form>div:nth-child(2) {
        margin-left: 15.5%
    }
    .mResTabAccordA {
        padding: 12px 24px;
        font-size: 15px
    }
}

@media only screen and (max-width:990px) {
    .subscribe-form {
        margin-top: 70px
    }
    .scheme-list .showing_results .showing_schemes {
        float: none;
        margin-bottom: 10px
    }
    .scheme-list .showing_results .scheme_plan {
        float: left;
        margin-left: 0;
        margin-right: 25px
    }
    .feedback-form .feedback-personal-detail:nth-child(3) .row:nth-child(2) div:nth-child(3) .row div:nth-child(1),
    .feedback-form .feedback-personal-detail:nth-child(3) .row:nth-child(2) div:nth-child(1) .row div:nth-child(1) {
        font-size: 13px
    }
    .feedback-form .feedback-personal-detail:nth-child(3) .row:nth-child(2) div:nth-child(1),
    .feedback-form .feedback-personal-detail:nth-child(3) .row:nth-child(2) div:nth-child(3) {
        width: 42.5%
    }
    .feedback-form .feedback-personal-detail .multiselect-drop option {
        font-size: 12px
    }
    .feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(2) div:nth-child(2) .row div,
    .feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(3) div:nth-child(2) .row div,
    .feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(4) div:nth-child(2) .row div,
    .feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(5) div:nth-child(2) .row div {
        width: 48%;
        /* margin-top: -10px */
    }
    .feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(2) div:nth-child(2),
    .feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(3) div:nth-child(2),
    .feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(4) div:nth-child(2),
    .feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(5) div:nth-child(2) {
        margin-left: 0
    }
    .feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(2) div:nth-child(1),
    .feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(3) div:nth-child(1),
    .feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(4) div:nth-child(1),
    .feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(5) div:nth-child(1) {
        width: 48%
    }
    .feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(2) div:nth-child(2),
    .feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(3) div:nth-child(2),
    .feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(4) div:nth-child(2),
    .feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(5) div:nth-child(2) {
        width: 50%
    }
    .subscribe-form .subscribe-personal-detail .row .col.l6 {
        width: 80%
    }
    .subscribe-form .subscribe-personal-detail .row.requestFor {
        width: 100%
    }
    .subscribe-form .subscribe-personal-detail .row.requestFor div:nth-child(1) {
        width: 40%
    }
    .subscribe-form .subscribe-personal-detail .row.requestFor div:nth-child(2) {
        width: 40%
    }
    .extraTitle,
    .parent-list h2 {
        font-size: 20px
    }
}

@media only screen and (max-width:767px) {
    .tabContainer {
        padding: 0
    }
    .mResTabAccordA {
        padding: 12px 10px;
        color: #fff;
        background: #00589e
    }
    .mResTabAccordA.active {
        padding: 12px 10px
    }
    .tabContainer1 {
        padding: 0
    }
    .tabContainer .tabContent.mTabActive {
        padding: 20px 0 0 0
    }
    .invedu-wrap .article-videowrap {
        margin-top: 30px
    }
    .skldrop:after {
        display: none
    }
    .tabContainer .mResAccordAnchor>span:after {
        top: 12px
    }
    .tabContainer .mResAccordAnchor.active>span:after {
        top: 18px
    }
    .tabContainer1 .skldropsub {
        background: #cff5ff!important;
        color: #00589e
    }
    .tabContainer1 .skldropsub span:after {
        border-color: #00589e
    }
    .tabContainer1 .skldropsub {
        border-color: #00589e
    }
    .tabContainer1 .mResTabAccordA.active {
        background: #297fbd;
        color: #fff
    }
    .tabContainer1 .mResTabAccordA {
        background: #297fbd
    }
    .tabContainer2 {
        padding: 0;
        margin: 0
    }
    .tabContainer2 .mResTabAccordA.active {
        background: #bfddf3;
        color: #00589e
    }
    .tabContainer2 .mResTabAccordA {
        background: #bfddf3;
        color: #00589e;
        font-size: 14px;
        padding: 8px 10px
    }
    .tabContainer2 .mResAccordAnchor>span:after {
        border-color: #00589e;
        top: 8px;
        width: 8px;
        height: 8px
    }
    .tabContainer2 .mResAccordAnchor.active>span:after {
        top: 14px
    }
    .feedback-form .feedback-personal-detail:nth-child(3) .row:nth-child(2) div:nth-child(1),
    .feedback-form .feedback-personal-detail:nth-child(3) .row:nth-child(2) div:nth-child(3) {
        width: 100%
    }
    .feedback-form .feedback-personal-detail:nth-child(3) .row:nth-child(2) div:nth-child(2) {
        margin-top: 10px;
        width: 95%;
        text-align: center
    }
    .multiselect-btns #customSort_rightSelected,
    .multiselect-btns #customSort_leftSelected {
        width: 65px
    }
    .multiselect-btns #customSort_rightSelected .material-icons,
    .multiselect-btns #customSort_leftSelected .material-icons {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg)
    }
    .feedback-form .feedback-collapsible .collapsible li:nth-child(4) .collapsible-body .row div:nth-child(2) {
        width: 23%
    }
    .feedback-form .browser-default [type="radio"]:not(:checked)+span,
    .feedback-form .browser-default [type="radio"]:checked+span {
        line-height: 1.4
    }
    .feedback-form .browser-default [type="radio"]+span::before,
    .feedback-form .browser-default [type="radio"]+span::after {
        margin-top: 2px
    }
    .feedback-form .feedback-personal-detail:nth-child(2) .row:nth-child(2) div:nth-child(1),
    .feedback-form .feedback-personal-detail:nth-child(2) .row:nth-child(2) div:nth-child(2),
    .feedback-form .feedback-personal-detail:nth-child(1) .row div:nth-child(1),
    .feedback-form .feedback-personal-detail:nth-child(1) .row div:nth-child(2),
    .feedback-form .feedback-personal-detail:nth-child(1) .row div:nth-child(2) input,
    .feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(2) div:nth-child(1),
    .feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(3) div:nth-child(1),
    .feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(4) div:nth-child(1),
    .feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(5) div:nth-child(1),
    .feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(2) div:nth-child(2),
    .feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(3) div:nth-child(2),
    .feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(4) div:nth-child(2),
    .feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(5) div:nth-child(2),
    .feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(2) div:nth-child(1) input,
    .feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(3) div:nth-child(1) input,
    .feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(4) div:nth-child(1) input,
    .feedback-form .feedback-personal-detail:nth-child(4) .row:nth-child(5) div:nth-child(1) input,
    .feedback-form .feedback-collapsible .collapsible li:nth-child(1) .collapsible-body .row div:nth-child(1) .row div,
    .feedback-form .feedback-collapsible .collapsible li:nth-child(5) .collapsible-body .row:nth-child(12) div,
    .feedback-form .feedback-collapsible .collapsible li:nth-child(5) .collapsible-body .row:nth-child(14) div,
    .feedback-form .feedback-personal-detail:nth-child(1) .row div:nth-child(2) input#txtFolioNumber {
        width: 100%
    }
    .feedback-form .feedback-collapsible .collapsible li:nth-child(1) .collapsible-body .row div:nth-child(1) .row div label {
        margin-bottom: 0
    }
    .feedback-form .feedback-personal-detail:nth-child(1) .row div:nth-child(1) {
        margin-bottom: 5px
    }
    .feedback-form .feedback-collapsible .collapsible li:nth-child(2) .collapsible-body .row div,
    .feedback-form .feedback-collapsible .collapsible li:nth-child(3) .collapsible-body .row div,
    .feedback-form .feedback-collapsible .collapsible li:nth-child(4) .collapsible-body .row div,
    .feedback-form .feedback-collapsible .collapsible li:nth-child(5) .collapsible-body .row div,
    .feedback-form .feedback-collapsible .collapsible li:nth-child(4) .collapsible-body .row div:nth-child(1),
    .feedback-form .feedback-collapsible .collapsible li:nth-child(4) .collapsible-body .row div:nth-child(2),
    .feedback-form .feedback-collapsible .collapsible li:nth-child(4) .collapsible-body .row div:nth-child(3),
    .feedback-form .feedback-collapsible .collapsible li:nth-child(4) .collapsible-body .row div:nth-child(4) {
        width: 49%
    }
    .feedback-form .feedback-collapsible .collapsible li:nth-child(2) .collapsible-body .row div label,
    .feedback-form .feedback-collapsible .collapsible li:nth-child(3) .collapsible-body .row div label,
    .feedback-form .feedback-collapsible .collapsible li:nth-child(4) .collapsible-body .row div label,
    .feedback-form .feedback-collapsible .collapsible li:nth-child(5) .collapsible-body .row div label {
        margin-bottom: 2px
    }
    .feedback-form .feedback-collapsible .collapsible li:nth-child(4) .collapsible-body .row:nth-child(1) div,
    .feedback-form .feedback-collapsible .collapsible li:nth-child(4) .collapsible-body .row:nth-child(3) div,
    .feedback-form .feedback-collapsible .collapsible li:nth-child(4) .collapsible-body .row:nth-child(5) div,
    .feedback-form .feedback-collapsible .collapsible li:nth-child(4) .collapsible-body .row:nth-child(7) div {
        width: 100%
    }
    #annoument-model {
        width: 95%
    }
    .sfContentBlock .bodyinner .fadv-accord-head {
        padding-right: 40px
    }
    .bodyinner p {
        font-size: 14px
    }
    .bonus-unit {
        font-size: 13px
    }
    .bonus-unit .bonus-unit-table th,
    .bonus-unit .bonus-unit-table td {
        vertical-align: top
    }
    .distriBoxH ul li {
        width: 100%;
        margin-left: 0;
        margin-top: 15px
    }
    ul.iwant-list {
        top: 48px!important
    }
}

@media only screen and (max-width:599px) {
    .feedback-form {
        margin-top: 20px
    }
    .rating {
        width: 155px!important
    }
    .rating>label::before {
        margin: -5px 5px 0
    }
    .feedback-form .feedback-collapsible .collapsible li:nth-child(1) .collapsible-body .row div:nth-child(2) {
        margin-left: 2%
    }
    .subscribe-form>div:nth-child(2) {
        margin-left: 0
    }
    .subscribe-form .subscribe-personal-detail .row .col.l2,
    .subscribe-form .subscribe-personal-detail .row .col.l6 {
        width: 100%
    }
    .subscribe-form .subscribe-personal-detail .row .col.l2 {
        margin-bottom: 5px
    }
    #annoument-model .modal-content .row {
        display: block
    }
    #annoument-model .modal-content .row .col.m5,
    #annoument-model .modal-content .row .col.m7 {
        width: 100%
    }
    #annoument-model .modal-content #btnAdd,
    #annoument-model .modal-content #btnRemove {
        margin-top: -24px
    }
    .navdivi-box .navs-tab.investor-nri-tab a {
        width: 122px
    }
    .navdivi-box .navs-tab.investor-nri-tab .active {
        padding: 0 21px
    }
}

@media only screen and (max-width:479px) {
    .rating {
        width: 155px!important;
        margin-left: -20px
    }
    .rating>label::before {
        font-size: 18px
    }
    .navdivi-box .navs-tab.investor-nri-tab a {
        width: 100%
    }
    .navdivi-box .navs-tab.investor-nri-tab .active {
        padding: 0 21px
    }
    .extraTitle,
    .parent-list h2 {
        font-size: 20px!important;
        text-align: left
    }
}

.dropdown2.custome_select #iwant {
    display: none
}

.dropdown2.custome_select label {
    color: #fff;
    font-weight: 400;
    padding-left: 12px;
    background: url('../images/white-down-arrow.png') no-repeat right 15px center #333;
    margin-bottom: 0;
    display: block
}

ul.iwant-list {
    position: absolute;
    width: 250px;
    right: 0;
    top: 48px;
    border: 1px solid #ccc;
    line-height: normal;
    display: none
}

ul.iwant-list {
    background: rgba(204, 204, 204, 1.3)
}

ul.iwant-list li a {
    padding: 8px 8px;
    display: block;
    color: #2f68ae
}

ul.iwant-list li a:hover {
    background: #2f68ae;
    color: #fff
}

.dropdown2.custome_select #iwant:checked+.iwant-list {
    display: block
}

.result-nav-wrap .tablewrap-resultnav .table-result.dataTable {
    border-radius: 0;
    border: 0
}

.result-nav-wrap .tablewrap-resultnav .table-result.dataTable thead th,
table.dataTable thead td {
    border: 0;
    border-top: 3px solid #eeecec
}

.result-nav-wrap .tablewrap-resultnav .table-result.dataTable tbody td {
    border-bottom: 3px solid #eeecec;
    padding-left: 120px;
    position: relative
}

.table-result td:before {
    position: absolute;
    left: 0;
    top: -10px
}

#example_paginate {
    padding: 7px 15px
}

#example_info {
    padding: 15px
}

#example_filter,
#example_length {
    padding: 15px;
    text-align: left;
    position: relative
}

#example_length select.valid,
#example_length select {
    font-weight: bold;
    font-size: 16px;
    background: url(../images/arrowslc1.png) no-repeat scroll 100% -2px!important;
    width: 70px;
    color: #235893!important
}

#example_filter input {
    margin-left: .5em;
    border: 0;
    border-bottom: 1px solid #a5a7a9;
    background: 0;
    padding: 5px 1% 5px 0;
    color: #235893;
    font-weight: 500;
    font-size: 16px;
    width: 200px
}

#dtDivTo {
    float: left
}

.contact-wrap .sf_1col_1_100 {
    text-align: center
}

.contact-wrap .write-tous-wrap .line1-writeus {
    text-align: left
}

.mandatory-line.form-group {
    display: inline-block;
    margin-top: 70px;
    position: relative
}

.mandatory-line.form-group button {
    cursor: pointer
}

.mandatory-line.submit-button.form-group:before {
    content: '*';
    position: absolute;
    top: -48px;
    color: red;
    font-size: 22px;
    left: 5px
}

.mandatory-line.submit-button.form-group:after {
    content: 'Indicates mandatory';
    position: absolute;
    top: -40px;
    left: 15px;
    font-size: 12px;
    color: #7b7b7b;
    font-weight: 400
}

.mandatory-line.submit-button.form-group button {
    background: #015898!important;
    color: #fff!important
}

.filterCard {
    display: none
}

.hidefilterCard {
    display: none
}

.displayBlock {
    display: block
}

.pagination {
    text-align: center;
    padding: 45px 0;
    float: left;
    width: 100%
}

.pagination a.nav.prev.disabled {
    padding: 15px;
    color: gray;
    font-size: 14px;
    font-weight: 600
}

.pagination a.page.current {
    background-color: #d2f1fc;
    color: #000;
    font-size: 14px;
    font-weight: bold
}

.pagination a.page {
    padding: 15px;
    color: gray;
    font-size: 14px;
    font-weight: 600
}

.show {
    display: block
}

.hide {
    display: none
}

.error {
    display: block;
    font-weight: normal;
    font-size: 13px;
    color: red;
    margin-top: 5px;
    font-weight: 400;
    float: left;
    width: 100%;
}

.contH {
    clear: both;
    background: #fff;
    margin: 0 0 40px;
    float: left;
    width: 100%
}

.dataH02 {
    padding: 10px;
    border: 1px solid #ccc;
    clear: both
}

.thankYouH {
    text-align: center;
    padding: 200px 0
}

.thankYouH h1 {
    font-size: 36px;
    color: #1e6db0;
    padding: 0 0 16px;
    font-weight: normal;
    display: block;
    margin: 0 auto
}

.thankYouH h3 {
    font-size: 24px;
    font-weight: normal
}

.investnow .addto-fav a.selected:before {
    color: #00b64f
}

.nofund {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #333
}

.table-fields input[type="radio"] {
    width: 18px;
    height: 18px
}

.table-fields input[type="checkbox"] {
    width: 20px;
    width: 20px
}

.table-fields input[type="radio"],
.table-fields input[type="checkbox"] {
    opacity: 0;
    position: absolute
}

.subscribe-form label.browser-default {
    position: relative
}

.state-select-address select,
.city-select-address select {
    width: 100%
}

.investorCenH .section01H .sfContentBlock h4 {
    margin-bottom: 10px
}

.investorCenH .section01H .sfContentBlock p img {
    margin-right: 10px
}

.bodyinner p a:hover {
    color: #005899
}

.fadv-wrap .fadv-accordion .fadv-accord-Content ul li a:hover,
.fadv-wrap .fadv-accordion .fadv-accord-Content ul p a:hover {
    color: #005899
}

.fadv-wrap ul.fadv-liting-big li .fadv-accordion .fadv-accord-Content ul li,
.fadv-wrap .fadv-accordion .fadv-accord-Content ul.pdf-list-style li,
.fadv-wrap .fadv-accordion .fadv-accord-Content .accordian01ContH .list01 ul li {
    width: 100%
}

.fadv-wrap ul.fadv-liting-big li .fadv-accordion .fadv-accord-Content ul li:before {
    left: 0
}

.mrgb15 {
    margin-bottom: 15px
}

.showerror {
    display: none;
    color: red;
    font-size: 12px;
    font-weight: normal
}

.overlay {
    background: rgba(0, 0, 0, .8);
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    z-index: 12;
    left: 0;
    top: 0
}

.declarationTxtbox {
    position: absolute;
    top: 10%;
    left: 0;
    right: 0;
    max-width: 640px;
    width: 90%;
    margin: 0 auto;
    z-index: 15;
    background: #fff;
    padding: 25px 20px;
    display: none
}

.declarationTxtbox .declarationTitle {
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 11px;
    color: #585858;
    padding-top: 7px
}

.declarationTxtbox>p {
    font-size: 12px;
    color: #585858;
    padding-bottom: 7px;
    line-height: 18px;
    text-align: justify
}

.continueBtn {
    float: left;
    width: 100%;
    text-align: center
}

.RadGrid th {
    color: #fff;
    padding: 5px
}

.redBg {
    background-color: #b02a1f!important;
    color: #fff!important
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter {
    margin: 10px
}

.dataTables_wrapper .dataTables_filter input {
    background-color: transparent;
    border: 1px solid #eeecec;
    height: 35px;
    padding: 5px 10px
}

.subscribeBtn {
    background-color: #fff!important;
    color: #235893!important;
    margin: 0 0!important;
    padding: 10px 30px!important;
    font-size: 14px!important;
    border: 2px solid #235893!important
}

.subscribeBtn:hover {
    background-color: #235893!important;
    color: #fff!important
}

.help-block {
    color: red;
    font-size: 14px
}

.subscribeEmail {
    display: inline-block
}

#notfound {
    position: relative;
    height: 50vh;
    margin: 100px 0
}

#notfound .notfound {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.notfound {
    max-width: 767px;
    width: 100%;
    line-height: 1.4;
    padding: 0px 15px
}

.notfound .notfound-404 {
    position: relative;
    height: 150px;
    line-height: 150px;
    margin-bottom: 25px
}

.notfound .notfound-404 h1 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 186px;
    font-weight: 900;
    margin: 0px;
    text-transform: uppercase;
    background: url('../images/text.png');
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: cover;
    background-position: center
}

.notfound h2 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    text-align: left
}

.notfound p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0px
}

.notfound a {
    margin-top: 15px
}

.notfound a:hover {
    opacity: 0.8
}

@media only screen and (max-width: 767px) {
    .notfound .notfound-404 {
        height: 110px;
        line-height: 110px
    }
    .notfound .notfound-404 h1 {
        font-size: 120px
    }
}

.closeIcon {
    position: absolute;
    right: 10px;
    top: -25px;
    width: 20px;
    height: 20px;
    cursor: pointer
}

.closeIcon:before,
.closeIcon:after {
    position: absolute;
    left: 10px;
    content: ' ';
    height: 20px;
    width: 2px;
    background-color: #fff
}

.closeIcon:before {
    transform: rotate(45deg)
}

.closeIcon:after {
    transform: rotate(-45deg)
}

.lightBoxoverlay {
    display: none;
    background: rgba(0, 0, 0, 0.90);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99
}

.lightComparebody {
    overflow: hidden;
}

.lightCompare {
    display: none;
    color: #2d2d2d;
    z-index: 999;
    line-height: 22px;
    width: 100%;
    max-width: 800px;
    position: fixed;
    top: 30%;
    left: 30%;
    padding: 0px 10px
}

.lightCompare .content iframe {
    height: 500px;
}

.lightCompare .content {
    overflow: auto;
    position: relative;
    margin: 0px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.lightCompare .content img {
    width: 100%
}

.we-doing {
    margin-bottom: 10px
}

.Cus-service {
    width: 25% !important
}

.we-doing-radio {
    width: 16% !important;
    display: inline-block !important;
    margin: 0 !important
}

.we-doing-radio2 {
    width: 19% !important;
    display: inline-block !important;
    margin: 0 !important
}

.we-doing-radio3 {
    width: 13% !important;
    display: inline-block !important;
    margin: 0 !important
}

.your-investment {
    width: 100% !important
}

.textareaDiv {
    height: 180px;
    padding: 5px;
    font-size: 0.9rem;
    width: 60% !important;
    background: #e7e7e7 !important;
    margin: 0 !important
}

.post-button {
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 0 1.5rem;
    overflow: hidden;
    font-weight: 700;
    font-size: 13px;
    background-color: #004889 !important;
    border: 2px solid #004889;
    color: #fff;
    border-radius: 30px;
    height: 38px;
    line-height: 34px;
    float: left;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    padding-left: 1rem;
    margin-right: 0.5rem;
    margin-bottom: 2rem
}

.post-button:hover {
    color: #fff
}

.skip-button {
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 0 1.5rem;
    overflow: hidden;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid #004889;
    color: #004889;
    border-radius: 30px;
    height: 38px;
    line-height: 34px;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    padding-left: 1rem;
    background: #fff;
    margin-bottom: 2rem
}

.skip-button:hover {
    color: #004889
}

.purchasefeedback {
    width: 54% !important;
    margin-top: 10px;
    display: inline-block;
    margin-bottom: 14px;
}

.purchasefeedback-right {
    width: 43% !important;
    display: inline-block;
}

.purchasefeedback-radio {
    width: 24% !important;
    display: inline-block !important;
    margin: 0 !important
}

.marginSpace {
    margin: 0 !important
}

.marginSpaceP {
    margin-top: 5px !important
}

.marginSpaceP-How {
    margin-top: 5px !important;
    margin-bottom: 0 !important;
    padding: 0 !important
}

.feedback-form label.browser-default {
    font-size: 16px
}

.checkboxDiv {
    position: absolute;
    opacity: 0
}

.checkboxDiv+label {
    position: relative;
    cursor: pointer;
    padding: 0;
    font-weight: 600
}

.checkboxDiv+label:before {
    content: '';
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    width: 12px;
    height: 12px;
    border: 2px solid #004889
}

.checkboxDiv:checked+label:before {
    background: #004889
}

.checkboxDiv:disabled+label {
    color: #b8b8b8;
    cursor: auto
}

.checkboxDiv:disabled+label:before {
    box-shadow: none;
    background: #ddd
}

.checkboxDiv:checked+label:after {
    content: '';
    position: absolute;
    left: 3px;
    top: 7px;
    background: white;
    width: 2px;
    height: 2px;
    box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.breadcrums ol {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.feedback-form .feedback-personal-detail #txtFolioNumber {
    width: 50%;
}

.tiltScreen {
    display: none;
    float: left;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.tiltScreen .overlay {
    background: #000 none repeat scroll 0 0;
    float: left;
    height: 100%;
    opacity: 0.9;
    position: fixed;
    width: 100%;
    z-index: 2;
    display: block;
}

.tiltScreen .tiltscreenContent {
    float: left;
    left: 50%;
    position: relative;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: 250px;
    z-index: 10;
}

.tiltScreen .tiltscreenContent p {
    color: #fff;
    float: left;
    font-size: 1.8rem;
    padding-top: 20px;
    text-align: center;
    width: 100%;
}

@media screen and (max-width:980px) {
    .we-doing-radio {
        width: 17% !important
    }
    .we-doing-radio2 {
        width: 30% !important
    }
    .we-doing-radio3 {
        width: 19% !important
    }
    .purchasefeedback {
        width: 52% !important;
        margin-right: 30px
    }
    .Cus-service {
        width: 100% !important;
        margin-bottom: 10px
    }
}

@media screen and (max-width:767px) {
    .lightCompare .content iframe {
        height: 315px;
    }
    .we-doing-radio {
        width: 32% !important
    }
    .we-doing-radio2 {
        width: 32% !important
    }
    .we-doing-radio3 {
        width: 32% !important
    }
    .purchasefeedback {
        width: 100% !important;
        margin-right: 30px
    }
    .textareaDiv {
        width: 100% !important
    }
    .Cus-service {
        width: 100% !important;
        margin-bottom: 10px
    }
    .your-investment {
        width: 100% !important;
        text-align: left
    }
}

@media screen and (max-width:599px) {
    .we-doing-radio {
        width: 42% !important;
        text-align: left !important
    }
    .we-doing-radio2 {
        width: 42% !important;
        text-align: left !important
    }
    .we-doing-radio3 {
        width: 42% !important;
        text-align: left !important
    }
    .purchasefeedback {
        width: 100% !important;
        margin-right: 30px
    }
    .purchasefeedback-right {
        width: 100% !important
    }
    .textareaDiv {
        width: 100% !important
    }
    .Cus-service {
        width: 100% !important;
        margin-bottom: 10px
    }
    .your-investment {
        width: 100% !important;
        text-align: left
    }
}

@media screen and (max-width:479px) {
    .we-doing-radio {
        width: 48% !important;
        text-align: left !important
    }
    .we-doing-radio2 {
        width: 48% !important;
        text-align: left !important
    }
    .we-doing-radio3 {
        width: 48% !important;
        text-align: left !important
    }
    .purchasefeedback {
        width: 100% !important;
        margin-right: 30px
    }
    .purchasefeedback-right {
        width: 100% !important
    }
    .textareaDiv {
        width: 100% !important
    }
    .Cus-service {
        width: 100% !important;
        margin-bottom: 10px
    }
    .your-investment {
        width: 100% !important;
        text-align: left
    }
}